-
Notifications
You must be signed in to change notification settings - Fork 69
/
Copy pathdevops.hcl
115 lines (103 loc) · 2.97 KB
/
devops.hcl
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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
# Copyright 2021 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.
# {{$recipes := "../../templates/tfengine/recipes"}}
data = {
parent_type = "organization" # One of `organization` or `folder`.
parent_id = "12345678"
billing_account = "000-000-000"
state_bucket = "example-terraform-state"
storage_location = "us-central1"
}
template "devops" {
recipe_path = "{{$recipes}}/devops.hcl"
output_path = "./devops"
data = {
# TODO(user): Uncomment and re-run the engine after generated devops module has been deployed.
# Run `terraform init` in the devops module to backup its state to GCS.
# enable_gcs_backend = true
admins_group = {
id = "[email protected]"
exists = true
}
project = {
project_id = "example-devops"
owners_group = {
id = "[email protected]"
exists = true
}
}
}
}
# Must first be deployed manually before 'cicd' is deployed because some groups created
# here are used in 'cicd' template.
template "groups" {
recipe_path = "{{$recipes}}/project.hcl"
output_path = "./groups"
data = {
project = {
project_id = "example-devops"
exists = true
}
resources = {
groups = [
{
id = "[email protected]"
customer_id = "c12345678"
},
{
id = "[email protected]"
customer_id = "c12345678"
},
]
}
}
}
template "cicd" {
recipe_path = "{{$recipes}}/cicd.hcl"
output_path = "./cicd"
data = {
project_id = "example-devops"
github = {
owner = "GoogleCloudPlatform"
name = "example"
}
# Required for scheduler.
scheduler_region = "us-east1"
build_viewers = ["group:[email protected]"]
build_editors = ["group:[email protected]"]
terraform_root = "terraform"
service_account = {
id = "cloudbuild-sa"
exists = true
}
logs_bucket = "example-devops-cloudbuild-logs-bucket"
envs = [
{
name = "prod"
branch_name = "main"
# Prepare and enable default triggers.
triggers = {
validate = {}
plan = {
run_on_schedule = "0 12 * * *" # Run at 12 PM EST everyday
}
apply = {
run_on_push = false # Do not auto run on push to branch
}
}
managed_dirs = []
}
]
}
}