commented out variables in variables.tf

This commit is contained in:
matthieu42morin 2024-03-01 23:21:43 +01:00
parent f0725605fc
commit 67ac803045
1 changed files with 20 additions and 20 deletions

View File

@ -129,27 +129,27 @@ variable "kms_key_deletion_window" {
# === Supplied by ./modules/vpc-secrets === # === Supplied by ./modules/vpc-secrets ===
variable "secrets_manager_arn" { # variable "secrets_manager_arn" {
type = string # type = string
description = "**Supplied by module/vpc-secrets** **Required** Secrets manager ARN where TLS cert info is stored" # description = "**Supplied by module/vpc-secrets** **Required** Secrets manager ARN where TLS cert info is stored"
} # }
variable "leader_tls_servername" { # variable "leader_tls_servername" {
type = string # type = string
description = "**Supplied by module/vpc-secrets** **Required** One of the shared DNS SAN used to create the certs use for mTLS" # description = "**Supplied by module/vpc-secrets** **Required** One of the shared DNS SAN used to create the certs use for mTLS"
} # }
variable "lb_certificate_arn" { # variable "lb_certificate_arn" {
type = string # type = string
description = "**Supplied by module/vpc-secrets** **Required** ARN of TLS certificate imported into ACM for use with LB listener" # description = "**Supplied by module/vpc-secrets** **Required** ARN of TLS certificate imported into ACM for use with LB listener"
} # }
variable "vpc_id" { # variable "vpc_id" {
type = string # type = string
description = "**Supplied by module/vpc-secrets** **Required** VPC ID where Vault will be deployed" # description = "**Supplied by module/vpc-secrets** **Required** VPC ID where Vault will be deployed"
} # }
variable "private_subnet_ids" { # variable "private_subnet_ids" {
type = list(string) # type = list(string)
description = "**Supplied by module/vpc-secrets** **Required** Subnet IDs to deploy Vault into" # description = "**Supplied by module/vpc-secrets** **Required** Subnet IDs to deploy Vault into"
} # }