mirror of
https://github.com/ysoftdevs/terraform-aws-eks.git
synced 2026-03-19 07:53:46 +01:00
feat: Add support for upgrade_policy (#3112)
* feat: Add support for `upgrade_policy` * chore: Update test and validate
This commit is contained in:
@@ -7,7 +7,7 @@ data "aws_availability_zones" "available" {}
|
||||
|
||||
locals {
|
||||
name = "ex-${replace(basename(path.cwd), "_", "-")}"
|
||||
cluster_version = "1.29"
|
||||
cluster_version = "1.30"
|
||||
region = "eu-west-1"
|
||||
|
||||
vpc_cidr = "10.0.0.0/16"
|
||||
@@ -61,6 +61,10 @@ module "eks" {
|
||||
}
|
||||
}
|
||||
|
||||
cluster_upgrade_policy = {
|
||||
support_type = "STANDARD"
|
||||
}
|
||||
|
||||
vpc_id = module.vpc.vpc_id
|
||||
subnet_ids = module.vpc.private_subnets
|
||||
control_plane_subnet_ids = module.vpc.intra_subnets
|
||||
|
||||
Reference in New Issue
Block a user