Skip to content

Commit

Permalink
Change role_name output (#6)
Browse files Browse the repository at this point in the history
  • Loading branch information
aknysh authored Jan 15, 2018
1 parent bdf0bdf commit 168c499
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,11 +44,11 @@ module "ecr" {

## Outputs

| Name | Description |
| Name | Description |
|:-------------------:|:---------------------------------------------------------------------------------------:|
| `registry_id` | ID of the created AWS Container Registry |
| `registry_url` | URL to the created AWS Container Registry |
| `role_name` | (Optional) The name of the newly created IAM role that has access to the registry |
| `registry_id` | ID of the created AWS Container Registry |
| `registry_url` | URL to the created AWS Container Registry |
| `role_name` | (Optional) The name of the newly created IAM role that has access to the registry |


## License
Expand Down
2 changes: 1 addition & 1 deletion output.tf
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@ output "repository_name" {
}

output "role_name" {
value = "${aws_iam_role.default.name}"
value = "${join("", aws_iam_role.default.*.name)}"
}

0 comments on commit 168c499

Please sign in to comment.