mirror of
https://github.com/mr-vercetti/tf-aws-demo.git
synced 2025-01-18 19:35:34 +01:00
39 lines
474 B
HCL
Executable File
39 lines
474 B
HCL
Executable File
variable "PROJECT_NAME" {
|
|
type = string
|
|
}
|
|
|
|
# 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)
|
|
} |