# -*- mode: snippet -*-
# name: aws-route
# key: route
# group: cloudformation
# expand-env: ((yas/indent-line 'auto) (yas/wrap-around-region 't))
# --
"${1:routeName}": {
  "Type": "AWS::EC2::Route",
  "Properties": {
    "RouteTableId": ${2:"--"},
    "DestinationCidrBlock": "${3:"--"}",
    "GatewayId": ${4:"--"}
  }
}$0