Skip to content

Commit

Permalink
fix: add parameter hash as default value
Browse files Browse the repository at this point in the history
  • Loading branch information
TheOrangePuff committed May 8, 2024
1 parent 17f0dce commit 04f1b86
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions packages/serverless-deploy-iam/bin/app.ts
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,6 @@ export class ServiceDeployIAM extends cdk.Stack {
actions: [
"scheduler:GetScheduleGroup",
"scheduler:CreateScheduleGroup",
"scheduler:UpdateScheduleGroup",
"scheduler:DeleteScheduleGroup",
"scheduler:TagResource",
"scheduler:ListTagsForResource",
Expand Down Expand Up @@ -541,7 +540,7 @@ export class ServiceDeployIAM extends cdk.Stack {
new CfnParameter(this, parameterName, {
type: "String",
description: `Custom qualifier values provided for ${policy.name}`,
default: "",
default: PARAMETER_HASH,
})
);
}
Expand Down

0 comments on commit 04f1b86

Please sign in to comment.