-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathecr.tf
39 lines (34 loc) · 917 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
data "aws_ecr_image" "lambda_container" {
repository_name = local.ecr_repository_name
image_tag = local.ecr_image_tag
depends_on = [
null_resource.build_and_push_lambda_container_image
]
}
resource "aws_ecr_repository" "lambda_container" {
name = local.ecr_repository_name
image_tag_mutability = "MUTABLE"
image_scanning_configuration {
scan_on_push = true
}
}
resource "aws_ecr_lifecycle_policy" "lambda_container" {
repository = aws_ecr_repository.lambda_container.name
policy = jsonencode({
"rules" : [
{
"rulePriority" : 1,
"description" : "Untagged images older than 1 days",
"selection" : {
"tagStatus" : "untagged",
"countType" : "sinceImagePushed",
"countUnit" : "days",
"countNumber" : 1
},
"action" : {
"type" : "expire"
}
}
]
})
}