In a Cloudify service recipe, is there a built-in way to upload static files to the instances? I see examples in recipes of using template files through a Groovy parser like:
def yaml = new File('templates/storm.yaml')
engine = new SimpleTemplateEngine()
template = engine.createTemplate(yaml).make(binding)
And I could do something like this in one of the lifecycle event's Groovy script for static files except not pass them through the template engine, but what I'm interested in is a common pattern used in Cloudify recipes for uploading static files, ideally one where everything in a directory gets uploaded to the instances.
I can't seem to find anything in the documentation or forums showing a way to do this. Does such a nice method of uploading files to the instances as part of a service recipe exist?