vars.tf 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. variable "alsi_workers" {
  2. type = number
  3. }
  4. variable "alsi_splunk_nlb" {
  5. description = "Create an NLB that forwards to 9997/9998?"
  6. type = bool
  7. }
  8. variable "alsi_elastic_alb" {
  9. description = "Create an ALB that forwards to 9200?"
  10. type = bool
  11. }
  12. variable "alsi_hec_alb" {
  13. description = "Create an ALB that forwards to 8088?"
  14. type = bool
  15. }
  16. variable "prefix" {
  17. description = "Prefix for Instance Names"
  18. type = string
  19. }
  20. variable "splunk_legacy_cidr" {
  21. description = "The legacy CIDR block(s)"
  22. default = []
  23. type = list(string)
  24. }
  25. variable "azs" {
  26. type = list(string)
  27. }
  28. variable "splunk_volume_sizes" {
  29. type = map(map(number))
  30. }
  31. variable "subnets" {
  32. type = list(string)
  33. }
  34. variable "vpc_id" {
  35. type = string
  36. }
  37. variable "vpc_cidr" {
  38. type = string
  39. }
  40. variable "tags" {
  41. description = "Tags to add to the resource (in addition to global standard tags)"
  42. type = map
  43. default = { }
  44. }
  45. variable "instance_types" {
  46. type = map
  47. }
  48. variable "reverse_enabled" {
  49. description = "Whether to create the reverse DNS entry."
  50. type = bool
  51. default = true
  52. }
  53. variable "trusted_ips" { type = list(string) }
  54. variable "splunk_data_sources" { type = list(string) }
  55. variable "proxy" { type = string }
  56. variable "salt_master" { type = string }
  57. variable "cidr_map" { type = map }
  58. variable "dns_info" { type = map }
  59. variable "standard_tags" { type = map }
  60. variable "environment" { type = string }
  61. variable "aws_region" { type = string }
  62. variable "aws_partition" { type = string }
  63. variable "aws_partition_alias" { type = string }
  64. variable "common_services_account" { type = string }
  65. variable "instance_termination_protection" { type = bool }