vars.tf 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  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 "azs" {
  11. type = list(string)
  12. }
  13. variable "subnets" {
  14. type = list(string)
  15. }
  16. variable "vpc_id" {
  17. type = string
  18. }
  19. variable "vpc_cidr" {
  20. type = string
  21. }
  22. variable "tags" {
  23. description = "Tags to add to the resource (in addition to global standard tags)"
  24. type = map
  25. default = { }
  26. }
  27. variable "instance_type" {
  28. type = string
  29. default = "t3a.micro"
  30. }
  31. variable "reverse_enabled" {
  32. description = "Whether to create the reverse DNS entry."
  33. type = bool
  34. default = true
  35. }
  36. variable "trusted_ips" { type = list(string) }
  37. variable "proxy" { type = string }
  38. variable "salt_master" { type = string }
  39. variable "cidr_map" { type = map }
  40. variable "dns_info" { type = map }
  41. variable "standard_tags" { type = map }
  42. variable "environment" { type = string }
  43. variable "aws_region" { type = string }
  44. variable "aws_partition" { type = string }
  45. variable "aws_partition_alias" { type = string }
  46. variable "common_services_account" { type = string }
  47. variable "instance_termination_protection" { type = bool }