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

24 lines
299 B
Terraform
Raw Normal View History

variable "PROJECT_NAME" {
type = string
}
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" {
type = string
2022-08-24 14:14:42 +02:00
default = "t2.micro"
}
variable "EC2_KEY_NAME" {
2022-08-24 14:14:42 +02:00
type = string
}