Skip to content

Commit b21a66d

Browse files
authored
fix: dotnet connstring unsafe chars (#224)
1 parent fd45d18 commit b21a66d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

shared/infra/aws/lib/persistence.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ export class Persistence extends Construct {
4343

4444
var secret = new DatabaseSecret(this, "SharedDBSecret", {
4545
username: "postgres",
46-
excludeCharacters: '"@/\\',
46+
excludeCharacters: '"@/\\;=\'',
4747
});
4848

4949
// Use DESTROY for dev environments, RETAIN for production

0 commit comments

Comments
 (0)