diff --git a/README.md b/README.md index 2e7d1e4..bd9952b 100644 --- a/README.md +++ b/README.md @@ -1,10 +1,10 @@ # About aws-ecr-copy-images -This module will create ECR repositories with the prefix of _application\_name_ for the list of -repositories in \_application\_list\_. This allows for a project to upload their images into -/{application\_name}/{sub\_app}/\_image\_:\_tag\_. +This module will create ECR repositories with the prefix of {application\_name} for the list of +repositories in {application\_list}. This allows for a project to upload their images into +/{application\_name}/{sub\_app}/{image}:{tag}. Also, if provided a list of source image configurations, it will download them from their location -and upload them to the prefix of _application\_name\_ followed by the \_name_ in the `image_config` +and upload them to the prefix of {application\_name} followed by the {name} in the `image_config` object. # Usage diff --git a/main.tf b/main.tf index cf4e1d9..6087a1a 100644 --- a/main.tf +++ b/main.tf @@ -1,11 +1,11 @@ /* * # About aws-ecr-copy-images -* This module will create ECR repositories with the prefix of _application_name_ for the list of -* repositories in _application_list_. This allows for a project to upload their images into -* /{application_name}/{sub_app}/_image_:_tag_. +* This module will create ECR repositories with the prefix of {application_name} for the list of +* repositories in {application_list}. This allows for a project to upload their images into +* /{application_name}/{sub_app}/{image}:{tag}. * * Also, if provided a list of source image configurations, it will download them from their location -* and upload them to the prefix of _application_name_ followed by the _name_ in the `image_config` +* and upload them to the prefix of {application_name} followed by the {name} in the `image_config` * object. * * # Usage