diff options
Diffstat (limited to 'terraform/variables.tf')
| -rw-r--r-- | terraform/variables.tf | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/terraform/variables.tf b/terraform/variables.tf new file mode 100644 index 0000000..00b96c8 --- /dev/null +++ b/terraform/variables.tf @@ -0,0 +1,45 @@ +variable "minio_password" { + type = string + sensitive = true + description = "Secret key for minio" +} +variable "sites_password" { + type = string + sensitive = true + description = "Secret key for sites" +} +variable "rproxy_password" { + type = string + sensitive = true + description = "Secret key for rproxy" +} +variable "monitoring_password" { + type = string + sensitive = true + description = "Secret key for monitoring" +} +variable "nc_kumar_password" { + type = string + sensitive = true + description = "Secret key for nc_kumar" +} +variable "plex_password" { + type = string + sensitive = true + description = "Secret key for plex" +} +variable "vault_password" { + type = string + sensitive = true + description = "Secret key for vault" +} +variable "torrents_password" { + type = string + sensitive = true + description = "Secret key for torrents" +} +variable "med_dl_password" { + type = string + sensitive = true + description = "Secret key for med_dl" +} |
