Created
April 3, 2016 18:41
-
-
Save wkharold/10ce67de0fe5c14bede55b1cf65a368e to your computer and use it in GitHub Desktop.
deployment manger vpn gateway creation template
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
resources: | |
- name: {{ env["name"] }} | |
type: compute.v1.targetVpnGateway | |
properties: | |
network: {{ properties["network"] }} | |
region: {{ properties["region"] }} | |
- name: {{ env["name"] }}-rule-esp | |
type: compute.v1.forwardingRule | |
properties: | |
IPAddress: {{ properties["address"] }} | |
IPProtocol: ESP | |
region: {{ properties["region"] }} | |
target: $(ref.{{ env["name"] }}.selfLink) | |
- name: {{ env["name"] }}-rule-udp500 | |
type: compute.v1.forwardingRule | |
properties: | |
IPAddress: {{ properties["address"] }} | |
IPProtocol: UDP | |
portRange: 500 | |
region: {{ properties["region"] }} | |
target: $(ref.{{ env["name"] }}.selfLink) | |
- name: {{ env["name"] }}-rule-udp4500 | |
type: compute.v1.forwardingRule | |
properties: | |
IPAddress: {{ properties["address"] }} | |
IPProtocol: UDP | |
portRange: 4500 | |
region: {{ properties["region"] }} | |
target: $(ref.{{ env["name"] }}.selfLink) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment