terraform.aws-baseline-infra/modules/compute/ec2/variable.tf
2022-09-05 18:32:37 +08:00

25 lines
470 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 subnet-id {}
variable security-groups {
type = list
}
variable instance-name {}
variable additional_tags {}
variable asso-eip {
type = bool
}
variable default-tags {}