Skip to content

Commit

Permalink
[AUTO]Format code
Browse files Browse the repository at this point in the history
Files changed:
M	terraform/production/repositories.tfvars
M	terraform/variables.tf
  • Loading branch information
ryancheley committed Aug 17, 2024
1 parent de1386b commit e2da756
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
20 changes: 10 additions & 10 deletions terraform/production/repositories.tfvars
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ repositories = {
description = "A Special Repository."
enable_branch_protection = false

topics = []
push_allowances = []
topics = []
push_allowances = []
is_django_commons_repo = true
}

Expand All @@ -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
}

Expand Down
2 changes: 1 addition & 1 deletion terraform/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit e2da756

Please sign in to comment.