vars.tf 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. variable extra_key_users {
  2. description = "Extra encryption key users."
  3. type = list
  4. default = [ ]
  5. }
  6. variable extra_key_attachers {
  7. description = "Extra encryption key attachers."
  8. type = list
  9. default = [ ]
  10. }
  11. variable "azs" {
  12. type = list(string)
  13. }
  14. variable "private_subnets" {
  15. type = list(string)
  16. default = []
  17. }
  18. variable "public_subnets" {
  19. type = list(string)
  20. }
  21. variable "vpc_id" {
  22. type = string
  23. }
  24. variable "tags" {
  25. description = "Tags to add to the resource (in addition to global standard tags)"
  26. type = map
  27. default = { }
  28. }
  29. variable "instance_type" {
  30. type = string
  31. default = "t3a.micro"
  32. }
  33. variable "reverse_enabled" {
  34. description = "Whether to create the reverse DNS entry."
  35. type = bool
  36. default = true
  37. }
  38. variable "trusted_ips" { type = list(string) }
  39. variable "proxy" { type = string }
  40. variable "salt_master" { type = string }
  41. variable "supernets" { type = list(string) }
  42. variable "cidr_map" { type = map }
  43. variable "dns_info" { type = map }
  44. variable "standard_tags" { type = map }
  45. variable "environment" { type = string }
  46. variable "aws_region" { type = string }
  47. variable "aws_partition" { type = string }
  48. variable "aws_partition_alias" { type = string }
  49. variable "aws_account_id" { type = string }
  50. variable "common_services_account" { type = string }
  51. variable "instance_termination_protection" { type = bool }