Skip to content

Instantly share code, notes, and snippets.

@vFondevilla
Created December 20, 2019 08:55
Show Gist options
  • Save vFondevilla/2ef727b84802e7740c7c8fd670d5716f to your computer and use it in GitHub Desktop.
Save vFondevilla/2ef727b84802e7740c7c8fd670d5716f to your computer and use it in GitHub Desktop.
Disable release pipelines
for i in $(aws events list-rules --output json | jq -r '.Rules[] | .Name' | grep release); do aws events disable-rule --name $i; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment