1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- variable "alsi_workers" {
- type = number
- }
- variable "alsi_splunk_nlb" {
- description = "Create an NLB that forwards to 9997/9998?"
- type = bool
- }
- variable "alsi_elastic_alb" {
- description = "Create an ALB that forwards to 9200?"
- type = bool
- }
- variable "alsi_hec_alb" {
- description = "Create an ALB that forwards to 8088?"
- type = bool
- }
- variable "prefix" {
- description = "Prefix for Instance Names"
- type = string
- }
- variable "splunk_legacy_cidr" {
- description = "The legacy CIDR block(s)"
- default = []
- type = list(string)
- }
- variable "azs" {
- type = list(string)
- }
- variable "splunk_volume_sizes" {
- type = map(map(number))
- }
- variable "subnets" {
- type = list(string)
- }
- variable "vpc_id" {
- type = string
- }
- variable "vpc_cidr" {
- type = string
- }
- variable "tags" {
- description = "Tags to add to the resource (in addition to global standard tags)"
- type = map
- default = { }
- }
- variable "instance_types" {
- type = map
- }
- variable "reverse_enabled" {
- description = "Whether to create the reverse DNS entry."
- type = bool
- default = true
- }
- variable "trusted_ips" { type = list(string) }
- variable "splunk_data_sources" { type = list(string) }
- variable "proxy" { type = string }
- variable "salt_master" { type = string }
- variable "cidr_map" { type = map }
- variable "dns_info" { type = map }
- variable "standard_tags" { type = map }
- variable "environment" { type = string }
- variable "aws_region" { type = string }
- variable "aws_partition" { type = string }
- variable "aws_partition_alias" { type = string }
- variable "common_services_account" { type = string }
- variable "instance_termination_protection" { type = bool }
|