blob: 77cef30cf9bce16c37508111a80f0823200d7e4a [file] [log] [blame]
tosca_definitions_version: tosca_simple_yaml_1_0
node_types:
web_server:
derived_from: tosca.nodes.Root
capabilities:
host:
type: tosca.capabilities.Container
web_app:
derived_from: tosca.nodes.WebApplication
properties:
port:
type: integer
topology_template:
node_templates:
web_server:
type: web_server
web_app:
type: web_app
properties:
port: 9090
requirements:
- host: web_server
interfaces:
Standard:
configure: scripts/configure.sh
start: scripts/start.sh
stop: scripts/stop.sh