This message was deleted.
# typescript
s
This message was deleted.
m
I went to check on this and I project we have a similar declaration, but sadly found a comment confirming I had the same issue:
Copy code
new aws.cognito.IdentityPoolRoleAttachment(
  `${appName}-quicksight-role-attachment`,
  {
    identityPoolId: identityPool.id,
    roles: {
      authenticated: poolAuthenticatedRole.arn, // this isn't attaching with IAC; had to attach through the console.
    },
  },
  {
    dependsOn: poolAuthenticatedRole,
  },
);
Not sure if the comment is still valid... What language and are you using the latest version?
b
Hey, Just managed to resolve this. Had to make sure that we included the
roleMappings
and it was okay after that 🙂
👍 1