Does `make provider` and `make build_sdks` also up...
# general
c
Does
make provider
and
make build_sdks
also update it?
b
@cuddly-engineer-30016 depends if the bridged provider is using
automapping
or `manual`mapping. Because auto mapping is newer functionality many older (wrapped) providers (still) use the manual way. Or the provider maintainer(s) decided to not use the auto mapping at all. https://github.com/pulumi/pulumi-terraform-bridge/blob/master/docs/automatic-token-mapping.md
c
I am not sure what the
time
package is using and don't know how to find that out but since its an older one and looking at the changes made in the latest PR, I would say its using manual mapping.
b
@cuddly-engineer-30016 If you refer to the
pulumi-time
provider (https://github.com/pulumiverse/pulumi-time) , I can definitely tell you, because I'm the maintainer, that the repo is using manual mapping. If there's a upstream resource/data source is missing, please open an issue so that I can create a new release.
c
That's what i am trying to say. There are no upstream "resource" or "datasource" that is missing but a "function". The terraform time package has a "provider function" called
rfc3339_parse
https://registry.terraform.io/providers/hashicorp/time/latest/docs/functions/rfc3339_parse and this is what is missing. And I don't even know if a terraform provder function can be implemented in pulumi automatically. I know that terraform data sources are implemented automatically as pulumi functions though.