Is this something that is not available? I'm readi...
# golang
h
Is this something that is not available? I'm reading documentation about this and it seems that it's not yet in golang... That seems to me to be really important feature not to be in official release of supported language.
l
It looks like this might be a bug, would you mind filing an issue?
service.Template.Metadata()
is a utility function that calls `ApplyT`: https://github.com/pulumi/pulumi-gcp/blob/master/sdk/go/gcp/cloudrun/pulumiTypes.go#L1963
Actually, it looks like in the version that you're using
3.0.1
that the
Apply
in not typed with a pointer, which would cause this issue if the resulting value is nil. Can you try upgrading to the latest GCP release? (
v3.4.0
)
h
Yep, that seems to work just fine, thanks. I'll make a mental note to check releases daily 🙂