From b1c12dbf53631a0cacb67250d26a4364c03cdb0b Mon Sep 17 00:00:00 2001 From: Rickard von Essen Date: Wed, 23 Oct 2024 09:10:25 +0200 Subject: [PATCH] Remove redudant MarkAsRequired on location Signed-off-by: Rickard von Essen --- config/networkconnectivity/config.go | 17 ----------------- 1 file changed, 17 deletions(-) delete mode 100644 config/networkconnectivity/config.go diff --git a/config/networkconnectivity/config.go b/config/networkconnectivity/config.go deleted file mode 100644 index 7c2d40cb0..000000000 --- a/config/networkconnectivity/config.go +++ /dev/null @@ -1,17 +0,0 @@ -// SPDX-FileCopyrightText: 2024 The Crossplane Authors -// -// SPDX-License-Identifier: CC0-1.0 - -package networkconnectivity - -import ( - "github.com/crossplane/upjet/pkg/config" -) - -// Configure configures individual resources by adding custom -// ResourceConfigurators. -func Configure(p *config.Provider) { - p.AddResourceConfigurator("google_network_connectivity_service_connection_policy", func(r *config.Resource) { - config.MarkAsRequired(r.TerraformResource, "location") - }) -}