vars.tf 961 B

123456789101112131415161718192021222324252627282930313233343536
  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 "proxy_ip" { type = string }
  22. variable "salt_master_ip" { type = string }
  23. variable "cidr_map" { type = map }
  24. variable "resolver_instance_key_name" { type = string }
  25. variable "dns_info" { type = map }
  26. variable "standard_tags" { type = map }
  27. variable "environment" { type = string }
  28. variable "aws_region" { type = string }
  29. variable "aws_partition" { type = string }
  30. variable "aws_partition_alias" { type = string }
  31. variable "common_services_account" { type = string }
  32. variable "instance_termination_protection" { type = bool }