Cannot set a property of cognito userpool client via cloudformation

前端 未结 5 1051
無奈伤痛
無奈伤痛 2021-02-06 12:31

I am trying to run congnito via cloudformation and everything works but there is section in cognito as follows:

As you see there is section \"Enable identity pr

5条回答
  •  隐瞒了意图╮
    2021-02-06 13:14

    As ASR says, this doesn't seem to be supported in Cloudformation yet.

    We ended up trying out Terraform - which does support it e.g.

    resource "aws_cognito_user_pool_client" "my_client" {
      ...
      supported_identity_providers = ["COGNITO"]
    }
    

    We've now switched everything to using terraform as it's orders of magnitude easier to understand, read, and write than Cloudformation.

    I know that's probably not the answer you want but I hope it helps.

提交回复
热议问题