# -*- mode: snippet -*-
# name: aws-redshift-clustersecuritygroupingress
# key: redshift-clustersecuritygroupingress
# group: cloudformation
# expand-env: ((yas/indent-line 'auto) (yas/wrap-around-region 't))
# --
"${1:redshiftClusterSecurityGroupIngress}": {
  "Type": "AWS::Redshift::ClusterSecurityGroupIngress",
  "Properties": {
    "ClusterSecurityGroupName": "$2",
    "CIDRIP": "$3",
    "EC2SecurityGroupName": "$4",
    "EC2SecurityGroupOwnerId": "$5"
  }
}$0
