Skip to content

Commit

Permalink
https://github.com/aws/aws-cdk/issues/6819
Browse files Browse the repository at this point in the history
FAILED, SSM Secure reference is not supported in: [AWS::Cognito::UserPoolIdentityProvider/Properties/ProviderDetails/client_secret]
node:internal/errors:984
  • Loading branch information
jj-odmd committed Dec 22, 2024
1 parent 430a08b commit b2c0f12
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/user-pool-stack.ts
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ export class UserPoolStack extends cdk.Stack {
oauthUserpoolClient.node.addDependency(new UserPoolIdentityProviderGoogle(this, 'GoogleProvider', {
userPool,
clientId: '425156547044-a8gnro92fhtf6shstfrune7oc8i6i0hf.apps.googleusercontent.com',
clientSecretValue: SecretValue.ssmSecure('google_oauth_client_secret'),
clientSecretValue: SecretValue.secretsManager('google_oauth_client_secret'),
scopes: ['email', 'profile', 'openid'],

attributeMapping: {
Expand Down

0 comments on commit b2c0f12

Please sign in to comment.