Skip to content

Commit

Permalink
apply allow_rebase_merge
Browse files Browse the repository at this point in the history
  • Loading branch information
tim-smart committed Jan 16, 2024
1 parent 055b172 commit 8509940
Showing 1 changed file with 12 additions and 11 deletions.
23 changes: 12 additions & 11 deletions terraform/github/repository.tf
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
module "github_repository" {
source = "../modules/github_repository"
for_each = var.repositories
name = each.key
description = each.value.description
topics = each.value.topics
homepage_url = each.value.homepage_url
visibility = each.value.visibility
collaborators = each.value.collaborators
pages = each.value.pages
has_discussions = each.value.has_discussions
is_archived = each.value.is_archived
source = "../modules/github_repository"
for_each = var.repositories
name = each.key
description = each.value.description
topics = each.value.topics
homepage_url = each.value.homepage_url
visibility = each.value.visibility
collaborators = each.value.collaborators
pages = each.value.pages
has_discussions = each.value.has_discussions
is_archived = each.value.is_archived
allow_rebase_merge = each.value.allow_rebase_merge
}

0 comments on commit 8509940

Please sign in to comment.