Rename, remove unneeded type arg
authorLorin Hochstein <lorin.hochstein@sendgrid.com>
Sun, 8 Feb 2015 22:16:39 +0000 (17:16 -0500)
committerLorin Hochstein <lorin.hochstein@sendgrid.com>
Sun, 8 Feb 2015 22:16:39 +0000 (17:16 -0500)
ch12/playbooks/ec2-example.yml

index 8b72552..fbc6345 100644 (file)
           from_port: 22
           to_port: 22
           cidr_ip: 0.0.0.0/0
-  - name: outbound group
+  - name: outbound security group
     ec2_group:
       name: outbound
       description: allow outbound connections to the internet
       region: "{{ region }}"
       rules_egress:
         - proto: all
-          type: all
           cidr_ip: 0.0.0.0/0
   - name: Get the ubuntu trusty AMI
     ec2_ami_search: distro=ubuntu release=trusty virt=hvm region={{ region }}