Hi, I am creating some Lambda function code with P...
# general
g
Hi, I am creating some Lambda function code with Pulumi command package and then in my Lambda function I reference that code dir with
code=FileArchive(f"/tmp/{archive_folder}")
. On
pulumi preview
this fails as the folder does not exist as it is only created on
pulumi up
. How can this be solved in a Pulumi way? Cheers!