Skip to content

Commit 1b7f45e

Browse files
Update with useful value
You can't use the "@" symbol in a master password. https://docs.aws.amazon.com/AmazonRDS/latest/APIReference/API_CreateDBInstance.html Search "MasterUserPassword" you'll find: > The password for the master user. The password can include any printable ASCII character except "/", """, or "@".
1 parent 7ceb8cb commit 1b7f45e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

website/docs/r/password.html.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ This resource *does* use a cryptographic random number generator.
2525
resource "random_password" "password" {
2626
length = 16
2727
special = true
28-
override_special = "_%@"
28+
override_special = "!#$%&*()-_=+[]{}<>:?"
2929
}
3030
3131
resource "aws_db_instance" "example" {

0 commit comments

Comments
 (0)