Created
April 28, 2020 13:24
-
-
Save sebsto/b517720cc0bba4dc6502cd0ccb0d49c7 to your computer and use it in GitHub Desktop.
Delete Amlify Console App after `amplify delete`
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
APP_ID=$(aws amplify list-apps --query 'apps[? ! contains(keys(@), `productionBranch`) == `true`].[appId]' --output text ) | |
echo $APP_ID | while read appid | |
do | |
aws amplify delete-app --app-id $appid | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment