vars.tf 1.5 KB

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