Skip to content

Commit

Permalink
fix(stacks.api/addons): correct postgres csi secrets filter
Browse files Browse the repository at this point in the history
Signed-off-by: Braden Mars <[email protected]>
  • Loading branch information
BradenM committed Aug 5, 2023
1 parent 9bef443 commit eef89c4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/stacks/api/src/addons/crisiscleanup.ts
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ export class CrisisCleanupAddOn implements blueprints.ClusterAddOn {
{ nestedDelimiter: '_' },
)
const secretPaths: blueprints.JmesPathObject[] = Object.entries(secretKeys)
.filter(([key, _]) => !key.startsWith('POSTGRES'))
.filter(([key, _]) => !key.startsWith('postgres'))
.map(([key, value]) => ({
path: ['api', 'secrets', key].join('.'),
objectAlias: value,
Expand Down

0 comments on commit eef89c4

Please sign in to comment.