We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2481dde commit ad519ecCopy full SHA for ad519ec
examples/extra-sg/index.ts
@@ -39,6 +39,9 @@ const ngInstanceProfile = new aws.iam.InstanceProfile(
39
const cluster = new eks.Cluster(`${projectName}`, {
40
skipDefaultNodeGroup: true,
41
instanceRoles: [ngRole],
42
+ nodeGroupOptions: {
43
+ instanceType: "t3.small",
44
+ },
45
});
46
47
// Export the cluster kubeconfig.
@@ -91,6 +94,7 @@ const publicInternetEgressRule = new aws.ec2.SecurityGroupRule(
91
94
cluster.createNodeGroup("example-ng", {
92
95
instanceProfile: ngInstanceProfile,
93
96
extraNodeSecurityGroups: [customSecurityGroup],
97
98
99
100
// Test with Node Group V2 that we can add a plain type SG and a SG from the cluster as a
0 commit comments