Fix database sample payload doc (#19170)
* * fix database static-user rotation statement in sample payload * + added changelog
This commit is contained in:
parent
dda2df25db
commit
2c32190eed
|
@ -0,0 +1,3 @@
|
|||
```release-note:improvement
|
||||
website/docs: fix database static-user sample payload
|
||||
```
|
|
@ -519,7 +519,7 @@ this in order to know the password.
|
|||
"db_name": "mysql",
|
||||
"username": "static-database-user",
|
||||
"rotation_statements": [
|
||||
"ALTER USER \"{{name}}\" WITH PASSWORD '{{password}}';"
|
||||
"ALTER USER \"{{name}}\" IDENTIFIED BY '{{password}}';"
|
||||
],
|
||||
"rotation_period": "1h"
|
||||
}
|
||||
|
@ -565,7 +565,7 @@ $ curl \
|
|||
"db_name": "mysql",
|
||||
"username": "static-user",
|
||||
"rotation_statements": [
|
||||
"ALTER USER \"{{name}}\" WITH PASSWORD '{{password}}';"
|
||||
"ALTER USER \"{{name}}\" IDENTIFIED BY '{{password}}';"
|
||||
],
|
||||
"rotation_period": "1h"
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue