Skip to content

Commit

Permalink
fix: Use CamelCase on default var of resource
Browse files Browse the repository at this point in the history
  • Loading branch information
cauealvesbraz committed Oct 25, 2022
1 parent f3d254e commit 8bfe56c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Terraform module to create AWS ECR resources.
- Tag image mutability to `IMMUTABLE`.
- Scanning image on push with `BASIC` mode.
- Encryption type with `AES256`.
- Always having a tag called `managed-by` with value `terraform`
- Always having a tag called `ManagedBy` with value `Terraform`

## Usage

Expand Down
2 changes: 1 addition & 1 deletion main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ resource "aws_ecr_repository" "this" {

tags = merge(
var.tags, {
"managed-by" : "terraform"
"ManagedBy" : "Terraform"
}
)
}

0 comments on commit 8bfe56c

Please sign in to comment.