1234567891011121314151617181920212223242526272829303132333435363738 |
- 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 "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(any)
- default = {}
- }
- variable "reverse_enabled" {
- description = "Whether to create the reverse DNS entry."
- type = bool
- default = true
- }
|