mirror of
https://github.com/mr-vercetti/tf-aws-demo.git
synced 2025-01-18 19:35:34 +01:00
24 lines
299 B
HCL
Executable File
24 lines
299 B
HCL
Executable File
variable "PROJECT_NAME" {
|
|
type = string
|
|
}
|
|
|
|
variable "VPC_ID" {
|
|
type = string
|
|
}
|
|
|
|
variable "SUBNET_ID" {
|
|
type = string
|
|
}
|
|
|
|
variable "EC2_AMI" {
|
|
type = string
|
|
}
|
|
|
|
variable "EC2_TYPE" {
|
|
type = string
|
|
default = "t2.micro"
|
|
}
|
|
|
|
variable "EC2_KEY_NAME" {
|
|
type = string
|
|
} |