-
Notifications
You must be signed in to change notification settings - Fork 0
/
bard.tf
42 lines (36 loc) · 1.05 KB
/
bard.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
module "bard-repo" {
source = "./defaults/github"
github_token = var.github_token
repo_name = "bard"
repo_description = "Metrics collection service"
}
module "bard-dev" {
source = "./defaults/gcp"
google_credentials = var.google_credentials
google_project = "terra-bard-dev"
requires_suitable = false
}
module "bard-alpha" {
source = "./defaults/gcp"
google_credentials = var.google_credentials
google_project = "terra-bard-alpha"
requires_suitable = false
}
module "bard-perf" {
source = "./defaults/gcp"
google_credentials = var.google_credentials
google_project = "terra-bard-perf"
requires_suitable = false
}
module "bard-staging" {
source = "./defaults/gcp"
google_credentials = var.google_credentials
google_project = "terra-bard-staging"
requires_suitable = false
}
module "bard-prod" {
source = "./defaults/gcp"
google_credentials = var.google_credentials
google_project = "terra-bard-prod"
requires_suitable = true
}