I have flow which has a step that runs in AWS: ```...
# ask-metaflow
e
I have flow which has a step that runs in AWS:
Copy code
@batch(cpu=8, memory=24576, image=FULL_IMAGE)
@step
def my_fave_step(self):
    print("woohoo in my favorite step")
is it possible to make
FULL_IMAGE
a variable that can get passes into the flow?
1