I'm playing with the `pulumi-component-provider-go...
# general
l
I'm playing with the
pulumi-component-provider-go-boilerplate
repo. I built it and I executed the examples/simple stack. AWS resources are correctly created. Then I extended the code to register a resource transformation to tag the created AWS resources, based on this article. But it seems the transformation is not applied when I pass it to the
StaticPage
component using the key
transformations:
in
opts
, nor when using
pulumi.runtime.registerStackTransformation
. Are resource transformations in combination with component providers not supported?
It seems like it that
transformations
aren't supported yet for multi-language components: https://github.com/pulumi/pulumi/issues/6948
l
To achieve this end result, I'd probably look at the code that supports the defaultTags provider opt for AWS Classic. Should be possible to copy that into xyz provider.
l
This was just an example. I use resource transformations for much more. See my comment in the ticket mentioned above.
👍 1