Skip to content

Commit

Permalink
add vertexai/featureonlinestore resource (#9632) (#629)
Browse files Browse the repository at this point in the history
* rebase featureonlinestore based on merged changes

* rebase based on merged featureonlinestore pr

* fix pr suggestions featureonlinestore

* fix documentation and pr comments featureonlinestore
[upstream:f6b6532046e9886815386703ebdbfc9cfbcada93]

Signed-off-by: Modular Magician <[email protected]>
  • Loading branch information
modular-magician authored Dec 21, 2023
1 parent b9205e8 commit 12ef42d
Showing 1 changed file with 12 additions and 13 deletions.
25 changes: 12 additions & 13 deletions vertex_ai_feature_online_store/main.tf
Original file line number Diff line number Diff line change
@@ -1,15 +1,14 @@
resource google_vertex_ai_feature_online_store "feature_online_store" {
name = "example_feature_online_store-${local.name_suffix}"
region = "us-central1"
labels = {
label-one = "value-one"
}

bigtable {
auto_scaling {
min_node_count = 1
max_node_count = 2
cpu_utilization_target = 60
}
resource "google_vertex_ai_feature_online_store" "feature_online_store" {
name = "example_feature_online_store-${local.name_suffix}"
labels = {
foo = "bar"
}
region = "us-central1"
bigtable {
auto_scaling {
min_node_count = 1
max_node_count = 3
cpu_utilization_target = 50
}
}
}

0 comments on commit 12ef42d

Please sign in to comment.