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

24 lines
301 B
HCL
Executable File

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_INSTANCE_NAME" {
type = string
}
variable "EC2_KEY_NAME" {
type = string
}