1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- variable "tqbackup_size" {
- description = "Size of the tqbackup EBS volume"
- default = 100
- }
- variable "extra_key_users" {
- description = "Extra encryption key users."
- type = list(any)
- default = []
- }
- variable "extra_key_attachers" {
- description = "Extra encryption key attachers."
- type = list(any)
- default = []
- }
- variable "azs" {
- type = list(string)
- }
- variable "private_subnets" {
- type = list(string)
- default = []
- }
- variable "public_subnets" {
- type = list(string)
- }
- variable "vpc_id" {
- type = string
- }
- variable "tags" {
- description = "Tags to add to the resource (in addition to global standard tags)"
- type = map(any)
- default = {}
- }
- variable "reverse_enabled" {
- description = "Whether to create the reverse DNS entry."
- type = bool
- default = true
- }
|