diff options
author | shangxdy <shang.xiaodong@zte.com.cn> | 2016-07-29 12:54:07 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@172.30.200.206> | 2016-07-29 12:54:07 +0000 |
commit | 47821301accde5ecc0dc90be2048f479e5857672 (patch) | |
tree | 813396de926a2d9f07bc4aa5cd1412e751f3468f /tosca2heat/tosca-parser/toscaparser/tests/data/topology_template/system.yaml | |
parent | c591b4aaf6572ae80eea35e3569b4ea860dbddac (diff) | |
parent | db33fd6014c3d746d08002c7cfd061fcdad9868f (diff) |
Merge "Add transaction subsystem definition in the use case of substitution_mappings"
Diffstat (limited to 'tosca2heat/tosca-parser/toscaparser/tests/data/topology_template/system.yaml')
-rw-r--r-- | tosca2heat/tosca-parser/toscaparser/tests/data/topology_template/system.yaml | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/tosca2heat/tosca-parser/toscaparser/tests/data/topology_template/system.yaml b/tosca2heat/tosca-parser/toscaparser/tests/data/topology_template/system.yaml index 9996e4f..84d625d 100644 --- a/tosca2heat/tosca-parser/toscaparser/tests/data/topology_template/system.yaml +++ b/tosca2heat/tosca-parser/toscaparser/tests/data/topology_template/system.yaml @@ -7,11 +7,24 @@ imports: topology_template: description: Template of online transaction processing service. + inputs: + mq_server_ip: + type: string + default: 127.0.0.1 + description: IP address of the message queuing server to receive messages from. + mq_server_port: + type: integer + default1: 8080 + description: Port to be used for receiving messages. + node_templates: mq: type: example.QueuingSubsystem # properties: # to be updated when substitution_mapping is implemented + properties: + server_ip: { get_input: mq_server_ip } + server_port: { get_input: mq_server_port } # capabilities: # message_queue_endpoint: # to be updated when substitution_mapping is implemented |