diff --git a/terraform/production/repositories.tfvars b/terraform/production/repositories.tfvars index abdcc6f..43a0910 100644 --- a/terraform/production/repositories.tfvars +++ b/terraform/production/repositories.tfvars @@ -6,8 +6,8 @@ repositories = { description = "A Special Repository." enable_branch_protection = false - topics = [] - push_allowances = [] + topics = [] + push_allowances = [] is_django_commons_repo = true } @@ -19,17 +19,17 @@ repositories = { allow_squash_merge = true topics = [] push_allowances = [] - is_django_commons_repo = true + is_django_commons_repo = true } "membership" = { - description = "Membership repository for the django-commons organization." - visibility = "public" - allow_merge_commit = true - allow_rebase_merge = true - allow_squash_merge = true - topics = [] - push_allowances = [] + description = "Membership repository for the django-commons organization." + visibility = "public" + allow_merge_commit = true + allow_rebase_merge = true + allow_squash_merge = true + topics = [] + push_allowances = [] is_django_commons_repo = true } diff --git a/terraform/variables.tf b/terraform/variables.tf index 1be2ecd..00cd00b 100644 --- a/terraform/variables.tf +++ b/terraform/variables.tf @@ -39,7 +39,7 @@ variable "repositories" { template = optional(string) topics = optional(list(string)) visibility = optional(string, "public") - is_django_commons_repo = optional(bool, false) # Do not create teams for repository + is_django_commons_repo = optional(bool, false) # Do not create teams for repository admins = optional(set(string), []) # Members of the repository's admin and repository teams. Have admin permissions committers = optional(set(string), []) # Members of the repository's committers and repository teams. Have write permissions