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