Remove sectool.json, update mail.tf to ignore annotation changes, and consolidate sensitive variables in secrets.tf

This commit is contained in:
2025-03-23 21:08:18 +01:00
parent 2657388998
commit 6168afdc32
4 changed files with 86 additions and 81 deletions
+77
View File
@@ -0,0 +1,77 @@
variable "wordpress_mysql_password" {
description = "MySQL access password"
type = string
sensitive = true
}
variable "mysql_root_password" {
description = "MySQL root password"
type = string
sensitive = true
}
variable "gitea_mysql_password" {
description = "MySQL access password"
type = string
sensitive = true
}
variable "scaleway_access_key" {
description = "Scaleway Access key"
type = string
sensitive = true
}
variable "scaleway_secret_key" {
description = "Scaleway Secret key"
type = string
sensitive = true
}
variable "nextcloud_mysql_password" {
description = "MySQL access password"
type = string
sensitive = true
}
variable "nextcloud_admin_password" {
description = "Nextcloud access password"
type = string
sensitive = true
}
variable "wireguard_private_key" {
description = "Wireguard public key"
type = string
sensitive = true
}
variable "m3uproxy_admin_password" {
description = "M3UProxy access password"
type = string
sensitive = true
}
variable "m3uproxy_secret" {
description = "M3UProxy HMAC secret"
type = string
sensitive = true
}
variable "maxmind_license_key" {
description = "Maxmind license key"
type = string
sensitive = true
}
variable "rustdesk_private_key" {
description = "Rustdesk private key"
type = string
sensitive = true
}
variable "alexpires_me_email_password" {
description = "POP3 password"
type = string
sensitive = true
}