Skip to content

Commit b5bd6a4

Browse files
authored
fix: Correct typo credentials_arn -> credential_arn (#36)
1 parent c587836 commit b5bd6a4

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
repos:
22
- repo: https://github.com/antonbabenko/pre-commit-terraform
3-
rev: v1.88.3
3+
rev: v1.88.4
44
hooks:
55
- id: terraform_fmt
66
- id: terraform_wrapper_module_for_each

main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -270,7 +270,7 @@ resource "aws_ecr_pull_through_cache_rule" "this" {
270270

271271
ecr_repository_prefix = each.value.ecr_repository_prefix
272272
upstream_registry_url = each.value.upstream_registry_url
273-
credential_arn = try(each.value.credentials_arn, null)
273+
credential_arn = try(each.value.credential_arn, null)
274274
}
275275

276276
################################################################################

0 commit comments

Comments
 (0)