dfilppi | 9981f55 | 2017-08-07 20:10:53 +0000 | [diff] [blame^] | 1 | tosca_definitions_version: cloudify_dsl_1_3 |
| 2 | |
| 3 | imports: |
| 4 | - https://raw.githubusercontent.com/cloudify-cosmo/cloudify-manager/4.1/resources/rest-service/cloudify/types/types.yaml |
| 5 | - plugin.yaml |
| 6 | |
| 7 | inputs: |
| 8 | private_key: {} |
| 9 | is_keypair_external: {} |
| 10 | |
| 11 | |
| 12 | node_templates: |
| 13 | |
| 14 | keypair: |
| 15 | type: cloudify.openstack.nodes.KeyPair |
| 16 | properties: |
| 17 | private_key_path: { get_input: private_key } |
| 18 | use_external_resource: { get_input: is_keypair_external } |
| 19 | openstack_config: |
| 20 | username: aaa |
| 21 | password: aaa |
| 22 | tenant_name: aaa |
| 23 | auth_url: aaa |