vars.tf 990 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. variable "subnet_id" {
  2. type = string
  3. }
  4. variable "vpc_id" {
  5. type = string
  6. }
  7. variable "tags" {
  8. description = "Tags to add to the resource (in addition to global standard tags)"
  9. type = map
  10. default = { }
  11. }
  12. variable "resolver_instance_type" {
  13. type = string
  14. default = "t3a.micro"
  15. }
  16. variable "reverse_enabled" {
  17. description = "Whether to create the reverse DNS entry."
  18. type = bool
  19. default = true
  20. }
  21. variable "resolver_instance_key_name" {
  22. type = string
  23. default = "msoc-build"
  24. }
  25. variable "proxy_ip" { type = string }
  26. variable "salt_master_ip" { type = string }
  27. variable "cidr_map" { type = map }
  28. variable "dns_info" { type = map }
  29. variable "standard_tags" { type = map }
  30. variable "environment" { type = string }
  31. variable "aws_region" { type = string }
  32. variable "aws_partition" { type = string }
  33. variable "aws_partition_alias" { type = string }
  34. variable "common_services_account" { type = string }
  35. variable "instance_termination_protection" { type = bool }