vars.tf 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. variable "instance_name" {
  2. description = "Hostname, DNS entry, etc."
  3. type = string
  4. }
  5. variable "instance_count" {
  6. description = "Number of servers"
  7. type = list(string)
  8. default = ["1","2","3"]
  9. }
  10. variable "azs" {
  11. type = list(string)
  12. }
  13. variable "subnets" {
  14. type = list(string)
  15. }
  16. variable "vpc_id" {
  17. type = string
  18. }
  19. variable "tags" {
  20. description = "Tags to add to the resource (in addition to global standard tags)"
  21. type = map
  22. default = { }
  23. }
  24. variable "instance_type" {
  25. type = string
  26. default = "t3a.micro"
  27. }
  28. variable "reverse_enabled" {
  29. description = "Whether to create the reverse DNS entry."
  30. type = bool
  31. default = true
  32. }
  33. variable "trusted_ips" { type = list(string) }
  34. variable "xdr_interconnect" { type = list(string) }
  35. variable "nga_pop" { type = list(string) }
  36. variable "afs_azure_pop" { type = list(string) }
  37. variable "afs_pop" { type = list(string) }
  38. variable "proxy" { type = string }
  39. variable "salt_master" { type = string }
  40. variable "cidr_map" { type = map }
  41. variable "dns_info" { type = map }
  42. variable "standard_tags" { type = map }
  43. variable "environment" { type = string }
  44. variable "aws_region" { type = string }
  45. variable "aws_partition" { type = string }
  46. variable "aws_partition_alias" { type = string }
  47. variable "aws_account_id" { type = string }
  48. variable "common_services_account" { type = string }
  49. variable "instance_termination_protection" { type = bool }