【发布时间】:2017-08-05 02:40:07
【问题描述】:
我正在尝试编写一个 CloudFormation 模板来创建一个新的 Cognito 身份池,使用 Google 身份验证并使用预先存在的角色。
此代码使用 google 身份验证创建一个新的身份池 -
Resources:
cognitoid:
Type: "AWS::Cognito::IdentityPool"
Properties:
"AllowUnauthenticatedIdentities": false
"SupportedLoginProviders": { "accounts.google.com": "<Google client id>" }
对于该角色,AWS::Cognito::IdentityPool 在附加角色的属性中没有任何内容。
【问题讨论】:
标签: amazon-web-services amazon-cloudformation