From 6a17c843329a90111813019047df9c518f5f2b92 Mon Sep 17 00:00:00 2001 From: The Magician Date: Wed, 17 Feb 2021 14:07:35 -0800 Subject: [PATCH] Fix bug: artifact_registry_repository update always failing (#4482) (#8491) This fixes a bug where trying to update an artifact_registry_repository always failed due to the fact that the resource's Update logic was hitting the wrong API endpoint. Signed-off-by: Modular Magician --- .changelog/4482.txt | 3 +++ google/resource_artifact_registry_repository_test.go | 1 + 2 files changed, 4 insertions(+) create mode 100644 .changelog/4482.txt create mode 100644 google/resource_artifact_registry_repository_test.go diff --git a/.changelog/4482.txt b/.changelog/4482.txt new file mode 100644 index 00000000000..cdc40802d29 --- /dev/null +++ b/.changelog/4482.txt @@ -0,0 +1,3 @@ +```release-note:bug +artifactregistry: fixed issue where updating `google_artifact_registry_repository` always failed +``` diff --git a/google/resource_artifact_registry_repository_test.go b/google/resource_artifact_registry_repository_test.go new file mode 100644 index 00000000000..71664db3c87 --- /dev/null +++ b/google/resource_artifact_registry_repository_test.go @@ -0,0 +1 @@ +package google