-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcalhoun.tf
43 lines (37 loc) · 1.15 KB
/
calhoun.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
module "calhoun-repo" {
source = "./defaults/github"
github_token = var.github_token
repo_name = "calhoun"
repo_description = "Notebook preview service"
require_circle_build_for_merge = false
}
module "calhoun-dev" {
source = "./defaults/gcp"
google_credentials = var.google_credentials
google_project = "terra-calhoun-dev"
requires_suitable = false
}
module "calhoun-alpha" {
source = "./defaults/gcp"
google_credentials = var.google_credentials
google_project = "terra-calhoun-alpha"
requires_suitable = false
}
module "calhoun-perf" {
source = "./defaults/gcp"
google_credentials = var.google_credentials
google_project = "terra-calhoun-perf"
requires_suitable = false
}
module "calhoun-staging" {
source = "./defaults/gcp"
google_credentials = var.google_credentials
google_project = "terra-calhoun-staging"
requires_suitable = false
}
module "calhoun-prod" {
source = "./defaults/gcp"
google_credentials = var.google_credentials
google_project = "terra-calhoun-prod"
requires_suitable = true
}