vars.tf 359 B

12345678910
  1. variable "vpcs" { type = list(string) }
  2. variable "subnets" { type = list(string) }
  3. # inherited variables
  4. variable "dns_info" { type = map(any) }
  5. variable "tags" { type = map(any) }
  6. variable "standard_tags" { type = map(any) }
  7. variable "aws_account_id" { type = string }
  8. variable "aws_partition" { type = string }
  9. variable "account_list" { type = list(any) }