vars.tf 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  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 "prefix" {
  11. description = "Prefix for Instance Names"
  12. type = string
  13. }
  14. variable "azs" {
  15. type = list(string)
  16. }
  17. variable "splunk_volume_sizes" {
  18. type = map(map(number))
  19. }
  20. variable "public_subnets" { type = list(string) }
  21. variable "private_subnets" { type = list(string) }
  22. variable "vpc_id" {
  23. type = string
  24. }
  25. variable "vpc_cidr" {
  26. type = string
  27. }
  28. variable "tags" {
  29. description = "Tags to add to the resource (in addition to global standard tags)"
  30. type = map
  31. default = { }
  32. }
  33. variable "instance_type" {
  34. type = string
  35. default = "t3a.micro"
  36. }
  37. variable "reverse_enabled" {
  38. description = "Whether to create the reverse DNS entry."
  39. type = bool
  40. default = true
  41. }
  42. variable "portal_test_whitelist" { type = list }
  43. variable "trusted_ips" { type = list(string) }
  44. variable "proxy" { type = string }
  45. variable "salt_master" { type = string }
  46. variable "cidr_map" { type = map }
  47. variable "dns_info" { type = map }
  48. variable "standard_tags" { type = map }
  49. variable "environment" { type = string }
  50. variable "aws_region" { type = string }
  51. variable "aws_partition" { type = string }
  52. variable "aws_partition_alias" { type = string }
  53. variable "aws_account_id" { type = string }
  54. variable "common_services_account" { type = string }
  55. variable "instance_termination_protection" { type = bool }
  56. variable "splunk_prefix" { type = string }