vars.tf 677 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(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) }
  15. variable "inbound_resolver_endpoints" { type = list(any) }
  16. variable "dns_info" { type = map(any) }
  17. variable "standard_tags" { type = map(any) }
  18. variable "aws_account_id" { type = string }
  19. variable "aws_partition" { type = string }
  20. variable "account_list" { type = list(any) }