-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
81 lines (67 loc) · 1.81 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
variable "env" {
description = "Deployment environment"
type = string
}
variable "repository_branch" {
description = "Repository branch to connect to"
type = string
}
variable "repository_owner" {
description = "GitHub repository owner"
type = string
}
variable "repository_name" {
description = "GitHub repository name"
type = string
}
variable "artifacts_bucket_name" {
description = "S3 Bucket for storing artifacts"
type = string
}
variable "codepipeline_name" {
description = "Codepipeline name"
type = string
}
variable "codebuild_name" {
description = "Name of the Codebuild"
type = string
}
variable "codebuild_description" {
description = "Description of the Codebuild"
type = string
default = ""
}
variable "codestar_arn" {
description = "Codestar ARN for connecting to Github"
type = string
}
variable "codebuild_compute_type" {
description = "The Compute Type of the Codebuild Container"
type = string
default = "BUILD_GENERAL1_MEDIUM"
}
variable "codebuild_buildspec_path" {
description = "buildspec.yml location in the artifact"
type = string
default = "buildspec.yml"
}
variable "codebuild_image" {
description = "Codebuild Image that will be use"
type = string
default = "aws/codebuild/standard:5.0"
}
variable "codepipeline_additional_iam" {
description = "Additional IAM Policy Document needed by Codepipeline"
type = list(any)
default = []
}
variable "codebuild_additional_iam" {
description = "Additional IAM Policy Document for Codebuild"
type = list(any)
default = []
}
variable "codepipeline_additional_stage" {
description = "Additional IAM Policy Document for Codepipeline"
type = list(any)
default = []
}