-
Notifications
You must be signed in to change notification settings - Fork 3
Open
Labels
Description
The Tosca node definition have a boolean properties but the recip generated write it between quote like a string
definition file:
...
node_types:
fasconnect.nodes.iis:
derived_from: tosca.nodes.SoftwareComponent
...
properties:
dotNetInstall:
type: boolean
default: false
...test in groovy file:
def dotNetInstall = config.get(serviceName).dotNetInstall
if(dotNetInstall){
...
}properties generated:
...
iis.dotNetInstall="false"
...Reactions are currently unavailable