Created
May 2, 2014 21:27
-
-
Save ryan-lane/cabe233738028d3082dc to your computer and use it in GitHub Desktop.
Launch config and autoscaling group state example need for a register action
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Ensure my launch config exists: | |
boto_launch_config.present: | |
- name: my-launch-config-name | |
- ami: ami-887i9080 | |
- instance_type: c3.2xlarge | |
- register: my_launch_config | |
Ensure my autoscale group exists: | |
boto_autoscale_group.present: | |
- name: my-autoscale-group-name | |
- launch_config: {{ my_launch_config.generated_name }} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment