-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathvariables.tf
61 lines (48 loc) · 1.35 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
55
56
57
58
59
60
61
variable "project_name" {
type = string
}
variable "build_timeout" {
description = "The time to wait for a CodeBuild to complete before timing out in minutes (default: 5)"
default = "5"
}
variable "build_compute_type" {
description = "The build instance type for CodeBuild (default: BUILD_GENERAL1_SMALL)"
default = "BUILD_GENERAL1_SMALL"
}
# https://docs.aws.amazon.com/codebuild/latest/userguide/build-env-ref-available.html
variable "build_image" {
description = "The build image for CodeBuild to use"
default = "aws/codebuild/standard:5.0"
}
variable "build_privileged_override" {
description = "If you want to run Docker in Docker, set this to true"
default = "true"
}
variable "buildspec_tf_linters" {
default = "cicd/buildspec_tf_linters.yml"
}
variable "codebuild_image" {
default = "aws/codebuild/standard:5.0"
}
variable "codebuild_checkov_image" {
default = "aws/codebuild/standard:5.0"
}
variable "buildspec_checkov" {
default = "cicd/buildspec_checkov.yml"
}
variable "repo_default_branch" {
type = string
default = "main"
}
variable "buildspec_tf_plan" {
default = "cicd/buildspec_tf_plan.yml"
}
variable "buildspec_tf_apply" {
default = "cicd/buildspec_tf_apply.yml"
}
variable "buildspec_test" {
default = "cicd/buildspec_test.yml"
}
variable "run_tf_static_checks_parallely" {
default = false
}