aboutsummaryrefslogtreecommitdiffstats
path: root/bootstrap-config.yaml
diff options
context:
space:
mode:
Diffstat (limited to 'bootstrap-config.yaml')
-rw-r--r--bootstrap-config.yaml21
1 files changed, 21 insertions, 0 deletions
diff --git a/bootstrap-config.yaml b/bootstrap-config.yaml
new file mode 100644
index 00000000..14ecc005
--- /dev/null
+++ b/bootstrap-config.yaml
@@ -0,0 +1,21 @@
+heat_template_version: 2014-10-16
+description: 'Bootstrap Config'
+
+parameters:
+ bootstrap_nodeid:
+ type: string
+
+resources:
+
+ BootstrapNodeConfigImpl:
+ type: OS::Heat::StructuredConfig
+ properties:
+ config:
+ bootstrap_host:
+ bootstrap_nodeid: {get_param: bootstrap_nodeid}
+
+outputs:
+ config_id:
+ description: The ID of the BootstrapNodeConfigImpl resource.
+ value:
+ {get_resource: BootstrapNodeConfigImpl}