vars.tf 862 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  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_tags" {
  28. description = "Tags for the instance only."
  29. type = map(string)
  30. default = {}
  31. }
  32. variable "instance_type" {
  33. type = string
  34. default = "t3a.micro"
  35. }
  36. variable "reverse_enabled" {
  37. description = "Whether to create the reverse DNS entry."
  38. type = bool
  39. default = true
  40. }