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