Skip to content

Commit

Permalink
style: Terraform formatting changes [skip ci] [skip test]
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Mar 25, 2025
1 parent aa04df2 commit 280bd0e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions github_deploy_keys.tf
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
// This file implements GitHub Deploy Keys functionality for the repository

resource "github_repository_deploy_key" "deploy_key" {
for_each = { for k, v in var.deploy_keys : k => v }
for_each = { for k, v in var.deploy_keys : k => v }

title = each.value.title
repository = local.github_repo.name
key = each.value.key
read_only = each.value.read_only

depends_on = [
github_repository.repo
]
Expand Down

0 comments on commit 280bd0e

Please sign in to comment.