Skip to content

Commit 01b3d2f

Browse files
committed
version
1 parent 7d65f4a commit 01b3d2f

4 files changed

Lines changed: 15 additions & 2 deletions

File tree

build-and-push.sh

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
#!/usr/bin/env bash
2+
3+
set -eo pipefail
4+
pnpm -r build
5+
pnpm changeset publish
6+
git push --follow-tags

packages/aws/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# @stackattack/aws
22

3+
## 0.6.3
4+
5+
### Patch Changes
6+
7+
- Fix autoscaling group not updating when launch template is updated
8+
39
## 0.6.2
410

511
### Patch Changes

packages/aws/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@stackattack/aws",
33
"type": "module",
4-
"version": "0.6.2",
4+
"version": "0.6.3",
55
"description": "High-level, production-ready AWS components for Pulumi",
66
"homepage": "https://stackattack.camfeenstra.com",
77
"repository": "github:cfeenstra67/stackattack",

packages/aws/src/components/cluster.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -647,6 +647,7 @@ export function clusterCapacity(ctx: Context, args: ClusterCapacityArgs) {
647647
httpEndpoint: "enabled",
648648
httpTokens: "required",
649649
},
650+
updateDefaultVersion: true,
650651
tags: ctx.tags(),
651652
},
652653
{
@@ -682,7 +683,7 @@ export function clusterCapacity(ctx: Context, args: ClusterCapacityArgs) {
682683
launchTemplate: {
683684
launchTemplateSpecification: {
684685
launchTemplateId: launchTemplate.id,
685-
version: "$Latest",
686+
version: pulumi.interpolate`${launchTemplate.latestVersion}`,
686687
},
687688
},
688689
},

0 commit comments

Comments
 (0)