Skip to content

Commit

Permalink
Fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
flostadler committed Sep 30, 2024
1 parent 17fdb5f commit f6bd097
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/cluster/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ const cluster1 = new eks.Cluster(`${projectName}-1`, {
nodeAmiId: "ami-066e69f6f03b5383e",
});

export const defaultAsgArn = cluster1.defaultNodeGroup.apply(ng => ng?.autoScalingGroup.arn ?? "");
export const defaultAsgArn = pulumi.output(cluster1.defaultNodeGroup).apply(ng => ng?.autoScalingGroup.arn ?? "");

const cluster2 = new eks.Cluster(`${projectName}-2`, {
vpcId: vpc.vpcId,
Expand Down

0 comments on commit f6bd097

Please sign in to comment.