123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- variable "create_instance_profile" {
- description = "Whether to create the instance profile. Can only be 'true' for one module per account."
- type = string
- default = true
- }
- variable "instance_name" {
- description = "[Optional] Override the Instance Name"
- type = string
- default = ""
- }
- variable "alb_name" {
- description = "[Optional] Override the ALB Name"
- type = string
- default = ""
- }
- 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 "instance_tags" {
- description = "Tags for the instance only."
- type = map(string)
- default = {}
- }
- variable "instance_type" {
- type = string
- default = "t3a.micro"
- }
- variable "reverse_enabled" {
- description = "Whether to create the reverse DNS entry."
- type = bool
- default = true
- }
|