123456789101112131415161718192021222324252627282930 |
- variable "split_tunnel" {
- type = bool
- description = "Whether or not to split tunnel."
- }
- variable "dns_name" {
- type = string
- description = "Used for the certificate"
- }
- variable "tags" {
- description = "Tags to add to the resource (in addition to global standard tags)"
- type = map
- default = { }
- }
- variable "azs" { type = list(string) }
- variable "private_subnets" { type = list(string) }
- variable "public_subnets" { type = list(string) }
- variable "vpc_id" { type = string }
- variable "cidr_map" { type = map }
- variable "dns_info" { type = map }
- variable "dns_servers" { type = list(string) }
- variable "standard_tags" { type = map }
- variable "environment" { type = string }
- variable "aws_region" { type = string }
- variable "aws_partition" { type = string }
- variable "aws_partition_alias" { type = string }
- variable "common_services_account" { type = string }
- variable "instance_termination_protection" { type = bool }
|