Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(stepfunctions-tasks): runtime role in EmrAddStep #27736

Merged
merged 16 commits into from
Dec 12, 2023
Prev Previous commit
Next Next commit
update comment
msambol committed Dec 11, 2023
commit 4ad9fea0b5fea8bfdfabec4f7af8f968cedc6f76
Original file line number Diff line number Diff line change
@@ -53,7 +53,7 @@ test('Add Step with static ClusterId and Step configuration', () => {
test('Add Step with execution role ARN', () => {
const executionRole = new iam.Role(stack, 'Role', {
roleName: 'EmrStepExecutionRole',
// The actual trust policy required is more complicated, but abbreviated here for brevity.
// The actual trust policy required is more complicated.
// See https://aws.amazon.com/blogs/big-data/introducing-runtime-roles-for-amazon-emr-steps-use-iam-roles-and-aws-lake-formation-for-access-control-with-amazon-emr/
assumedBy: new iam.ServicePrincipal('elasticmapreduce.amazonaws.com'),
});