Patrick de Ruiter c9edecd4ad
Added files
2020-06-24 11:31:27 +02:00

31 lines
593 B
HCL

variable "aws_region" {
description = "The Amazon region"
type = string
}
variable "project" {
description = "Name of the project"
type = string
}
variable "environment" {
description = "Logical name of the environment"
type = string
}
variable "key_name" {
description = "SSH key name for the environment"
type = string
}
variable "ssh_key_file_bastion" {
description = "SSH key file for the bastion host"
default = "generated/id_rsa.pub"
}
variable "enable_bastion" {
description = "Enable a bastion host"
default = "true"
}