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 } ```