Merge pull request #38714 from twellspring/patch-1

Documentation updates for boto_secgroup
This commit is contained in:
Mike Place 2017-01-15 07:42:40 -07:00 committed by GitHub
commit 6d0374f3a5

View File

@ -40,13 +40,20 @@ passed in as a dict, or as a string to pull from pillars or minion config:
boto_secgroup.present:
- name: mysecgroup
- description: My security group
- vpc_name: myvpc
- rules:
- ip_protocol: tcp
from_port: 80
to_port: 80
cidr_ip:
- 10.0.0.0/0
- 192.168.0.0/0
- 10.0.0.0/8
- 192.168.0.0/16
- ip_protocol: tcp
from_port: 8080
to_port: 8090
cidr_ip:
- 10.0.0.0/8
- 192.168.0.0/16
- ip_protocol: icmp
from_port: -1
to_port: -1
@ -56,8 +63,8 @@ passed in as a dict, or as a string to pull from pillars or minion config:
from_port: -1
to_port: -1
cidr_ip:
- 10.0.0.0/0
- 192.168.0.0/0
- 10.0.0.0/8
- 192.168.0.0/16
- tags:
SomeTag: 'My Tag Value'
SomeOtherTag: 'Other Tag Value'