Reputation: 1416
My understanding of Amplify is that on amplify push
, it somehow processes the separate cloudformation templates for each service (including the parameters.json) and deploys the app. Where does this "master" cloudformation template get stored. For example in the API resource, there is an api-params.json file specifying the endpoint restrictions based on auth roles, but I do not see those in the api cloudformation template. How would I see the final template with the auth restrictions applied to the API Gateway resources?
Upvotes: 0
Views: 1459
Reputation: 842
amplify pull
in the amplify/backend/#current-cloud-backends3://amplify-appName-envName-someId-deployment/amplify-cfn-templates
Upvotes: 1