diff options
author | julien zhang <zhang.jun3g@zte.com.cn> | 2016-08-03 08:10:39 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@172.30.200.206> | 2016-08-03 08:10:39 +0000 |
commit | a679a901bbb58a526d60aa1182a0e6fcd0e41419 (patch) | |
tree | 7105e5c954a1310c7bfe5a19f673f830f5403185 /tosca2heat/tosca-parser/toscaparser/tests/data/topology_template/queuingsubsystem.yaml | |
parent | c94de2c8594b8a5176bda7ad9a491f8a8133b09f (diff) | |
parent | 1c377c679ba8c8771288788fdffb956cfd9f6f08 (diff) |
Merge "Use the real yaml file in testcase of system.yaml"
Diffstat (limited to 'tosca2heat/tosca-parser/toscaparser/tests/data/topology_template/queuingsubsystem.yaml')
-rw-r--r-- | tosca2heat/tosca-parser/toscaparser/tests/data/topology_template/queuingsubsystem.yaml | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/tosca2heat/tosca-parser/toscaparser/tests/data/topology_template/queuingsubsystem.yaml b/tosca2heat/tosca-parser/toscaparser/tests/data/topology_template/queuingsubsystem.yaml index 48ab031..76fa7e2 100644 --- a/tosca2heat/tosca-parser/toscaparser/tests/data/topology_template/queuingsubsystem.yaml +++ b/tosca2heat/tosca-parser/toscaparser/tests/data/topology_template/queuingsubsystem.yaml @@ -9,14 +9,14 @@ imports: - definitions.yaml topology_template: - description: Template of a queue including its hosting stack. + description: Template of a database including its hosting stack. inputs: - mq_server_ip: + server_ip: type: string description: IP address of the message queuing server to receive messages from. default: 127.0.0.1 - my_receiver_port: + server_port: type: integer description: Port to be used for receiving messages. default: 8080 @@ -39,8 +39,8 @@ topology_template: tran_app: type: example.QueuingSubsystem properties: - server_ip: { get_input: mq_server_ip } - server_port: { get_input: my_receiver_port } + server_ip: { get_input: server_ip } + server_port: { get_input: server_port } requirements: - host: node: server |