Skip to content

Commit

Permalink
Address some errors related to old packages (#1445)
Browse files Browse the repository at this point in the history
  • Loading branch information
MitchellGerdisch committed Jun 30, 2023
1 parent bc9b7e7 commit 26e78b6
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion aws-ts-eks-hello-world/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,14 @@ const name = "helloworld";
const vpc = new awsx.ec2.Vpc("vpc", { numberOfAvailabilityZones: 2 });

const cluster = new eks.Cluster(name, {
vpcId: vpc.id,
vpcId: vpc.vpcId,
subnetIds: vpc.publicSubnetIds,
desiredCapacity: 2,
minSize: 1,
maxSize: 2,
storageClasses: "gp2",
deployDashboard: false,

});

// Export the clusters' kubeconfig.
Expand Down
4 changes: 2 additions & 2 deletions aws-ts-eks-hello-world/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
"name": "aws-ts-eks-hello-world",
"dependencies": {
"@pulumi/aws": "^5.0.0",
"@pulumi/awsx": "^0.40.0",
"@pulumi/eks": "^0.30.0",
"@pulumi/awsx": "^1.0.2",
"@pulumi/eks": "^1.0.2",
"@pulumi/kubernetes": "^3.0.0",
"@pulumi/pulumi": "^3.0.0",
"@types/node": "^8.0.0"
Expand Down

0 comments on commit 26e78b6

Please sign in to comment.