summaryrefslogtreecommitdiffstats
path: root/app/data/shared_model/existing_topic/template.yaml
diff options
context:
space:
mode:
Diffstat (limited to 'app/data/shared_model/existing_topic/template.yaml')
-rw-r--r--app/data/shared_model/existing_topic/template.yaml58
1 files changed, 58 insertions, 0 deletions
diff --git a/app/data/shared_model/existing_topic/template.yaml b/app/data/shared_model/existing_topic/template.yaml
new file mode 100644
index 0000000..cd41b04
--- /dev/null
+++ b/app/data/shared_model/existing_topic/template.yaml
@@ -0,0 +1,58 @@
+tosca_definitions_version: tosca_simple_yaml_1_0_0
+metadata:
+ template_name: existing_topic
+imports:
+- schema: schema.yaml
+topology_template:
+ inputs:
+ aaf_password:
+ type: string
+ aaf_username:
+ type: string
+ client_role:
+ type: string
+ fqtn:
+ type: string
+
+ node_templates:
+ topic:
+ type: tosca.dcae.nodes.dmaap.existingTopic
+ properties:
+ aaf_password:
+ get_input: aaf_password
+ aaf_username:
+ get_input: aaf_username
+ client_role:
+ get_input: client_role
+ location:
+ get_property:
+ - SELF
+ - composition
+ - location_id
+ node_name: __GET_NODE_NAME__
+ fqtn:
+ get_input: fqtn
+ capabilities:
+ topic:
+ properties:
+ aaf_password:
+ get_property:
+ - SELF
+ - aaf_password
+ aaf_username:
+ get_property:
+ - SELF
+ - aaf_username
+ client_role:
+ get_property:
+ - SELF
+ - client_role
+ location:
+ get_property:
+ - SELF
+ - location
+ node_name:
+ get_property:
+ - SELF
+ - node_name
+ topic_name: '' \ No newline at end of file