vars.tf 488 B

123456789101112131415161718
  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
  8. }
  9. # inherited variables
  10. variable tags { type = map }
  11. variable inbound_resolver_endpoints { type = list }
  12. variable dns_info { type = map }
  13. variable standard_tags { type = map }
  14. variable aws_account_id { type = string }
  15. variable aws_partition { type = string }
  16. variable account_list { type = list }