generated from ministryofjustice/cloud-platform-terraform-template
-
Notifications
You must be signed in to change notification settings - Fork 2
/
main.tf
80 lines (65 loc) · 2.1 KB
/
main.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
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
data "aws_region" "current_region" {}
module "label" {
source = "cloudposse/label/null"
version = "0.25.0"
namespace = "pttp"
stage = terraform.workspace
name = "infrastructure"
delimiter = "-"
tags = {
"business-unit" = "MoJO"
"application" = "pttp-shared-services-infrastructure",
"is-production" = tostring(var.is-production),
"owner" = var.owner-email
"environment-name" = "global"
"source-code" = "https://github.com/ministryofjustice/staff-device-shared-services-infrastructure"
}
}
module "label_staff" {
source = "cloudposse/label/null"
version = "0.25.0"
namespace = "staff"
stage = terraform.workspace
name = "infrastructure"
delimiter = "-"
tags = {
"business-unit" = "MoJO"
"application" = "pttp-shared-services-infrastructure",
"is-production" = tostring(var.is-production),
"owner" = var.owner-email
"environment-name" = "global"
"source-code" = "https://github.com/ministryofjustice/staff-device-shared-services-infrastructure"
}
}
module "label_github_teams" {
source = "cloudposse/label/null"
version = "0.25.0"
namespace = "staff"
stage = terraform.workspace
name = "technology-services"
delimiter = "-"
tags = {
"business-unit" = "MoJO"
"application" = "pttp-shared-services-infrastructure",
"is-production" = tostring(var.is-production),
"owner" = var.owner-email
"environment-name" = "global"
"source-code" = "https://github.com/ministryofjustice/staff-device-shared-services-infrastructure"
}
}
module "label_mojo_aws_github" {
source = "cloudposse/label/null"
version = "0.25.0"
namespace = "mojo"
stage = terraform.workspace
name = "aws-github"
delimiter = "-"
tags = {
"business-unit" = "MoJO"
"application" = "pttp-shared-services-infrastructure",
"is-production" = tostring(var.is-production),
"owner" = var.owner-email
"environment-name" = "global"
"source-code" = "https://github.com/ministryofjustice/staff-device-shared-services-infrastructure"
}
}