https://pulumi.com logo
Title
m

many-yak-61188

07/13/2021, 2:13 PM
Hello. I've been using / experimenting with pulumi using an s3 bucket as the login
url
. I decided to switch to using the service. My current state is as below
➜  p-gar git:(main) pulumi stack
Current stack is accrue-money/ci-cd:
    Owner: accrue-money
    Last update time unknown
    Pulumi version: ?
Current stack resources (0):
    No resources currently in this stack

More information at: <https://app.pulumi.com/accrue-money/p-gar/ci-cd>

Use `pulumi stack select` to change stack; `pulumi stack ls` lists known ones
when I set config settings using
pulumi config
as below
pulumi config set GITHUB_ACTIONS_RUNNER_CONTEXT  "<https://github.com/orgs/accrue-money/>"
I expected the config to show up in the service instead of a file
Pulumi.ci-cd.yaml
being present in the repository. My expectation being incorrect, what is the correct way to distribute configuration setting to other devs? Does each developer need to run the
pulumi config
commands after a
git clone
? Should I commit the file
Pulumi.ci-cd.yaml
? Over all a little confused about the purpose of stack specific configuration and the need to distribute it to others, what is the best way to do this?
b

billowy-army-68599

07/13/2021, 3:36 PM
Hey Bhaskar - yes, you should be checking in your stack configuration into source control
m

many-yak-61188

07/13/2021, 3:51 PM
ty