英文:
IAM permissions for root user in AWS aurora RDS
问题
I have an aurora instance with IAM authentication enabled.
I have create an IAM role with full access to rds:*
when using that IAM role and trying to connect with the root user following these instructions
I get an error, Access denied for user 'root'@'ip' (using password: YES)
- Why is there
using password:YES
when I'm using IAM auth? - Should I be adding rds-db permission explicitly to the root user?
英文:
I have an aurora instance with IAM authentication enabled
I have create an IAM role with full access to rds:*
when using that IAM role and trying to connect with the root user following these instructions
I get an error , Access denied for user 'root'@'ip' (using password: YES)
- Why is there
using password:YES
when I'm using IAM auth - Should I be adding rds-db permission explicitly to the root user ?
答案1
得分: 0
以下是翻译的内容:
- 根据这些说明,使用根用户密码认证创建了一个用户。
- 为创建的用户提供了以下IAM凭证:
rds-db:connect
。
英文:
Following on this , what I ended up doing :
- Created a user using root user password authentication following these instructions
- For the user I created I gave the following IAM creds :
rds-db:connect
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论