Created
May 27, 2017 02:57
-
-
Save ryan-lane/c2797ba8d965c823a5bcd2d338b3462d to your computer and use it in GitHub Desktop.
Orchestration reference example
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 elb-external security group exists: | |
boto_secgroup.present: | |
- name: elb-external | |
- description: elb-external | |
- rules: | |
- ip_protocol: tcp | |
from_port: 80 | |
to_port: 80 | |
cidr_ip: | |
- 0.0.0.0/0 | |
- ip_protocol: tcp | |
from_port: 443 | |
to_port: 443 | |
cidr_ip: | |
- 0.0.0.0/0 | |
- vpc_name: primary-production-iad | |
- profile: primary_profile | |
Ensure {{ grains.service_name }} security group exists: | |
boto_secgroup.present: | |
- name: {{ grains.service_name }} | |
- description: {{ grains.service_name }} | |
- rules: | |
- ip_protocol: tcp | |
from_port: 80 | |
to_port: 80 | |
source_group_name: elb-external | |
- ip_protocol: tcp | |
from_port: 2049 | |
to_port: 2049 | |
source_group_name: {{ grains.service_name }} | |
- vpc_name: primary-production-iad | |
- profile: primary_profile |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment