forked from inheal-y/terraform-docs-samples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.tf
85 lines (81 loc) · 2.86 KB
/
main.tf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
/**
* Copyright 2022 Google LLC
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
locals {
// Sample testing is run in parallel across num_projects.
// Discovery and test grouping is dynamic, only this number has to be increased
// and build/int.cloudbuild.yaml updated for new test group.
num_projects = 4
project_ids = module.projects.*.project_id
}
module "projects" {
count = local.num_projects
source = "terraform-google-modules/project-factory/google"
version = "~> 17.0"
name = "ci-tf-samples-${count.index}"
random_project_id = true
random_project_id_length = 8
org_id = var.org_id
folder_id = var.folder_id
billing_account = var.billing_account
default_service_account = "keep"
// flask_google_cloud_quickstart, instance_virtual_display_enabled etc requires default network
auto_create_network = true
activate_apis = [
"aiplatform.googleapis.com",
"anthos.googleapis.com",
"anthospolicycontroller.googleapis.com",
"artifactregistry.googleapis.com",
"backupdr.googleapis.com",
"biglake.googleapis.com",
"bigquery.googleapis.com",
"bigqueryconnection.googleapis.com",
"certificatemanager.googleapis.com",
"compute.googleapis.com",
"cloudbuild.googleapis.com",
"cloudfunctions.googleapis.com",
"cloudkms.googleapis.com",
"cloudresourcemanager.googleapis.com",
"cloudscheduler.googleapis.com",
"cloudtasks.googleapis.com",
"connectgateway.googleapis.com",
"container.googleapis.com",
"dns.googleapis.com",
"eventarc.googleapis.com",
"gkehub.googleapis.com",
"iam.googleapis.com",
"integrations.googleapis.com",
"looker.googleapis.com",
"networkconnectivity.googleapis.com",
"networkmanagement.googleapis.com",
"notebooks.googleapis.com",
"privateca.googleapis.com",
"pubsub.googleapis.com",
"run.googleapis.com",
"storage-api.googleapis.com",
"servicedirectory.googleapis.com",
"servicenetworking.googleapis.com",
"serviceusage.googleapis.com",
"storage-component.googleapis.com",
"sourcerepo.googleapis.com",
"secretmanager.googleapis.com",
"sqladmin.googleapis.com",
"workflows.googleapis.com",
"osconfig.googleapis.com",
"connectors.googleapis.com",
"bigqueryreservation.googleapis.com",
"managedkafka.googleapis.com"
]
}