Skip to content

Instantly share code, notes, and snippets.

@moroz
Created February 9, 2023 15:51
Show Gist options
  • Save moroz/a603ca9ce8d2d630716209d40304e597 to your computer and use it in GitHub Desktop.
Save moroz/a603ca9ce8d2d630716209d40304e597 to your computer and use it in GitHub Desktop.
Clean up AWS ECS task definition template using jq
#!/bin/bash
if [ "$1" = "" ]; then
echo "No input file!"
exit 1
fi
cat $1 | \
jq -S 'del(.compatibilities, .registeredAt, .registeredBy, .requiresAttributes, .revision, .status, .taskDefinitionArn)' | \
sponge $1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment