summaryrefslogtreecommitdiffstats
path: root/tosca2heat/tosca-parser/toscaparser/tests/data/topology_template/validate/system_invalid_missing_output.yaml
blob: 2028c382487039515208605de66c4b0acddeeba1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
tosca_definitions_version: tosca_simple_yaml_1_0

imports:
  - transactionsubsystem_invalid_missing_output.yaml

topology_template:
  description: Test template with invalid missing output.

  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
      default: 8080
      description: Port to be used for receiving messages.

  node_templates:
    trans:
      type: example.TransactionSubsystem
      properties:
        mq_server_ip: { get_input:  mq_server_ip }
        receiver_port: { get_input: mq_server_port }