-
Notifications
You must be signed in to change notification settings - Fork 2
/
ecr.tf
34 lines (26 loc) · 873 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
resource "aws_ecr_repository" "fluent_bit_chart" {
name = "${module.generator.prefix}-chart-fluent-bit"
image_tag_mutability = "IMMUTABLE"
image_scanning_configuration {
scan_on_push = false
}
tags = module.generator.common_tags
}
resource "aws_ecr_repository" "external_snapshotter_chart" {
name = "${module.generator.prefix}-chart-external-snapshotter"
image_tag_mutability = "IMMUTABLE"
image_scanning_configuration {
scan_on_push = false
}
tags = module.generator.common_tags
}
resource "aws_ecr_repository" "cid_checker" {
count = local.is_prod_envs
name = "${module.generator.prefix}-cid-checker"
image_tag_mutability = "MUTABLE"
force_delete = true
image_scanning_configuration {
scan_on_push = false
}
tags = module.generator.common_tags
}