Skip to content

Commit

Permalink
Fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
corymhall committed Nov 14, 2024
1 parent fb112ad commit 7e79906
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion integration/replace-on-changes/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ class ReplaceOnChangesStack extends pulumicdk.Stack {
default: true,
}).id;
const azs = aws.getAvailabilityZonesOutput({}).names;
new ec2.SecurityGroup(this, 'sg', {
new ec2.SecurityGroup(this, 'security-group', {
description: 'Some Description',
vpc: ec2.Vpc.fromVpcAttributes(this, 'vpc', {
vpcId: pulumicdk.asString(vpc),
Expand Down
2 changes: 1 addition & 1 deletion integration/replace-on-changes/step2/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ class ReplaceOnChangesStack extends pulumicdk.Stack {
default: true,
}).id;
const azs = aws.getAvailabilityZonesOutput({}).names;
new ec2.SecurityGroup(this, 'sg', {
new ec2.SecurityGroup(this, 'security-group', {
// description is a createOnlyProperty which means this would fail
// if `replaceOnChanges` was not working
description: 'Some New Description',
Expand Down

0 comments on commit 7e79906

Please sign in to comment.