Skip to content

Commit

Permalink
chore: self mutation
Browse files Browse the repository at this point in the history
Signed-off-by: github-actions <github-actions@github.com>
  • Loading branch information
github-actions committed Nov 21, 2024
1 parent 24b5ff9 commit d2e0adf
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/SopsSync.ts
Original file line number Diff line number Diff line change
Expand Up @@ -344,7 +344,11 @@ export class SopsSync extends Construct {
resources: [
`arn:aws:ssm:${Stack.of(this).region}:${
Stack.of(this).account
}:parameter${props.parameterName.startsWith('/') ? props.parameterName : `/${props.parameterName}`}`,
}:parameter${
props.parameterName.startsWith('/')
? props.parameterName
: `/${props.parameterName}`
}`,
],
}),
);
Expand Down

0 comments on commit d2e0adf

Please sign in to comment.