anyone know how to get the identity pool ID assoc...
# help
s
anyone know how to get the identity pool ID associated w/ a Cognito user pool? it’s needed for Amplify Auth
m
Copy code
import { Auth } from "@serverless-stack/resources";

const auth = new Auth(this, "Auth", {
  cognito: true,
});

const COGNITO_IDENTITY_POOL_ID = auth.cognitoCfnIdentityPool.ref;
s
@Michael Wolfenden thanks, that did the trick!
f
Added
auth.cognitoIdentityPoolId
property in v0.40.5!