vars.tf 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. variable "instance_number" {
  2. type = number
  3. default = 1
  4. }
  5. variable "subnet_id" {
  6. type = string
  7. }
  8. variable "vpc_id" {
  9. type = string
  10. }
  11. variable "tags" {
  12. description = "Tags to add to the resource (in addition to global standard tags)"
  13. type = map
  14. default = { }
  15. }
  16. variable "resolver_instance_type" {
  17. type = string
  18. default = "t3a.micro"
  19. }
  20. variable "reverse_enabled" {
  21. description = "Whether to create the reverse DNS entry."
  22. type = bool
  23. default = true
  24. }
  25. variable "resolver_instance_key_name" {
  26. type = string
  27. default = "msoc-build"
  28. }
  29. variable "proxy_ip" { type = string }
  30. variable "salt_master_ip" { 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 "aws_partition" { type = string }
  37. variable "aws_partition_alias" { type = string }
  38. variable "common_services_account" { type = string }
  39. variable "instance_termination_protection" { type = bool }