From ed58a187f771c7afb8c129024c30c7858bffddcd Mon Sep 17 00:00:00 2001 From: tengqm Date: Thu, 18 Dec 2014 17:07:12 +0800 Subject: [PATCH] Initial version This file contains a 'os.heat.stack' profile that will create a stack using the template contained in spec. --- examples/profiles/heat_stack_random_string.yaml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 examples/profiles/heat_stack_random_string.yaml diff --git a/examples/profiles/heat_stack_random_string.yaml b/examples/profiles/heat_stack_random_string.yaml new file mode 100644 index 000000000..0358e211c --- /dev/null +++ b/examples/profiles/heat_stack_random_string.yaml @@ -0,0 +1,12 @@ +type: os.heat.stack +spec: + template: + heat_template_version: 2014-10-16 + resources: + random: + type: OS::Heat::RandomString + properties: + length: 64 + outputs: + result: + value: {get_attr: [random, value]}