vars.tf 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. variable "phantom_instance_count" {
  2. description = "How many to stand up"
  3. type = number
  4. }
  5. variable "public_subnets" {
  6. type = list(string)
  7. }
  8. variable "azs" {
  9. type = list(string)
  10. }
  11. variable "vpc_id" {
  12. type = string
  13. }
  14. variable "tags" {
  15. description = "Tags to add to the resource (in addition to global standard tags)"
  16. type = map
  17. default = { }
  18. }
  19. variable "instance_type" {
  20. type = string
  21. default = "t3a.micro"
  22. }
  23. variable "reverse_enabled" {
  24. description = "Whether to create the reverse DNS entry."
  25. type = bool
  26. default = true
  27. }
  28. variable "trusted_ips" { type = list(string) }
  29. variable "proxy" { type = string }
  30. variable "salt_master" { type = string }
  31. variable "cidr_map" { type = map }
  32. variable "dns_info" { type = map }
  33. variable "standard_tags" { type = map }
  34. variable "environment" { type = string }
  35. variable "aws_region" { type = string }
  36. variable "ses_region" { type = string }
  37. variable "aws_partition" { type = string }
  38. variable "aws_partition_alias" { type = string }
  39. variable "aws_account_id" { type = string }
  40. variable "common_services_account" { type = string }
  41. variable "instance_termination_protection" { type = bool }