You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
description="A list of maps, that contain both the key 'name' and the key 'value' to be used as additional environment variables for the build."
22
25
}
23
26
27
+
variable"enabled" {
28
+
type="string"
29
+
default="true"
30
+
description="A boolean to enable/disable resource creation."
31
+
}
32
+
24
33
variable"cache_enabled" {
34
+
type="string"
25
35
default="true"
26
36
description="If cache_enabled is true, create an S3 bucket for storing codebuild cache inside"
27
37
}
28
38
29
39
variable"cache_expiration_days" {
40
+
type="string"
30
41
default="7"
31
42
description="How many days should the build cache be kept."
32
43
}
33
44
34
45
variable"cache_bucket_suffix_enabled" {
46
+
type="string"
35
47
default="true"
36
48
description="The cache bucket generates a random 13 character string to generate a unique bucket name. If set to false it uses terraform-null-label's id value"
37
49
}
38
50
39
51
variable"build_image" {
52
+
type="string"
40
53
default="aws/codebuild/docker:1.12.1"
41
54
description="Docker image for build environment, e.g. 'aws/codebuild/docker:1.12.1' or 'aws/codebuild/eb-nodejs-6.10.0-amazonlinux-64:4.0.0'. For more info: http://docs.aws.amazon.com/codebuild/latest/userguide/build-env-ref.html"
42
55
}
43
56
44
57
variable"build_compute_type" {
58
+
type="string"
45
59
default="BUILD_GENERAL1_SMALL"
46
60
}
47
61
48
62
variable"buildspec" {
63
+
type="string"
49
64
default=""
50
65
description="Optional buildspec declaration to use for building the project"
51
66
}
@@ -66,11 +81,13 @@ variable "tags" {
66
81
}
67
82
68
83
variable"privileged_mode" {
84
+
type="string"
69
85
default="false"
70
86
description="(Optional) If set to true, enables running the Docker daemon inside a Docker container on the CodeBuild instance. Used when building Docker images"
0 commit comments