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

20 lines
254 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 "INSTANCE_TYPE" {
type = string
default = "t2.micro"
}
variable "INSTANCE_NAME" {
type = string
}
variable "KEY_NAME" {
type = string
}