How to correctly grant roles with redshift serverless?

0

Using AWS documentation for granting roles on Redshift Serverless (https://docs.aws.amazon.com/redshift/latest/mgmt/serverless-monitoring.html) - it says I should run this command to grant a role:

grant "sys:operator" to "IAM:<correct IAM user name here>";

This command always results in this error.

ERROR: syntax error at or near ""sys:monitor"" Position: 7 [ErrorId: 1-6372a5f7-38f7a17f6443bdfc4f6b348f]

What am I missing? Is the documentation incorrect?

tjtoll
asked a year ago1717 views
1 Answer
0
Accepted Answer

Yes, the documentation needs to be updated.

Please use this command:

grant role "sys:operator" to "IAM:<correct IAM user name here>";

I'll request that the page is updated.

AWS
Don_D
answered a year ago
profile pictureAWS
EXPERT
reviewed a year ago
  • Appreciate it!

You are not logged in. Log in to post an answer.

A good answer clearly answers the question and provides constructive feedback and encourages professional growth in the question asker.

Guidelines for Answering Questions