From 85099409f213a16bd624cff93f2939b330266fb8 Mon Sep 17 00:00:00 2001 From: Tim Date: Tue, 16 Jan 2024 13:47:18 +1300 Subject: [PATCH] apply allow_rebase_merge --- terraform/github/repository.tf | 23 ++++++++++++----------- 1 file changed, 12 insertions(+), 11 deletions(-) diff --git a/terraform/github/repository.tf b/terraform/github/repository.tf index 6fb2bdafe..b77dac50c 100644 --- a/terraform/github/repository.tf +++ b/terraform/github/repository.tf @@ -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 }