-
Notifications
You must be signed in to change notification settings - Fork 0
/
ecr.tf
48 lines (45 loc) · 999 Bytes
/
ecr.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
resource "aws_ecr_repository" "default" {
name = var.app_name
image_tag_mutability="MUTABLE"
force_delete = true
image_scanning_configuration{
scan_on_push=true
}
tags = {
Name = var.app_name
}
}
resource "aws_ecr_lifecycle_policy" "repo-policy" {
repository = aws_ecr_repository.default.name
policy = <<EOF
{
"rules": [
{
"rulePriority": 1,
"description": "Keep image deployed with tag latest",
"selection": {
"tagStatus": "tagged",
"tagPrefixList": ["latest"],
"countType": "imageCountMoreThan",
"countNumber": 1
},
"action": {
"type": "expire"
}
},
{
"rulePriority": 2,
"description": "Keep last 2 any images",
"selection": {
"tagStatus": "any",
"countType": "imageCountMoreThan",
"countNumber": 2
},
"action": {
"type": "expire"
}
}
]
}
EOF
}