From: Lorin Hochstein Date: Sun, 8 Feb 2015 22:16:39 +0000 (-0500) Subject: Rename, remove unneeded type arg X-Git-Url: https://git.halfball.org/?a=commitdiff_plain;h=9c1d519d8079b5157839f03f9d32c5a11ec766f4;p=ansiblebook.git Rename, remove unneeded type arg --- diff --git a/ch12/playbooks/ec2-example.yml b/ch12/playbooks/ec2-example.yml index 8b72552..fbc6345 100644 --- a/ch12/playbooks/ec2-example.yml +++ b/ch12/playbooks/ec2-example.yml @@ -33,14 +33,13 @@ 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 }}