We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7b5b1df commit 06caa93Copy full SHA for 06caa93
test/fixtures/fabric_project/main.tf
@@ -26,6 +26,6 @@ module "fabric-project" {
26
billing_account = var.billing_account
27
activate_apis = [
28
"compute.googleapis.com",
29
- "bigquery.googleapis.com",
+ "storage-api.googleapis.com",
30
]
31
}
test/integration/fabric_project/controls/project_fabric.rb
@@ -38,7 +38,7 @@
38
its('stderr') { should eq '' }
39
40
its('stdout') { should match(/compute\.googleapis\.com/) }
41
- its('stdout') { should match(/bigquery\.googleapis\.com/) }
+ its('stdout') { should match(/storage-api\.googleapis\.com/) }
42
end
43
44
describe command("gcloud alpha resource-manager liens list --project #{project_id} --format=json") do
0 commit comments