summaryrefslogtreecommitdiffstats
path: root/nfvparser/toscaparser/tests/data/test_attributes_inheritance.yaml
diff options
context:
space:
mode:
authorZhaoxing Meng <meng.zhaoxing1@zte.com.cn>2017-09-22 07:52:14 +0000
committerGerrit Code Review <gerrit@onap.org>2017-09-22 07:52:14 +0000
commit66eb1510d4ea58713f947255ebdecbd3caedcd88 (patch)
tree9c200a8a26eadb92ebc9710efb9578e915f26cc0 /nfvparser/toscaparser/tests/data/test_attributes_inheritance.yaml
parentdde1bd595397c2e06ec897fde81cd4f8be710c5b (diff)
parent6a3e9d53686eda1d45fb54b97869a594741f089c (diff)
Merge "Move python files to root dir"
Diffstat (limited to 'nfvparser/toscaparser/tests/data/test_attributes_inheritance.yaml')
-rw-r--r--nfvparser/toscaparser/tests/data/test_attributes_inheritance.yaml28
1 files changed, 28 insertions, 0 deletions
diff --git a/nfvparser/toscaparser/tests/data/test_attributes_inheritance.yaml b/nfvparser/toscaparser/tests/data/test_attributes_inheritance.yaml
new file mode 100644
index 0000000..0649c11
--- /dev/null
+++ b/nfvparser/toscaparser/tests/data/test_attributes_inheritance.yaml
@@ -0,0 +1,28 @@
+tosca_definitions_version: tosca_simple_yaml_1_0
+
+description: TOSCA simple profile to test the attribute inheritance
+
+imports:
+ - custom_types/compute_with_prop.yaml
+
+topology_template:
+
+ node_templates:
+
+ server:
+ type: tosca.nodes.ComputeWithProp
+ properties:
+ test: yes
+ capabilities:
+ host:
+ properties:
+ num_cpus: 1
+ mem_size: 1 GB
+ os:
+ properties:
+ type: linux
+
+ outputs:
+ server_ip:
+ value: { get_attribute: [ server, public_address ] }
+