eks 구축 완료

This commit is contained in:
2022-12-29 00:52:17 +09:00
parent ee0d78b284
commit 2281b27e7a
6 changed files with 67 additions and 20 deletions

View File

@ -0,0 +1,21 @@
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
}