generated from ministryofjustice/template-repository
-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
54 lines (45 loc) · 1.28 KB
/
variables.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
variable "namespace_name" {
description = "Name of the Kubernetes namespace"
type = string
}
variable "environment" {
description = "Environment name (e.g., development, staging, production)"
type = string
}
variable "is_production" {
description = "Boolean flag to indicate if this is a production environment"
type = bool
}
variable "business_unit" {
description = "Business unit responsible for the service"
type = string
default = "Platforms"
}
variable "slack_channel" {
description = "Slack channel for notifications"
type = string
default = "#operations-engieering"
}
variable "application" {
description = "Application name"
type = string
}
variable "owner" {
description = "Email or contact info of the application owner"
type = string
default = "operations-engineering@digital.justice.gov.uk"
}
variable "source_code" {
description = "URL of the source code repository"
type = string
}
variable "team_name" {
description = "Development team responsible for the service"
type = string
default = "Operations Engineering"
}
variable "rbac_group" {
description = "Group name for RBAC role bindings"
type = string
default = "github:operations-engineering"
}