Skip to content

Commit

Permalink
Remove < and > signs to avoid HTML rendering issues
Browse files Browse the repository at this point in the history
  • Loading branch information
wcmjunior committed Feb 13, 2024
1 parent 7c96b02 commit 7f589d8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions docs/guides/iam_auth_rds_pg.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ created in this example and grant the `rds_iam` permission as shown
in the following command:

```
CREATE USER "arn:aws:iam::<YOUR_AWS_ACCOUNT_NUM>:role/my-sidecar_rds_access_role";
GRANT rds_iam TO "arn:aws:iam::<YOUR_AWS_ACCOUNT_NUM>:role/my-sidecar_rds_access_role";
CREATE USER "arn:aws:iam::YOUR_AWS_ACCOUNT_NUM:role/my-sidecar_rds_access_role";
GRANT rds_iam TO "arn:aws:iam::YOUR_AWS_ACCOUNT_NUM:role/my-sidecar_rds_access_role";
```

Use this guide to create the minimum required configuration in both Cyral
Expand Down
4 changes: 2 additions & 2 deletions templates/guides/iam_auth_rds_pg.md.tmpl
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ created in this example and grant the `rds_iam` permission as shown
in the following command:

```
CREATE USER "arn:aws:iam::<YOUR_AWS_ACCOUNT_NUM>:role/my-sidecar_rds_access_role";
GRANT rds_iam TO "arn:aws:iam::<YOUR_AWS_ACCOUNT_NUM>:role/my-sidecar_rds_access_role";
CREATE USER "arn:aws:iam::YOUR_AWS_ACCOUNT_NUM:role/my-sidecar_rds_access_role";
GRANT rds_iam TO "arn:aws:iam::YOUR_AWS_ACCOUNT_NUM:role/my-sidecar_rds_access_role";
```

Use this guide to create the minimum required configuration in both Cyral
Expand Down

0 comments on commit 7f589d8

Please sign in to comment.