tldr issue: stacks created via codebuild are not t...
# aws
b
tldr issue: stacks created via codebuild are not tagged with github/vcs tags _________________________ more detail: I am using the following pulumi cli commands in my codebuild buildspec:
Copy code
- pulumi stack select -c -s <my fully qualified stack name>
- pulumi up -s <my fully qualified stack name> --skip-preview --yes
if the stack doesn’t exist yet, it is successfully created (due to the -c flag in the stack select). But the correct vcs and github tags are not created. In particular it looks I should expect the following to be set:
Copy code
gitHub:owner
gitHub:repo
vcs:kind
vcs:owner
vcs:repo
I have found a work around by manually adding these tags after the
pulumi up
, but is there something I can do to have these tags auto generated?
l
The tags don't seem to be added under most circumstances. I don't know how my colleagues create their stacks, but I haven't ever had the tags applied automatically. I always add them every time I create a stack.
🙏 1