-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathvariables.tf
61 lines (47 loc) · 932 Bytes
/
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
55
56
57
58
59
60
61
variable "git_repository_name" {}
variable "get_global_configuration" {}
variable "is_build_only" {
type = bool
default = false
}
variable "terraform_policy" {
default = false
}
variable "build_timeout" {
default = 40
}
variable "concurrent_build_limit_default" {
default = 10
}
variable "concurrent_build_limit" {
default = 1
}
variable "is_build_concurrent" {
type = bool
default = true
}
variable "environment_compute_type" {
default = "BUILD_GENERAL1_SMALL"
}
variable "codebuild_image" {
default = "aws/codebuild/standard:6.0"
}
variable "enable_notifications" {
description = "Enable codebuild notifications via SNS"
default = true
}
variable "badge_enabled" {
default = true
}
variable "privileged_mode" {
type = bool
default = false
}
variable "specific_branch" {
type = string
default = null
}
variable "specific_envs" {
type = map(any)
default = {}
}