terraform-demo/modules/eks-node-group/variables.tf
2022-12-29 00:52:17 +09:00

22 lines
308 B
HCL

variable "node_group_name" {
type = string
}
variable "cluster_name" {
type = string
}
variable "iam_role_arn" {
type = string
}
variable "subnet_list" {
type = list(string)
}
variable "desired_size" {
type = number
}
variable "max_size" {
type = number
}
variable "min_size" {
type = number
}