vars.tf 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. variable "log_level" {
  2. description = "Log Level in syslog format, all caps. (CRITICAL|ERROR|WARNING|INFO|DEBUG|NOTSET)"
  3. type = string
  4. default = "INFO"
  5. }
  6. variable "module_log_level" {
  7. description = "Log Level for modues such as boto3 in syslog format, all caps. (CRITICAL|ERROR|WARNING|INFO|DEBUG|NOTSET)"
  8. type = string
  9. default = "INFO"
  10. }
  11. variable "split_tunnel" {
  12. type = bool
  13. description = "Whether or not to split tunnel."
  14. }
  15. variable "suffix" {
  16. type = string
  17. description = "Suffix String for Unique Naming"
  18. default = ""
  19. }
  20. variable "protocol" {
  21. type = string
  22. description = "'tcp' or 'udp'"
  23. default = "tcp"
  24. }
  25. variable "dns_name" {
  26. type = string
  27. description = "Used for the certificate"
  28. }
  29. variable "tags" {
  30. description = "Tags to add to the resource (in addition to global standard tags)"
  31. type = map(any)
  32. default = {}
  33. }
  34. variable "azs" { type = list(string) }
  35. variable "private_subnets" { type = list(string) }
  36. variable "public_subnets" { type = list(string) }
  37. variable "vpc_id" { type = string }
  38. variable "cidr_map" { type = map(any) }
  39. variable "dns_info" { type = map(any) }
  40. variable "dns_servers" { type = list(string) }
  41. variable "standard_tags" { type = map(any) }
  42. variable "environment" { type = string }
  43. variable "aws_region" { type = string }
  44. variable "aws_partition" { type = string }
  45. variable "aws_partition_alias" { type = string }
  46. variable "common_services_account" { type = string }
  47. variable "instance_termination_protection" { type = bool }