vars.tf 1.6 KB

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