aboutsummaryrefslogtreecommitdiffstats
path: root/openecomp-be/lib/openecomp-sdc-translator-lib/openecomp-sdc-translator-core/src/test/resources/mock/ep-jsa-si/ep-jsa_net.yaml
blob: 1f7aec90fae8b0a0521f5c2089543ac2fddba7df (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
heat_template_version: 2013-05-23

description: >
  Version 2.0 02-09-2016 (Authors: John Doe, user PROD)

parameters:
  jsa_net_name:
    type: string
    description: network name of jsa log network
  jsa_cidr:
    type: string
    description: CIDR of jsa log network

resources:
  jsa_net:
    type: OS::Neutron::Net
    properties:
      name: {get_param: jsa_net_name}
      shared: True

  jsa_subnet:
    type: OS::Neutron::Subnet
    properties:
      network_id: {get_resource: jsa_net}
      cidr: {get_param: jsa_cidr}