-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathterraform.tfvars
75 lines (73 loc) · 2.21 KB
/
terraform.tfvars
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
applications = {
"cymbal-bank" = {
"balancereader" = {
create_infra_project = false
create_admin_project = true
}
"contacts" = {
create_infra_project = false
create_admin_project = true
}
"frontend" = {
create_infra_project = false
create_admin_project = true
}
"ledgerwriter" = {
create_infra_project = true
create_admin_project = true
}
"transactionhistory" = {
create_infra_project = false
create_admin_project = true
}
"userservice" = {
create_infra_project = true
create_admin_project = true
}
}
"cymbal-shop" = {
"cymbalshop" = {
create_infra_project = false
create_admin_project = true
},
}
}
cloudbuildv2_repository_config = {
repo_type = "GITLABv2"
repositories = {
balancereader = {
repository_name = "balancereader-i-r"
repository_url = "https://gitlab.com/user/balancereader-i-r.git"
}
contacts = {
repository_name = "contacts-i-r"
repository_url = "https://gitlab.com/user/contacts-i-r.git"
}
frontend = {
repository_name = "frontend-i-r"
repository_url = "https://gitlab.com/user/frontend-i-r.git"
}
ledgerwriter = {
repository_name = "ledgerwriter-i-r"
repository_url = "https://gitlab.com/user/ledgerwriter-i-r.git"
}
transactionhistory = {
repository_name = "transactionhistory-i-r"
repository_url = "https://gitlab.com/user/transactionhistory-i-r.git"
}
userservice = {
repository_name = "userservice-i-r"
repository_url = "https://gitlab.com/user/userservice-i-r.git"
}
cymbalshop = {
repository_name = "cymbalshop-i-r"
repository_url = "https://gitlab.com/user/cymbalshop-i-r.git"
}
}
# The Secret ID format is: projects/PROJECT_NUMBER/secrets/SECRET_NAME
gitlab_authorizer_credential_secret_id = "REPLACE_WITH_READ_API_SECRET_ID"
gitlab_read_authorizer_credential_secret_id = "REPLACE_WITH_READ_USER_SECRET_ID"
gitlab_webhook_secret_id = "REPLACE_WITH_WEBHOOK_SECRET_ID"
# If you are using a self-hosted instance, you may change the URL below accordingly
gitlab_enterprise_host_uri = "https://gitlab.com"
}