terraform.aws-baseline-infra/modules/compute/ec2/variable.tf

35 lines
694 B
HCL

variable "instance-type" {}
variable "ami-id" {}
variable "asso-public-ip" {}
// variable az {}
variable "instance-profile" {
type = string
default = ""
}
variable "key-name" {}
variable "ebs-encrypted" {}
variable "root-volume-size" {}
variable "root-volume-type" {
type = string
default = "gp3"
}
variable "kms-key-id" {}
variable "delete-on-termination" {
type = bool
default = true
}
variable "subnet-id" {}
variable "security-groups" {
type = list(any)
}
variable "instance-name" {}
variable "additional_tags" {}
variable "asso-eip" {
type = bool
}
variable "default-tags" {}
variable "data-volumes" {}
variable "private-ip" {
type = string
default = null
}