RunBook Outputs
If your RunBook is part of a pipeline you'll want the results of the RunBook execution to continue your process
Last updated
Was this helpful?
Was this helpful?
#place the value you wish to output into a variable
variable = "foo"
w.set_output("<output_parameter>", "variable")import random
random_number = random.randint(0, len(iams)-1)
user= iams[random_number]
print(random_number, user)
w.set_output("random_number", "random_number")
w.set_output("random_user", "user")