vars.tf 843 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. variable "tqbackup_size" {
  2. description = "Size of the tqbackup EBS volume"
  3. default = 100
  4. }
  5. variable "extra_key_users" {
  6. description = "Extra encryption key users."
  7. type = list(any)
  8. default = []
  9. }
  10. variable "extra_key_attachers" {
  11. description = "Extra encryption key attachers."
  12. type = list(any)
  13. default = []
  14. }
  15. variable "azs" {
  16. type = list(string)
  17. }
  18. variable "private_subnets" {
  19. type = list(string)
  20. default = []
  21. }
  22. variable "public_subnets" {
  23. type = list(string)
  24. }
  25. variable "vpc_id" {
  26. type = string
  27. }
  28. variable "tags" {
  29. description = "Tags to add to the resource (in addition to global standard tags)"
  30. type = map(any)
  31. default = {}
  32. }
  33. variable "reverse_enabled" {
  34. description = "Whether to create the reverse DNS entry."
  35. type = bool
  36. default = true
  37. }