diff --git a/CHANGELOG.md b/CHANGELOG.md index 90c5a81..fab04d0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -16,3 +16,6 @@ * 2.0.1 -- 2023-07-24 - update copy_image.sh to retry the copy until successful + +* 2.0.2 -- 2023-08-29 + - add repository_urls output (per app_name => URL) diff --git a/README.md b/README.md index 784f7e2..7c43ea8 100644 --- a/README.md +++ b/README.md @@ -142,3 +142,4 @@ No modules. | [availability\_zone\_names](#output\_availability\_zone\_names) | VPC Availability zone name list (3) | | [availability\_zone\_suffixes](#output\_availability\_zone\_suffixes) | VPC Availability zone suffix list (3) | | [images](#output\_images) | Final full merge of images with extra details | +| [repository\_urls](#output\_repository\_urls) | ECR Respository URLs | diff --git a/outputs.tf b/outputs.tf index a1f7ad2..ab733d1 100644 --- a/outputs.tf +++ b/outputs.tf @@ -2,3 +2,8 @@ output "images" { description = "Final full merge of images with extra details" value = local.images } + +output "repository_urls" { + description = "ECR Respository URLs" + value = { for k, v in aws_ecr_repository.apps_repos : k => v.repository_url } +} diff --git a/version.tf b/version.tf index cc676d3..fed7410 100644 --- a/version.tf +++ b/version.tf @@ -1,4 +1,4 @@ locals { _module_name = "aws-ecr-copy-images" - _module_version = "2.0.1" + _module_version = "2.0.2" }