From 6046cc1ccafc426d037a05ab3a88a27648478bdb Mon Sep 17 00:00:00 2001 From: The Magician Date: Tue, 21 Jun 2022 11:13:05 -0700 Subject: [PATCH] Fix `force_destroy` in `google_vertex_ai_featurestore` (#6117) (#11928) * fix 11850 * add test Signed-off-by: Modular Magician --- .changelog/6117.txt | 3 +++ website/docs/r/vertex_ai_featurestore.html.markdown | 1 + 2 files changed, 4 insertions(+) create mode 100644 .changelog/6117.txt diff --git a/.changelog/6117.txt b/.changelog/6117.txt new file mode 100644 index 00000000000..fe5e4e7d752 --- /dev/null +++ b/.changelog/6117.txt @@ -0,0 +1,3 @@ +```release-note:bug +vertexai: Fixed a bug where terraform crashes when `force_destroy` is set in `google_vertex_ai_featurestore` resource +``` diff --git a/website/docs/r/vertex_ai_featurestore.html.markdown b/website/docs/r/vertex_ai_featurestore.html.markdown index 58e2db7912f..d08e9400249 100644 --- a/website/docs/r/vertex_ai_featurestore.html.markdown +++ b/website/docs/r/vertex_ai_featurestore.html.markdown @@ -52,6 +52,7 @@ resource "google_vertex_ai_featurestore" "featurestore" { online_serving_config { fixed_node_count = 2 } + force_destroy = true } ```