-
-
Notifications
You must be signed in to change notification settings - Fork 134
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
enhancement for multiple repo creation (#41)
* enhancement for multiple repo creation * add arn output * Updated README.md * Executed 'terraform fmt' * Apply suggestions from code review Fix format of documents & codes Co-Authored-By: Andriy Knysh <aknysh@users.noreply.github.com> * Apply suggestions from aknysh * Apply suggestions from aknysh Co-Authored-By: Andriy Knysh <aknysh@users.noreply.github.com> * Updated README.md * Executed 'terraform fmt' Co-authored-by: Maxim Mironenko <simixido@gmail.com> Co-authored-by: actions-bot <58130806+actions-bot@users.noreply.github.com> Co-authored-by: Andriy Knysh <aknysh@users.noreply.github.com>
- Loading branch information
1 parent
e99335b
commit 2868a6d
Showing
7 changed files
with
74 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
provider "aws" { | ||
region = "eu-west-1" | ||
} | ||
|
||
module "ecr" { | ||
source = "../../" | ||
namespace = "eg" | ||
stage = "dev" | ||
name = "app" | ||
use_fullname = false | ||
list_image = ["redis", "nginx"] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
output "repository_id_map" { | ||
value = module.ecr.repository_id_map | ||
description = "Repository id map" | ||
} | ||
output "repository_url_map" { | ||
value = module.ecr.repository_url_map | ||
description = "Repository url map" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters