vars.tf 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. variable "split_tunnel" {
  2. type = bool
  3. description = "Whether or not to split tunnel."
  4. }
  5. variable "suffix" {
  6. type = string
  7. description = "Suffix String for Unique Naming"
  8. default = ""
  9. }
  10. variable "protocol" {
  11. type = string
  12. description = "'tcp' or 'udp'"
  13. default = "tcp"
  14. }
  15. variable "dns_name" {
  16. type = string
  17. description = "Used for the certificate"
  18. }
  19. variable "tags" {
  20. description = "Tags to add to the resource (in addition to global standard tags)"
  21. type = map
  22. default = { }
  23. }
  24. variable "azs" { type = list(string) }
  25. variable "private_subnets" { type = list(string) }
  26. variable "public_subnets" { type = list(string) }
  27. variable "vpc_id" { type = string }
  28. variable "cidr_map" { type = map }
  29. variable "dns_info" { type = map }
  30. variable "dns_servers" { type = list(string) }
  31. variable "standard_tags" { type = map }
  32. variable "environment" { type = string }
  33. variable "aws_region" { type = string }
  34. variable "aws_partition" { type = string }
  35. variable "aws_partition_alias" { type = string }
  36. variable "common_services_account" { type = string }
  37. variable "instance_termination_protection" { type = bool }