tf-aws-demo/modules/app/variables.tf
mr-vercetti ffdb539b4d Add ALB
2022-08-26 14:17:46 +02:00

35 lines
425 B
HCL
Executable File

# VPC
variable "VPC_ID" {
type = string
}
variable "VPC_SUBNETS_IDS" {
type = list(string)
}
# EC2
variable "EC2_AMI" {
type = string
}
variable "EC2_TYPE" {
type = string
}
variable "EC2_KEY_NAME" {
type = string
}
# ASG
variable "ASG_MIN_SIZE" {
type = number
}
variable "ASG_MAX_SIZE" {
type = number
}
# ALB
variable "ALB_TARGET_GROUP_ARNS" {
type = list(string)
}