Skip to content

Commit 7ec74a5

Browse files
Skip default schema while datastore creation (#11311) (#759)
[upstream:95ad39b90ef375140e80f1d2bba8beba3a00ec03] Signed-off-by: Modular Magician <[email protected]>
1 parent 688693b commit 7ec74a5

File tree

1 file changed

+8
-7
lines changed
  • discoveryengine_datastore_basic

1 file changed

+8
-7
lines changed
Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
resource "google_discovery_engine_data_store" "basic" {
2-
location = "global"
3-
data_store_id = "data-store-id-${local.name_suffix}"
4-
display_name = "tf-test-structured-datastore"
5-
industry_vertical = "GENERIC"
6-
content_config = "NO_CONTENT"
7-
solution_types = ["SOLUTION_TYPE_SEARCH"]
8-
create_advanced_site_search = false
2+
location = "global"
3+
data_store_id = "data-store-id-${local.name_suffix}"
4+
display_name = "tf-test-structured-datastore"
5+
industry_vertical = "GENERIC"
6+
content_config = "NO_CONTENT"
7+
solution_types = ["SOLUTION_TYPE_SEARCH"]
8+
create_advanced_site_search = false
9+
skip_default_schema_creation = false
910
}

0 commit comments

Comments
 (0)