vars.tf 401 B

1234567891011121314151617
  1. variable "primary_vpc" {
  2. description = "VPC for the outbound connector"
  3. type = string
  4. }
  5. variable "subnets" {
  6. description = "Subnets in which to create the resolver."
  7. type = list(any)
  8. }
  9. variable "additional_vpcs" {
  10. description = "Additional VPCs with which to share the outbound resolver"
  11. type = list(any)
  12. }
  13. # inherited variables
  14. variable "tags" { type = map(any) }