DEV Community

Discussion on: Implementing SQS Fifo Queue with lambda in AWS Amplify using Cloudformation.

Collapse
 
ilumin profile image
Teerasak Vichadee

Cannot create SQS, amplify doesn't show queue when run amplify status

Collapse
 
wahmd profile image
Waleed Ahmad • Edited

This usually happens when you edit 'backend-config.json' and dont checkout env.
Make sure to:

  • include queue in backend-config.json (just as in tutorial with the right folder structure)
  • run "amplify env checkout ENVNAME"

then 'amplify status' will show the queue.
Let me know if it helps.