Change flat network name for nosdn fdio scenario
[apex-tripleo-heat-templates.git] / puppet / services / neutron-plugin-nsx.yaml
1 heat_template_version: pike
2
3 description: >
4   OpenStack Neutron NSX
5
6 parameters:
7   ServiceData:
8     default: {}
9     description: Dictionary packing service data
10     type: json
11   ServiceNetMap:
12     default: {}
13     description: Mapping of service_name -> network name. Typically set
14                  via parameter_defaults in the resource registry.  This
15                  mapping overrides those in ServiceNetMapDefaults.
16     type: json
17   DefaultPasswords:
18     default: {}
19     type: json
20   RoleName:
21     default: ''
22     description: Role name on which the service is applied
23     type: string
24   RoleParameters:
25     default: {}
26     description: Parameters specific to the role
27     type: json
28   EndpointMap:
29     default: {}
30     description: Mapping of service endpoint -> protocol. Typically set
31                  via parameter_defaults in the resource registry.
32     type: json
33   DefaultOverlayTz:
34     description: UUID of the default NSX overlay transport zone.
35     type: string
36   DefaultTier0Router:
37     description: UUID of the default tier0 router that will be used for connecting to
38                  tier1 logical routers and configuring external networks.
39     type: string
40   NsxApiManagers:
41     description: IP address of one or more NSX managers separated by commas.
42     type: string
43   NsxApiUser:
44     description: User name of NSX Manager.
45     type: string
46   NsxApiPassword:
47     description: Password of NSX Manager.
48     type: string
49   NativeDhcpMetadata:
50     default: True
51     description: This is the flag to indicate if using native DHCP/Metadata or not.
52     type: boolean
53   DhcpProfileUuid:
54     description: This is the UUID of the NSX DHCP Profile that will be used to enable
55                  native DHCP service.
56     type: string
57   MetadataProxyUuid:
58     description: This is the UUID of the NSX Metadata Proxy that will be used to enable
59                  native metadata service.
60     type: string
61
62 outputs:
63   role_data:
64     description: Role data for the Neutron NSX plugin
65     value:
66       service_name: neutron_plugin_nsx
67       config_settings:
68         neutron::plugins::nsx::default_overlay_tz: {get_param: DefaultOverlayTz}
69         neutron::plugins::nsx::default_tier0_router: {get_param: DefaultTier0Router}
70         neutron::plugins::nsx::nsx_api_managers: {get_param: NsxApiManagers}
71         neutron::plugins::nsx::nsx_api_user: {get_param: NsxApiUser}
72         neutron::plugins::nsx::nsx_api_password: {get_param: NsxApiPassword}
73         neutron::plugins::nsx::native_dhcp_metadata: {get_param: NativeDhcpMetadata}
74         neutron::plugins::nsx::dhcp_profile_uuid: {get_param: DhcpProfileUuid}
75         neutron::plugins::nsx::metadata_proxy_uuid: {get_param: MetadataProxyUuid}
76
77       step_config: |
78         include tripleo::profile::base::neutron::plugins::nsx