Advertisement
Guest User

Untitled

a guest
Mar 30th, 2016
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 0.40 KB | None | 0 0
  1. Ensure base security group exists:
  2.   boto_secgroup.present:
  3.     - name: base
  4.     - description: base security group
  5.     - vpc_id: vpc-xxxxxx
  6.     - profile: aws_profile
  7.     - rules:
  8.       - ip_protocol: tcp
  9.         from_port: 22
  10.         to_port: 22
  11.         source_group_group_id: sg-xxxx
  12.       - ip_protocol: tcp
  13.         from_port: 4505
  14.         to_port: 4506
  15.         source_group_group_id: sg-xxxx
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement