tf-aws-demo/modules/bastion_host/variables.tf
2022-08-26 15:24:01 +02:00

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
}