-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
50 lines (42 loc) · 1.3 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
variable "customization_name" {
description = "The name of the customization"
type = string
}
variable "codepipeline_s3_bucket_name" {
description = "The name of the S3 bucket to store the CodePipeline artifacts. If not given one will be created."
type = string
default = ""
}
variable "key_arn" {
description = "The ARN of the KMS key to use for encrypting the CodePipeline artifacts. If not given one will be created."
type = string
default = ""
}
variable "customizations_repo_name" {
description = "The name of the repository containing the customizations"
type = string
}
variable "customizations_repo_branch" {
description = "The branch of the repository containing the customizations"
type = string
}
variable "global_codebuild_timeout" {
description = "The timeout in minutes for the CodeBuild project"
type = number
default = 300
}
variable "aft_kms_key_alias" {
description = "The alias of the KMS key used by AFT."
type = string
default = "alias/aft"
}
variable "codestar_connection_arn" {
description = "The ARN of the CodeStar connection"
type = string
default = ""
}
variable "log_retention_days" {
description = "The number of days to retain logs"
type = number
default = 7
}