vars.tf 471 B

123456789101112131415
  1. variable "tags" {
  2. description = "Tags to add to the resource (in addition to global standard tags)"
  3. type = map(any)
  4. default = {}
  5. }
  6. variable "vpc_info" {
  7. description = "A map of information about the VPC to create. Must contain `name` and `cidr`."
  8. type = map(any)
  9. }
  10. variable "vpc_id" { type = string }
  11. variable "azs" { type = list(string) }
  12. variable "public_subnets" { type = list(string) }
  13. variable "private_subnets" { type = list(string) }