Is your feature request related to a problem? Please describe.
As a developer I want to share common, non-sensitive configuration to make the initial setup as easy as possible. In our case that means that we shared the backend configuration in Pulumi.yaml:
backend:
url: azblob://<container>
Unfortunately this config doesn't seem to be picked up by the pipeline task.
Describe the solution you'd like
I would like the pipeline task to pick up the backend configuration from the Pulumi.yaml file.
Describe alternatives you've considered
Instead we currently have to provide loginArgs: 'azblob://<container>' to each instance of the task, which is repetitive/redundant, as we already have this committed in our repository.
Is your feature request related to a problem? Please describe. As a developer I want to share common, non-sensitive configuration to make the initial setup as easy as possible. In our case that means that we shared the backend configuration in
Pulumi.yaml
:Unfortunately this config doesn't seem to be picked up by the pipeline task.
Describe the solution you'd like I would like the pipeline task to pick up the backend configuration from the
Pulumi.yaml
file.Describe alternatives you've considered Instead we currently have to provide
loginArgs: 'azblob://<container>'
to each instance of the task, which is repetitive/redundant, as we already have this committed in our repository.