This message was deleted.
# aws
s
This message was deleted.
l
Can you pass the variables via constructor args instead of env vars?
Alternatively, you could try doing these things in the args of the resource? Haven't tried this though..
Copy code
new YourEnvVarResource(name, {
  services: pulumi.output(services).apply((services) => { /* your code */}),
  ...
});
In theory this would make your resources dependent on the
apply
, I think? So it wouldn't be created until that apply completed...
b
I'll give it a shot. thanks!