vars.tf 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  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 "instance_tags" {
  17. description = "Tags for the instance only."
  18. type = map(string)
  19. default = { }
  20. }
  21. variable "resolver_instance_type" {
  22. type = string
  23. default = "t3a.micro"
  24. }
  25. variable "reverse_enabled" {
  26. description = "Whether to create the reverse DNS entry."
  27. type = bool
  28. default = true
  29. }
  30. variable "resolver_instance_key_name" {
  31. type = string
  32. default = "msoc-build"
  33. }
  34. variable "proxy_ip" { type = string }
  35. variable "salt_master_ip" { type = string }
  36. variable "cidr_map" { type = map }
  37. variable "dns_info" { type = map }
  38. variable "standard_tags" { type = map }
  39. variable "environment" { type = string }
  40. variable "aws_region" { type = string }
  41. variable "aws_partition" { type = string }
  42. variable "aws_partition_alias" { type = string }
  43. variable "common_services_account" { type = string }
  44. variable "instance_termination_protection" { type = bool }