Skip to content

Instantly share code, notes, and snippets.

View bigjimmynz's full-sized avatar
🤔
Learning Stuff

Jimmy Morgan bigjimmynz

🤔
Learning Stuff
View GitHub Profile
@bigjimmynz
bigjimmynz / asg.yml
Created March 29, 2017 19:35
Autoscaling Group
---
- name: Find existing AMI if it exists
local_action:
module: command aws ec2 describe-images --owners self --filters Name=tag-value,Values={{deploy_env}}-{{service}} --query Images[0].ImageId --output text --region {{region}}
register: deletable_ami
ignore_errors: True
tags:
- build
- configure