1 tosca_definitions_version: tosca_simple_yaml_1_0
4 TOSCA simple profile to test the get property function with HOST parameter
7 - ../custom_types/compute_with_prop.yaml
13 description: The name of the database.
17 description: The user name of the DB user.
21 description: The WordPress database admin account password.
25 description: Root password for MySQL.
28 description: Port for the MySQL database.
34 type: tosca.nodes.Database
36 name: { get_input: db_name }
37 user: { get_input: db_user }
38 password: { get_input: db_pwd }
42 port: { get_input: db_port }
48 implementation: mysql/mysql_database_configure.sh
50 db_port: { get_property: [ HOST, port ] }
51 test: { get_property: [ HOST, test ] }
54 type: tosca.nodes.DBMS
56 root_password: { get_input: db_root_pwd }
57 port: { get_input: db_port }
62 type: tosca.nodes.ComputeWithProp