From ba21a72670677761582c44500e37912dc955903c Mon Sep 17 00:00:00 2001 From: Erikson Tung Date: Mon, 18 Sep 2023 14:09:35 -0700 Subject: [PATCH] testsys: change clustersharedSg to clusterSg in templated var In the EC2 karpenter instance resource config, instead of using the cluster shared SG, which is now obsolete, use cluster SG. --- tools/testsys/src/aws_resources.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/testsys/src/aws_resources.rs b/tools/testsys/src/aws_resources.rs index aa97a3fb1..12045d166 100644 --- a/tools/testsys/src/aws_resources.rs +++ b/tools/testsys/src/aws_resources.rs @@ -307,7 +307,7 @@ pub(crate) async fn ec2_karpenter_crd<'a>( .region_template(cluster_name, "region") .subnet_ids_template(cluster_name, "publicSubnetIds") .endpoint_template(cluster_name, "endpoint") - .cluster_sg_template(cluster_name, "clustersharedSg") + .cluster_sg_template(cluster_name, "clusterSg") .device_mappings(device_mappings) .assume_role(bottlerocket_input.crd_input.config.agent_role.clone()) .depends_on(cluster_name)