Hi, is there a way to add multiple assumeRolePolic...
# aws
m
Hi, is there a way to add multiple assumeRolePolicy in aws.iam?
Copy code
const saRole = new aws.iam.Role(saName, {
  assumeRolePolicy: saAssumeRolePolicy.json,
});
l
No, AWS supports only one trust policy per role. You need to build your policy to handle all circumstances.
👍 1