Hi, I'm trying to create a transformation that set...
# general
b
Hi, I'm trying to create a transformation that sets 2 tags on all resources, one with the stack name and the other with the project name. It should keep existing tags. I have this code but not really sure how to continue:
Copy code
pulumi.runtime.registerStackTransformation((args) => {
  return {
    args: {tags: }
  }
});