From 78332532d57f9c7282cab194fe72a41ea3b23d41 Mon Sep 17 00:00:00 2001 From: Allison Doami Date: Wed, 16 Jun 2021 13:41:43 -0700 Subject: [PATCH] feat: Add importer to integration grant (#574) --- pkg/resources/integration_grant.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkg/resources/integration_grant.go b/pkg/resources/integration_grant.go index 6baf52d481..de6bc25ef6 100644 --- a/pkg/resources/integration_grant.go +++ b/pkg/resources/integration_grant.go @@ -50,6 +50,9 @@ func IntegrationGrant() *TerraformGrantResource { Delete: DeleteIntegrationGrant, Schema: integrationGrantSchema, + Importer: &schema.ResourceImporter{ + StateContext: schema.ImportStatePassthroughContext, + }, }, ValidPrivs: validIntegrationPrivileges, }