Skip to content

Commit

Permalink
add tags
Browse files Browse the repository at this point in the history
  • Loading branch information
blakeromano committed Mar 4, 2024
1 parent 8ccefd6 commit 461ec07
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions pulumi/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,9 @@ const vpc = new awsx.ec2.Vpc("vpc", {
},
},
],
tags: {
"name": stackName,
},
})

// If we are creating a spoke cluster we need to create argoRole first, ensure it
Expand Down Expand Up @@ -82,6 +85,9 @@ const eksCluster = new eks.Cluster(`${stackName}-cluster`, {
maxSize: 25,
desiredCapacity: 4,
},
tags: {
"name": stackName,
},
},{
transformations: [args => {
if (args.type === "aws:eks/cluster:Cluster") {
Expand Down

0 comments on commit 461ec07

Please sign in to comment.