Any ideas on how to achieve this?" Tnks
# general
e
Any ideas on how to achieve this?" Tnks
s
Everything you make accessible via
pulumi.export
is also accessible using
pulumi stack output <name>
after the Pulumi program finishes. Using shell substitution, you could do something like
ansible --parameters-go-here $(pulumi stack output <name>)
. Does that help at all?
e
Great, I'll give it a try and I'll let you know. Thanks!
s
NP!