1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- variable "log_level" {
- description = "Log Level in syslog format, all caps. (CRITICAL|ERROR|WARNING|INFO|DEBUG|NOTSET)"
- type = string
- default = "INFO"
- }
- variable "module_log_level" {
- description = "Log Level for modues such as boto3 in syslog format, all caps. (CRITICAL|ERROR|WARNING|INFO|DEBUG|NOTSET)"
- type = string
- default = "INFO"
- }
- variable "split_tunnel" {
- type = bool
- description = "Whether or not to split tunnel."
- }
- variable "suffix" {
- type = string
- description = "Suffix String for Unique Naming"
- default = ""
- }
- variable "protocol" {
- type = string
- description = "'tcp' or 'udp'"
- default = "tcp"
- }
- 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(any)
- default = {}
- }
- variable "azs" { type = list(string) }
- variable "private_subnets" { type = list(string) }
- variable "public_subnets" { type = list(string) }
- variable "vpc_id" { type = string }
|