Reputation: 67
How do I get blueprint_id and deployment_id in my own custom workflow in Cloudify? Thanks
Upvotes: 0
Views: 146
Reputation: 259
In python you can do this:
from cloudify.workflows import ctx
blueprint_id = ctx.blueprint.id
deployment_id = ctx.deployment.id
Upvotes: 4