Skip to content

Commit

Permalink
Dmitrii comments incorporated
Browse files Browse the repository at this point in the history
  • Loading branch information
Nidhi251289 committed May 21, 2024
1 parent d136df3 commit e1b7b35
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1567,8 +1567,8 @@ kubectl -n {namespace} create secret generic mendix-custom-tls --from-file=custo
{{% alert color="info" %}}
If IAM authentication is not working as expected, check the RDS database's logs.

1. A password authentication failed for user error means that the user doesn't have IAM authentication enabled.
2. A PAM authentication failed for user error means that IAM authentication is enabled, but the IAM policy doesn't allos the user to connect.
1. A `password authentication` failed for user error means that the user doesn't have IAM authentication enabled.
2. A `PAM authentication failed for user` error means that IAM authentication is enabled, but the IAM policy doesn't allos the user to connect.
{{% /alert %}}

#### 4.1.2 S3 Bucket
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -493,14 +493,13 @@ After completing the prerequisites, follow these steps to switch from password-b
export PGDATABASE=postgres
export PGUSER=<database-username>
export PGHOST=<database-host>
export PGPASSWORD=""
export PGPASSWORD=<database-password>
psql
GRANT rds_iam TO <database-username>;
ALTER ROLE <database-username> WITH PASSWORD NULL;
```
{{% alert color="info" %}}This step is not necessary if `database-username` is the default (primary) user.{{% /alert %}}
3. Attach the following inline IAM policy to the environment's IAM role (created when [Configuring a Secret Store with AWS Secrets Manager](#configure-using-aws-secrets-manager)):
```json
Expand Down

0 comments on commit e1b7b35

Please sign in to comment.