This message was deleted.
# general
s
This message was deleted.
l
Those are stack tags. I don't think they're part of the config block. You can set them via
pulumi stack tag set
. I seem to recall that there is a way to set them via the config files, but I can't find it now.
Ok found the docs. What you're doing looks ok, maybe it's a YAML issue? You could try:
Copy code
config:
  pulumi:tags:
    github:
      owner: devops
Or maybe even
Copy code
config:
  pulumi:tags:
    "github:owner": devops
b
It works if do this, but does not replace the built in tag, it add another one with the same description and a different value.
Copy code
config:
  pulumi:tags:
    "github:owner": devops
e
Looks like the built-in git tags take precedence. If you raise an issue about this I think we could switch that around.