Hey, how would I go about specifying that some exa...
# package-authoring
c
Hey, how would I go about specifying that some examples need to refer to
pulumi-std
? Consider e.g. this example: https://registry.terraform.io/providers/ClickHouse/clickhousedbops/latest/docs/resources/user, which uses
sha256
. When running
make tfgen
, I get an error that
std
is missing.
e
I think as long as std is installed it'll get picked up by the tf build
c
Ah nice, added
.pulumi/bin/pulumi plugin install resource std 2.2.0
to
script/plugins.mk
and it worked just fine. thanks!
🙌 1