Skip to content

Commit

Permalink
Remove % unsuported character from mongo password
Browse files Browse the repository at this point in the history
  • Loading branch information
ikovac committed Aug 22, 2024
1 parent 8d55dfb commit 7b28f13
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/password.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ export class Password extends pulumi.ComponentResource {
`${this.name}-random-password`,
{
length: 16,
overrideSpecial: '_%$',
overrideSpecial: '_$',
special: true,
},
{ parent: this },
Expand Down

0 comments on commit 7b28f13

Please sign in to comment.