diff --git a/README.md b/README.md index 246678b..3d85b17 100644 --- a/README.md +++ b/README.md @@ -79,6 +79,7 @@ Developer NOTE: We should automate this configuration. | Name | Description | |------|-------------| +| [image\_config](#output\_image\_config) | Map of image references to their full source paths | | [module\_name](#output\_module\_name) | The name of this module. | | [module\_version](#output\_module\_version) | The version of this module. | | [tempo\_internal\_endpoint](#output\_tempo\_internal\_endpoint) | internal endpoint for tempo | diff --git a/copy_images.tf b/copy_images.tf index c764b39..9d8b534 100644 --- a/copy_images.tf +++ b/copy_images.tf @@ -16,7 +16,7 @@ locals { } module "images" { - source = "git::https://github.e.it.census.gov/terraform-modules/aws-ecr-copy-images.git/?ref=tf-upgrade" + source = "git::https://github.e.it.census.gov/terraform-modules/aws-ecr-copy-images.git?ref=tf-upgrade" profile = var.profile application_name = var.cluster_name @@ -49,3 +49,8 @@ provider "aws" { profile = var.eecr_info.profile region = var.eecr_info.region } + +output "image_config" { + description = "Map of image references to their full source paths" + value = local.image_config +}