vars.tf 772 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. variable "instance_prefix" {
  2. type = string
  3. description = "Prefix for instance names."
  4. default = "resolver-govcloud"
  5. }
  6. variable "instance_number" {
  7. type = number
  8. default = 1
  9. }
  10. variable "subnet_id" {
  11. type = string
  12. }
  13. variable "vpc_id" {
  14. type = string
  15. }
  16. variable "tags" {
  17. description = "Tags to add to the resource (in addition to global standard tags)"
  18. type = map(any)
  19. default = {}
  20. }
  21. variable "instance_tags" {
  22. description = "Tags for the instance only."
  23. type = map(string)
  24. default = {}
  25. }
  26. variable "reverse_enabled" {
  27. description = "Whether to create the reverse DNS entry."
  28. type = bool
  29. default = true
  30. }
  31. variable "resolver_instance_key_name" {
  32. type = string
  33. default = "msoc-build"
  34. }