vars.tf 740 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. variable "prefix" {
  2. description = "Prefix for Instance Names"
  3. type = string
  4. }
  5. variable "splunk_legacy_cidr" {
  6. description = "The legacy CIDR block(s)"
  7. default = []
  8. type = list(string)
  9. }
  10. variable "azs" {
  11. type = list(string)
  12. }
  13. variable "subnets" {
  14. type = list(string)
  15. }
  16. variable "vpc_id" {
  17. type = string
  18. }
  19. variable "vpc_cidr" {
  20. type = string
  21. }
  22. variable "tags" {
  23. description = "Tags to add to the resource (in addition to global standard tags)"
  24. type = map(any)
  25. default = {}
  26. }
  27. variable "instance_type" {
  28. type = string
  29. default = "t3a.micro"
  30. }
  31. variable "reverse_enabled" {
  32. description = "Whether to create the reverse DNS entry."
  33. type = bool
  34. default = true
  35. }