vars.tf 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. variable "instance_name" {
  2. description = "[Optional] Override the Instance Name"
  3. type = string
  4. default = ""
  5. }
  6. variable "alb_name" {
  7. description = "[Optional] Override the ALB Name"
  8. type = string
  9. default = ""
  10. }
  11. variable "prefix" {
  12. description = "Prefix for Instance Names"
  13. type = string
  14. }
  15. variable "splunk_legacy_cidr" {
  16. description = "The legacy CIDR block(s)"
  17. default = []
  18. type = list(string)
  19. }
  20. variable "azs" {
  21. type = list(string)
  22. }
  23. variable "splunk_volume_sizes" {
  24. type = map(map(number))
  25. }
  26. variable "subnets" {
  27. type = list(string)
  28. }
  29. variable "vpc_id" {
  30. type = string
  31. }
  32. variable "vpc_cidr" {
  33. type = string
  34. }
  35. variable "tags" {
  36. description = "Tags to add to the resource (in addition to global standard tags)"
  37. type = map
  38. default = { }
  39. }
  40. variable "instance_type" {
  41. type = string
  42. default = "t3a.micro"
  43. }
  44. variable "reverse_enabled" {
  45. description = "Whether to create the reverse DNS entry."
  46. type = bool
  47. default = true
  48. }
  49. variable "trusted_ips" { type = list(string) }
  50. variable "proxy" { type = string }
  51. variable "salt_master" { type = string }
  52. variable "cidr_map" { type = map }
  53. variable "dns_info" { type = map }
  54. variable "standard_tags" { type = map }
  55. variable "environment" { type = string }
  56. variable "aws_region" { type = string }
  57. variable "aws_partition" { type = string }
  58. variable "aws_partition_alias" { type = string }
  59. variable "common_services_account" { type = string }
  60. variable "instance_termination_protection" { type = bool }