vars.tf 325 B

12345678910111213
  1. variable "primary_vpc" {
  2. description = "VPC for the inbound connector"
  3. type = string
  4. }
  5. variable "subnets" {
  6. description = "Subnets in which to create the resolver."
  7. type = list(any)
  8. }
  9. # inherited variables
  10. variable "tags" { type = map(any) }
  11. variable "inbound_resolver_endpoints" { type = list(any) }