end-to-end tests for Vertex blueprint

This commit is contained in:
Wiktor Niesiobędzki 2023-11-15 11:04:12 +00:00
parent 03bf0b15b3
commit 63f1dfb6de
1 changed files with 5 additions and 5 deletions

View File

@ -112,19 +112,19 @@ module "test" {
"team" = "ml" "team" = "ml"
} }
bucket_name = "gcs-test" bucket_name = "gcs-test"
dataset_name = "bq-test" dataset_name = "bq_test"
identity_pool_claims = "attribute.repository/ORGANIZATION/REPO" identity_pool_claims = "attribute.repository/ORGANIZATION/REPO"
notebooks = { notebooks = {
"myworkbench" = { "myworkbench" = {
type = "USER_MANAGED" type = "USER_MANAGED"
} }
} }
prefix = "pref-dev" prefix = var.prefix
project_config = { project_config = {
billing_account_id = "000000-123456-123456" billing_account_id = var.billing_account_id
parent = "folders/111111111111" parent = var.folder_id
project_id = "test-dev" project_id = "test-dev"
} }
} }
# tftest modules=13 resources=67 # tftest modules=13 resources=67 e2e
``` ```