Skip to content

Commit

Permalink
fix(aws): use proper scope
Browse files Browse the repository at this point in the history
  • Loading branch information
jayvaznewm committed May 17, 2024
1 parent 69f2b2c commit 71fa2e6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/cdk/bin/deploy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ class WebDeployStack extends cdk.Stack {
}
);

new ssm.StringParameter(scope, "SsmDeployFunctionArn", {
new ssm.StringParameter(this, "SsmDeployFunctionArn", {
parameterName: `/cdk/${qualifier}/NewmWeb/${appId}FunctionArn`,
stringValue: deployFunction.functionArn,
});
Expand Down

0 comments on commit 71fa2e6

Please sign in to comment.