vars.tf 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  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
  8. default = [ ]
  9. }
  10. variable extra_key_attachers {
  11. description = "Extra encryption key attachers."
  12. type = list
  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
  31. default = { }
  32. }
  33. variable "instance_type" {
  34. type = string
  35. default = "t3a.micro"
  36. }
  37. variable "reverse_enabled" {
  38. description = "Whether to create the reverse DNS entry."
  39. type = bool
  40. default = true
  41. }
  42. variable "trusted_ips" { type = list(string) }
  43. variable "proxy" { type = string }
  44. variable "salt_master" { type = string }
  45. variable "supernets" { type = list(string) }
  46. variable "cidr_map" { type = map }
  47. variable "dns_info" { type = map }
  48. variable "standard_tags" { type = map }
  49. variable "environment" { type = string }
  50. variable "aws_region" { type = string }
  51. variable "aws_partition" { type = string }
  52. variable "aws_partition_alias" { type = string }
  53. variable "aws_account_id" { type = string }
  54. variable "common_services_account" { type = string }
  55. variable "instance_termination_protection" { type = bool }