Prior to using the automation API, I was using the...
# general
f
Prior to using the automation API, I was using the config package (https://www.pulumi.com/docs/intro/concepts/config/) in Go to ingest config. And then a
pulumi up
would do the trick. I did not add any code to set the config. Now with the automation API all I see in the examples is
Copy code
// set stack configuration specifying the AWS region to deploy
	s.SetConfig(ctx, "aws:region", auto.ConfigValue{Value: "us-west-2"})
Is there a way to consume config using a
Pulumi.dev.yaml
file? instead of setting one config at a time. Pulumi.dev.yaml
Copy code
config:
  aws:region: us-east-2
  aws:profile: sandbox
  aep:config:
    bucket:
      name: dinesh-test