Skip to content

Commit

Permalink
chore: integ cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
nmussy committed Apr 5, 2024
1 parent ff550f9 commit 6954aa4
Showing 1 changed file with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,8 @@ interface TestCaseProps extends StackProps {
export class ImageIdTestCase extends Stack {
constructor(scope: Construct, id: string, props: TestCaseProps) {
super(scope, id, props);
this.node.setContext(EC2_RESTRICT_DEFAULT_SECURITY_GROUP, false);
const machineImage = props.machineImage;

new CfnOutput(this, 'ImageId', { value: machineImage.getImage(this).imageId });
new CfnOutput(this, 'ImageId', { value: props.machineImage.getImage(this).imageId });
}
}

Expand Down

0 comments on commit 6954aa4

Please sign in to comment.