what’s the easiest way to import resource names fr...
# getting-started
m
what’s the easiest way to import resource names from pulumi into another script? I have a pulumi stack that defines a cluster, a fargate task, and a vpc. I need to import the names of those three resources into another program that will run the task
b
b
@microscopic-painting-1312 you can save stack output into a json file and then read the file in another program
Copy code
pulumi stack output -j
👍 1