vars.tf 613 B

1234567891011121314151617181920212223
  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
  8. }
  9. variable "additional_vpcs" {
  10. description = "Additional VPCs with which to share the outbound resolver"
  11. type = list
  12. }
  13. # inherited variables
  14. variable tags { type = map }
  15. variable inbound_resolver_endpoints { type = list }
  16. variable dns_info { type = map }
  17. variable standard_tags { type = map }
  18. variable aws_account_id { type = string }
  19. variable aws_partition { type = string }
  20. variable account_list { type = list }