-
Notifications
You must be signed in to change notification settings - Fork 3
Cognito Service CFN Tempalte
Dennis Christilaw edited this page Nov 15, 2019
·
2 revisions
If you plan to use this for your ElasticSearxch Stack, the access policy you will need to use to connect this to the Cognito Service you just built is:
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Principal": {
"AWS": "arn:aws:iam::<Account>:role/Cognito_Auth_Role"
},
"Action": "es:ESHttp*",
"Resource": "arn:aws:es:us-west-2:<Account>:domain/elasticsearchstack-name/*"
}
]
}
- Replace Cognito_Auth_Role with the valid value for what you created.
- Replace elasticsearchstack-name with your ES Domain Name
The information provided in this Repo are licensed under the Apache 2.0 license. Please be respectful. Thanks!