tf-aws-demo/modules/app/variables.tf

39 lines
474 B
Terraform
Raw Permalink Normal View History

variable "PROJECT_NAME" {
type = string
}
2022-08-25 15:00:54 +02:00
# VPC
variable "VPC_ID" {
type = string
}
variable "VPC_SUBNETS_IDS" {
type = list(string)
}
# EC2
variable "EC2_AMI" {
2022-08-25 15:00:54 +02:00
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
2022-08-26 14:17:46 +02:00
}
# ALB
variable "ALB_TARGET_GROUP_ARNS" {
type = list(string)
2022-08-25 15:00:54 +02:00
}