-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathvariables.tf
47 lines (39 loc) · 1.09 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
variable "accounts_ro" {
description = "AWS accounts to provide with readonly access to the ECR"
type = "list"
default = []
}
variable "accounts_rw" {
description = "AWS accounts to provide with full access to the ECR"
type = "list"
default = []
}
variable "enabled" {
description = "Set to false to prevent the module from creating any resources"
default = true
}
variable "image_tag_mutability" {
description = "The tag mutability setting for the repository. Must be one of: MUTABLE or IMMUTABLE. Defaults to MUTABLE"
default = "MUTABLE"
}
variable "max_image_age" {
description = "Max container image age"
default = "0"
}
variable "max_image_age_tag_prefix" {
description = "Tag prefix list for max image age rule"
type = "list"
default = []
}
variable "max_image_count" {
description = "Max container images to keep"
default = "500"
}
variable "scan_on_push" {
description = "Vulnerabiliy scan images automatically on push"
default = false
}
variable "use_fullname" {
description = ""
default = "true"
}