aboutsummaryrefslogtreecommitdiff
path: root/terraform/variables.tf
diff options
context:
space:
mode:
authorKumar Damani <me@kumardamani.net>2023-08-11 16:28:54 +0000
committerKumar Damani <me@kumardamani.net>2023-08-11 16:28:54 +0000
commita8a40383081441ebd3757a501364b9ac45eb421e (patch)
treef48b7040615af1bda263faa4d2657636c77ba2a4 /terraform/variables.tf
parent9bae899e227e4899a5ee629bf305a00a39044bc2 (diff)
parent1f321db8949b3aeb80afdd7a94e92b7743c3e275 (diff)
Merge branch 'work' into 'main'
Work See merge request kdam0/home-lab!1
Diffstat (limited to 'terraform/variables.tf')
-rw-r--r--terraform/variables.tf45
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"
+}