forked from genstackio/terraform-aws-codepipeline
-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
68 lines (61 loc) · 1.29 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
variable "env" {
type = string
default = "dev"
}
variable "name" {
type = string
}
variable "stages" {
type = list(object({
type = string
name = string
provider = string
config = map(string)
inputs = list(string)
outputs = list(string)
}))
default = []
}
variable "policy_statements" {
type = list(
object({
actions = list(string),
resources = list(string),
effect = string
})
)
default = []
}
variable "slack_notifications_enabled" {
description = "Notification slack or not"
type = bool
}
variable "slack-notification-rule-codepipeline-name" {
description = "Name of the codepipeline rule"
type = string
default = ""
}
variable "alerts_ci_slack_notifications_arn" {
description = "sns slack address"
type = string
default = ""
}
variable "alerts_ci_slack_notifications_type" {
description = "sns slack address"
type = string
default = "SNS"
}
variable "create_s3_artifact" {
description = "create or not an S3 Artifact"
type = bool
default = true
}
variable "s3_artifact_Id" {
description = "s3 artifact Id"
type = string
default = ""
}
variable "role_pipeline_name" {
description = "pipeline role to use"
type = string
}