diff options
author | Marcus G K Williams <marcus.williams@intel.com> | 2017-11-04 14:12:22 -0700 |
---|---|---|
committer | Marcus G K Williams <marcus.williams@intel.com> | 2017-11-04 14:12:49 -0700 |
commit | b6c2f52b1244bddac8ab2d831643d6f44712254e (patch) | |
tree | 7d761896920e1fd655f3fe3ac253053b75e6e1b1 /platform-logic/restapi-templates/src/main/json/vcpe-vxlan-tunnel.json | |
parent | d85e102590ebf50038d22c8f02d3c4ca93205754 (diff) |
Fix vcp template errors, remove extra quotes
Issue-Id: SDNC-164
Change-Id: Idc8668ee1f3454b9cd95dcc9e3e5551443acc5ff
Signed-off-by: Marcus G K Williams <marcus.williams@intel.com>
Former-commit-id: e5bb925a233ef1a063d6513fc7a19f9754fb439c
Diffstat (limited to 'platform-logic/restapi-templates/src/main/json/vcpe-vxlan-tunnel.json')
-rw-r--r-- | platform-logic/restapi-templates/src/main/json/vcpe-vxlan-tunnel.json | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/platform-logic/restapi-templates/src/main/json/vcpe-vxlan-tunnel.json b/platform-logic/restapi-templates/src/main/json/vcpe-vxlan-tunnel.json index 3a90103c..fde75fe7 100644 --- a/platform-logic/restapi-templates/src/main/json/vcpe-vxlan-tunnel.json +++ b/platform-logic/restapi-templates/src/main/json/vcpe-vxlan-tunnel.json @@ -3,13 +3,13 @@ { "enabled": "true", "link-up-down-trap-enable": "enabled", - "name": "${tmp.tunnel-name}", + "name": ${tmp.tunnel-name}, "type": "v3po:vxlan-tunnel", "vxlan": { - "dst": "${tmp.tunnel-dest-ip}", + "dst": ${tmp.tunnel-dest-ip}, "encap-vrf-id": "0", - "src": "${tmp.tunnel-src-ip}", - "vni": "${tmp.tunnel-vni}" + "src": ${tmp.tunnel-src-ip}, + "vni": ${tmp.tunnel-vni} } } ] |