Skip to content

Commit

Permalink
fix: Correct typo credentials_arn -> credential_arn (#36)
Browse files Browse the repository at this point in the history
  • Loading branch information
bryantbiggs authored Apr 3, 2024
1 parent c587836 commit b5bd6a4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
repos:
- repo: https://github.com/antonbabenko/pre-commit-terraform
rev: v1.88.3
rev: v1.88.4
hooks:
- id: terraform_fmt
- id: terraform_wrapper_module_for_each
Expand Down
2 changes: 1 addition & 1 deletion main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -270,7 +270,7 @@ resource "aws_ecr_pull_through_cache_rule" "this" {

ecr_repository_prefix = each.value.ecr_repository_prefix
upstream_registry_url = each.value.upstream_registry_url
credential_arn = try(each.value.credentials_arn, null)
credential_arn = try(each.value.credential_arn, null)
}

################################################################################
Expand Down

0 comments on commit b5bd6a4

Please sign in to comment.