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

24 lines
301 B
Terraform
Raw Normal View History

2022-08-24 14:14:42 +02:00
variable "VPC_ID" {
type = string
}
variable "SUBNET_ID" {
type = string
}
variable "EC2_AMI" {
type = string
}
variable "EC2_TYPE" {
2022-08-24 14:14:42 +02:00
type = string
default = "t2.micro"
}
variable "EC2_INSTANCE_NAME" {
2022-08-24 14:14:42 +02:00
type = string
}
variable "EC2_KEY_NAME" {
2022-08-24 14:14:42 +02:00
type = string
}