1 Answer
- Newest
- Most votes
- Most comments
0
If you don't want to manage API Key rotation, use Cognito Unauth Roles and IAM auth on AppSync. Easily configured using the Amplify CLI and the GraphQL Transform: https://aws-amplify.github.io/docs/cli-toolchain/graphql#public-authorization
# public authorization with provider override
type Post @model @auth(rules: [{allow: public, provider: iam}]) {
id: ID!
title: String!
}
answered 5 years ago
Relevant content
- asked 3 years ago
- AWS OFFICIALUpdated 2 years ago
- AWS OFFICIALUpdated 2 years ago
- AWS OFFICIALUpdated 5 months ago
- AWS OFFICIALUpdated 2 years ago