Skip to content
This repository has been archived by the owner on Oct 21, 2024. It is now read-only.

Commit

Permalink
Postgres: do not retain secret on remove
Browse files Browse the repository at this point in the history
  • Loading branch information
fwang committed Oct 11, 2024
1 parent 068bb5b commit 7759a4c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion platform/src/components/aws/postgres.ts
Original file line number Diff line number Diff line change
Expand Up @@ -338,7 +338,9 @@ export class Postgres extends Component implements Link.Linkable {

const secret = new secretsmanager.Secret(
`${name}ProxySecret`,
{},
{
recoveryWindowInDays: 0,
},
{ parent },
);
new secretsmanager.SecretVersion(
Expand Down

0 comments on commit 7759a4c

Please sign in to comment.