# In our use case, we are expecting from the user to specify one (optional) parameter: "name". We put the default value here if he doesn't specify it, so that it doesn't crash.
# In our use case, we are expecting from the user to specify one (optional) parameter: "name". We put the default value here if he doesn't specify it, so that it doesn't crash.
configuration.name = John Doe
configuration.name = John Doe
# Here is the declaration of the default value for the parameter title (actually, it is void). If commented, the recipe will crash.
# The first part of the name paramater ("configuration.") means that the value can be manually defined thanks to the parameters of the instance
configuration.title =
# If our use case requires that the user can specify a mail address so that his instance can mail to him (for example), we can do:
# If our use case requires that the user can specify a mail address so that his instance can mail to him (for example), we can do:
# configuration.mail-address =
# configuration.mail-address =
# If the user doesn't specify it, it won't break and the recipe can handle it (i.e don't send any mail for example).
# If the user doesn't specify it, it won't break and the recipe can handle it (i.e don't send any mail for example).