123456789101112131415161718 |
- variable "primary_vpc" {
- description = "VPC for the inbound connector"
- type = string
- }
- variable "subnets" {
- description = "Subnets in which to create the resolver."
- type = list(any)
- }
- # inherited variables
- variable "tags" { type = map(any) }
- variable "inbound_resolver_endpoints" { type = list(any) }
- variable "dns_info" { type = map(any) }
- variable "standard_tags" { type = map(any) }
- variable "aws_account_id" { type = string }
- variable "aws_partition" { type = string }
- variable "account_list" { type = list(any) }
|