vars.tf 726 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. variable "instance_name" {
  2. description = "[Optional] Override the Instance Name"
  3. type = string
  4. default = ""
  5. }
  6. variable "prefix" {
  7. description = "Prefix for Instance Names"
  8. type = string
  9. }
  10. variable "azs" {
  11. type = list(string)
  12. }
  13. variable "public_subnets" { type = list(string) }
  14. variable "private_subnets" { type = list(string) }
  15. variable "vpc_id" {
  16. type = string
  17. }
  18. variable "vpc_cidr" {
  19. type = string
  20. }
  21. variable "tags" {
  22. description = "Tags to add to the resource (in addition to global standard tags)"
  23. type = map(any)
  24. default = {}
  25. }
  26. variable "reverse_enabled" {
  27. description = "Whether to create the reverse DNS entry."
  28. type = bool
  29. default = true
  30. }