ancient-megabyte-79588
03/04/2021, 4:23 PMpulumi cli
to proceess a .env
file? I want to simulate what our deployment pipelines do by passing in secrets as Env Var and I don't want to make a bunch of actual Env Var in my shell session.billowy-army-68599
03/04/2021, 4:28 PMnpm install dotenv
import * as dotenv from 'dotenv';
dotenv.config();
etc?ancient-megabyte-79588
03/04/2021, 4:36 PMpulumi cli
would do that itself.billowy-army-68599
03/04/2021, 4:43 PM