You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This ticket, lists all the requirements for the feature to grant AWS access via discord slash commands.
Requirments checklist
Super User Access: Only super users should have the ability to use the Discord command to grant AWS access to users.
Remove Access Control: Only super users should have the ability to use the Discord command to remove AWS access from users.
Granting Access: Access can be granted to a single user by specifying the user group they need to be added to. The user groups are pre-created in the AWS account.
Revoking Access: Access should be automatically revoked when a user leaves the Discord server.
User-Group Specification: The command should allow specifying any of the pre-created user groups in the AWS account.
Flow
Super user runs the command grant-aws-access @vikhyat - This can be the first command which grants user the AWS access. This commands check if there exists a user with discordId if not create a new user.
The second command can be to add user to the user group which has the required permissions. add-user-to-group @vikhyat <user-group name> - This command checks if the user with discordId exists if yes add the user to the user-group which has permissions, if the user group doesn't not exists, then throw error.
When we hit the discord command, discord-slash-command service, will call website-backend to fetch the user details (discordId)
Using this discordId we can check if the user already exists.
We can have another Super user only command to remove the accessremove-aws-access @vikhyatthis will delete the user from our AWS account.
Post creation of user in AWS, user will receive an email for setting up their password. (Need to do a quick POC for this)
Should we create the AWS user using the discordId or the email Id, considering the user-name can be modified.
Can we use the email stored in user data, or we should have it as input in the discord command?
Should we focus on granting access to multiple users or this can be taken up in next phases?
Conclusion
This PRD outlines the process required to implement discord command, which can help in creating the AWS user and granting them permissions.
Please review and let me know if any changes are needed.
The text was updated successfully, but these errors were encountered:
Overview
This ticket, lists all the requirements for the feature to grant AWS access via discord slash commands.
Requirments checklist
Flow
grant-aws-access @vikhyat
- This can be the first command which grants user the AWS access. This commands check if there exists a user withdiscordId
if not create a new user.add-user-to-group @vikhyat <user-group name>
- This command checks if the user withdiscordId
exists if yes add the user to the user-group which has permissions, if the user group doesn't not exists, then throw error.discord-slash-command
service, will callwebsite-backend
to fetch the user details (discordId)remove-aws-access @vikhyat
this will delete the user from our AWS account.Tasks list
Open questions
user-name
can be modified.have it as input in the discord command
?Conclusion
This PRD outlines the process required to implement discord command, which can help in creating the AWS user and granting them permissions.
Please review and let me know if any changes are needed.
The text was updated successfully, but these errors were encountered: