Is there a way to skip a command(s) in a workflow based on user input?
Scenario
I am creating a volume and exporting to hosts. depending on if the volume is a production volume I want to mirror the volume to another filer/volume
I thought that I could use input dependancy but that does not seem to do it...it only will "prompt" me to change the input if I select prod or be grayed out but still contain "default data"
User input
class (enum) values: stage,prod
if I choose stage I dont want to run the command to create the mirror volume and create VSM relationship
if I choose prod I want the workflow to run the command to create the mirror volume and snapmirror relationship
I probably can create my own special command for create volume and create VSM and check the class variable for stage and skip within the command, but is there a cleaner way vs do that?