Reputation: 11
for cloudify tosca description with openstack plugin, how to define an instance name ?
type: cloudify.nodes.openstack.Server
properties:
name: <node name> <-- how to provide this?
cloudify composer gives error that "name" is not recognized in this property. however HOT template allows such properties.
so is there a way to give a node name using cloudify tosca template for openstack ?
regards
Upvotes: 1
Views: 34
Reputation: 122
I guess it is done this way
name:
type: string
description: Name that should be given ```
Upvotes: 0