Skip to content

Instantly share code, notes, and snippets.

@carlesloriente
Last active February 8, 2024 01:05
Show Gist options
  • Save carlesloriente/69d9aa0ee17675def577727fd5829459 to your computer and use it in GitHub Desktop.
Save carlesloriente/69d9aa0ee17675def577727fd5829459 to your computer and use it in GitHub Desktop.
AWS Switch role between accounts (Administrator access)
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Principal": {
"AWS": "arn:aws:iam::ACCESSED_ACCOUNT_ID:root"
},
"Action": "sts:AssumeRole",
"Condition": {}
}
]
}
@carlesloriente
Copy link
Author

carlesloriente commented Sep 16, 2019

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment