-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlocals.tf
29 lines (27 loc) · 969 Bytes
/
locals.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
locals {
project = {
"osc-project" = {
description = "os.c terraform automation project"
}
}
workspace = {
"osc-tfe" = {
description = "os.c terraform automation workspace"
execution_mode = "remote"
project_id = module.project["osc-project"].id
vcs_repo_identifier = "${var.github_organization_name}/osc-terraform-tfe"
}
"osc-github" = {
description = "os.c github automation workspace"
execution_mode = "remote"
project_id = module.project["osc-project"].id
vcs_repo_identifier = "${var.github_organization_name}/osc-terraform-github"
}
"osc-cloudflare-dns" = {
description = "os.c cloudflare dns automation workspace"
execution_mode = "remote"
project_id = module.project["osc-project"].id
vcs_repo_identifier = "${var.github_organization_name}/osc-terraform-cloudflare-dns"
}
}
}