-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathvariables.tf
82 lines (67 loc) · 1.57 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
// SPDX-License-Identifier: MIT-0
variable "pipeline_name" {
type = string
}
variable "repo" {
description = "source repo name"
type = string
}
// optional
variable "access_logging_bucket" {
description = "s3 server access logging bucket arn"
type = string
default = null
}
variable "artifact_retention" {
description = "s3 artifact bucket retention, in days"
type = number
default = 90
}
variable "branch" {
description = "branch to source"
type = string
default = "main"
}
variable "build_timeout" {
description = "CodeBuild project build timeout"
type = number
default = 10
}
variable "checkov_skip" {
description = "list of checkov checks to skip"
type = list(string)
default = [""]
}
variable "checkov_version" {
type = string
default = "latest"
}
variable "codebuild_policy" {
description = "replaces CodeBuild's AWSAdministratorAccess IAM policy"
type = string
default = null
}
variable "connection" {
description = "arn of the CodeConnection"
type = string
default = null
}
variable "detect_changes" {
description = "allows third-party servicesm like GitHub to invoke the pipeline"
type = string
default = false
}
variable "kms_key" {
description = "AWS KMS key ARN"
type = string
default = null
}
variable "terraform_version" {
type = string
default = "latest"
}
variable "tflint_version" {
type = string
default = "0.33.0"
}