vars.tf 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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 }