Files
a13labs.infra/terraform/k8sapps/variables.tf
T

75 lines
1.5 KiB
Terraform

variable "wordpress_mysql_password" {
description = "MySQL access password"
type = string
}
variable "mysql_root_password" {
description = "MySQL root password"
type = string
}
variable "gitea_mysql_password" {
description = "MySQL access password"
type = string
}
variable "scaleway_access_key" {
description = "Scaleway Access key"
type = string
}
variable "scaleway_secret_key" {
description = "Scaleway Secret key"
type = string
}
variable "scaleway_project_id" {
description = "Scaleway Project Id"
type = string
}
variable "scaleway_organization_id" {
description = "Scaleway Organization Id"
type = string
}
variable "nextcloud_mysql_password" {
description = "MySQL access password"
type = string
}
variable "nextcloud_admin_password" {
description = "Nextcloud access password"
type = string
}
variable "wireguard_private_key" {
description = "Wireguard public key"
type = string
}
variable "wireguard_public_key" {
description = "Wireguard public key"
type = string
}
variable "m3uproxy_admin_password" {
description = "M3UProxy access password"
type = string
}
variable "m3uproxy_secret" {
description = "M3UProxy HMAC secret"
type = string
}
variable "maxmind_account_id" {
description = "Maxmind account ID"
type = string
}
variable "maxmind_license_key" {
description = "Maxmind license key"
type = string
}