From 9471bc2b3824c6d8f264b686ff75942b0cc5a48f Mon Sep 17 00:00:00 2001 From: Aaron Friel Date: Fri, 9 Dec 2022 13:25:58 -0800 Subject: [PATCH] Ensure forward build compatibility for resource provider --- pkg/tfbridge/provider.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkg/tfbridge/provider.go b/pkg/tfbridge/provider.go index 24f07a996..13a2079aa 100644 --- a/pkg/tfbridge/provider.go +++ b/pkg/tfbridge/provider.go @@ -49,6 +49,8 @@ import ( // Provider implements the Pulumi resource provider operations for any Terraform plugin. type Provider struct { + pulumirpc.UnimplementedResourceProviderServer + host *provider.HostClient // the RPC link back to the Pulumi engine. module string // the Terraform module name. version string // the plugin version number.