Change flat network name for nosdn fdio scenario
[apex-tripleo-heat-templates.git] / bootstrap-config.yaml
1 heat_template_version: pike
2 description: 'Bootstrap Config'
3
4 parameters:
5   bootstrap_nodeid:
6     type: string
7   bootstrap_nodeid_ip:
8     type: string
9
10 resources:
11
12   BootstrapNodeConfigImpl:
13     type: OS::Heat::StructuredConfig
14     properties:
15       group: os-apply-config
16       config:
17         bootstrap_host:
18           bootstrap_nodeid: {get_param: bootstrap_nodeid}
19           bootstrap_nodeid_ip: {get_param: bootstrap_nodeid_ip}
20
21 outputs:
22   config_id:
23     description: The ID of the BootstrapNodeConfigImpl resource.
24     value:
25       {get_resource: BootstrapNodeConfigImpl}