vars.tf 1.4 KB

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