Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save DiegoTc/bfed2148637bacf891518344289bdba0 to your computer and use it in GitHub Desktop.
Save DiegoTc/bfed2148637bacf891518344289bdba0 to your computer and use it in GitHub Desktop.
Waits for AWS instances launched from Terraform to become healthy
aws ec2 wait instance-status-ok --instance-ids $(cat terraform.tfstate | jq '.modules[].resources[] | select(.type == "aws_instance") | .primary.attributes.id' | sed 's/\"//g' | tr '\n', ' '; echo '')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment