Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sebsto/aws-create-console-access-temp-url
https://github.com/sebsto/aws-create-console-access-temp-url
Last synced: 6 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/sebsto/aws-create-console-access-temp-url
- Owner: sebsto
- Created: 2014-08-13T11:09:58.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2014-08-13T11:31:18.000Z (over 10 years ago)
- Last Synced: 2023-05-19T00:10:15.674Z (over 1 year ago)
- Language: Python
- Size: 111 KB
- Stars: 0
- Watchers: 2
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README
Awesome Lists containing this project
README
aws-create-console-access-temp-url
==================================Allows federated users to get access to AWS management console.
Taken as is from :
http://docs.aws.amazon.com/STS/latest/UsingSTS/STSMgmtConsole-manualURL.html#STSConsoleLink_programPythonThe role should have appropriate permissions and the following relationship trust policy:
*The mfa condition is optional{
"Version": "2012-10-17",
"Statement": [
{
"Sid": "",
"Effect": "Allow",
"Principal": {
"AWS": "arn:aws:iam:::root"
},
"Action": "sts:AssumeRole",
"Condition": {
"Null": {
"aws:MultiFactorAuthAge": false
}
}
}
]
}