Skip to content

Instantly share code, notes, and snippets.

@tomyan
tomyan / gist:2588931d44a1e850badd
Last active November 10, 2015 11:48
delete wedged ecs service (where elb and role are delete with stack)
#!/bin/bash
set -o pipefail
CLUSTER=$1
SERVICE=$2
echo getting service info
DETAILS=$(aws ecs describe-services --cluster $CLUSTER --services $SERVICE)