Skip to content

Instantly share code, notes, and snippets.

@eftalyurtseven
Created June 25, 2022 18:42
Show Gist options
  • Save eftalyurtseven/6aa2baf506f7bde22680c1558f0c8bb8 to your computer and use it in GitHub Desktop.
Save eftalyurtseven/6aa2baf506f7bde22680c1558f0c8bb8 to your computer and use it in GitHub Desktop.
IAM Role Trusted Entities
{
"Version": "2012-10-17",
"Statement": [
{
"Sid": "",
"Effect": "Allow",
"Principal": {
"Federated": "<OIDC_PROVIDER_ARN>"
},
"Action": "sts:AssumeRoleWithWebIdentity",
"Condition": {
"StringEquals": {
"<OIDC_PROVIDER_URL>:sub": "system:serviceaccount:<KEDA_NAMESPACE>:keda-operator"
}
}
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment