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

102 lines
2.0 KiB
Terraform
Raw Normal View History

2024-09-24 15:28:19 +02:00
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_user_id" {
description = "Scaleway User Id"
type = string
sensitive = true
}
2024-09-24 15:28:19 +02:00
variable "scaleway_project_id" {
description = "Scaleway Project Id"
type = string
}
variable "scaleway_organization_id" {
description = "Scaleway Organization Id"
type = string
}
2024-09-24 15:28:19 +02:00
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
}
variable "rustdesk_private_key" {
description = "Rustdesk private key"
type = string
}
variable "rustdesk_public_key" {
description = "Rustdesk public key"
type = string
}
2025-03-15 23:01:46 +01:00
variable "alexpires_me_email_username" {
description = "POP3 username"
type = string
}
variable "alexpires_me_email_password" {
description = "POP3 password"
type = string
}