70 lines
1.4 KiB
Terraform
70 lines
1.4 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 "collabora_admin_password" {
|
||
|
|
description = "Collabora 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
|
||
|
|
}
|