vars.tf 940 B

123456789101112131415161718192021222324252627282930
  1. variable "split_tunnel" {
  2. type = bool
  3. description = "Whether or not to split tunnel."
  4. }
  5. variable "dns_name" {
  6. type = string
  7. description = "Used for the certificate"
  8. }
  9. variable "tags" {
  10. description = "Tags to add to the resource (in addition to global standard tags)"
  11. type = map
  12. default = { }
  13. }
  14. variable "azs" { type = list(string) }
  15. variable "private_subnets" { type = list(string) }
  16. variable "public_subnets" { type = list(string) }
  17. variable "vpc_id" { type = string }
  18. variable "cidr_map" { type = map }
  19. variable "dns_info" { type = map }
  20. variable "dns_servers" { type = list(string) }
  21. variable "standard_tags" { type = map }
  22. variable "environment" { type = string }
  23. variable "aws_region" { type = string }
  24. variable "aws_partition" { type = string }
  25. variable "aws_partition_alias" { type = string }
  26. variable "common_services_account" { type = string }
  27. variable "instance_termination_protection" { type = bool }