# -*- mode: snippet -*-
# name: aws-security-group
# key: security-group
# group: cloudformation
# expand-env: ((yas/indent-line 'auto) (yas/wrap-around-region 't))
# --
"${1:secGroupName}" : {
  "Type" : "AWS::EC2::SecurityGroup",
  "Properties": {
    "GroupName": "${2:-}",
    "GroupDescription": "${3:-}",
    "SecurityGroupIngress": [
      ${4:--insert rules--}
    ],
    "VpcId": ${5:ref-to-vpc},
    "Tags": [ ${6:insert tag} ]
  }
}$0
