aboutsummaryrefslogtreecommitdiffstats
path: root/ice_validator/tests/fixtures/test_valid_heat/fail/fail3.yaml
diff options
context:
space:
mode:
Diffstat (limited to 'ice_validator/tests/fixtures/test_valid_heat/fail/fail3.yaml')
-rw-r--r--ice_validator/tests/fixtures/test_valid_heat/fail/fail3.yaml20
1 files changed, 20 insertions, 0 deletions
diff --git a/ice_validator/tests/fixtures/test_valid_heat/fail/fail3.yaml b/ice_validator/tests/fixtures/test_valid_heat/fail/fail3.yaml
new file mode 100644
index 0000000..f8c5446
--- /dev/null
+++ b/ice_validator/tests/fixtures/test_valid_heat/fail/fail3.yaml
@@ -0,0 +1,20 @@
+heat_template_version: 2014-10-16
+
+description: This is a test heat template
+
+parameters:
+
+ testparam:
+ type: string
+ description: This is a test parameter
+
+resources:
+
+ test_resource:
+ type: OS::Heat::RandomString
+ properties:
+ length: { get_param: testparam }
+
+outputs:
+ badoutput:
+ value: { get_attr: [test_resource, notanattr, 0] } \ No newline at end of file