From 7f86f6778eda45f6861d072de844612e597dd13b Mon Sep 17 00:00:00 2001 From: Daniel M Date: Thu, 18 Dec 2025 15:54:47 -0500 Subject: [PATCH 01/17] separate modules --- terraform/{ => members}/README.md | 0 terraform/{ => members}/backend.tf | 0 terraform/{ => members}/locals.tf | 0 terraform/{ => members}/main.tf | 0 terraform/{ => members}/resource-designers.tf | 0 terraform/{ => members}/resources-org.tf | 0 terraform/{ => members}/tfstate.json | 0 terraform/members/variables.tf | 45 + terraform/repos/README.md | 101 + terraform/repos/backend.tf | 9 + terraform/repos/locals.tf | 10 + terraform/repos/main.tf | 61 + terraform/repos/resource-designers.tf | 22 + .../{ => repos}/resources-collaborators.tf | 0 .../{ => repos}/resources-environments.tf | 0 .../{ => repos}/resources-repo-admin-teams.tf | 0 .../resources-repo-committer-teams.tf | 0 terraform/{ => repos}/resources-repo-teams.tf | 0 terraform/{ => repos}/resources-repos.tf | 0 terraform/repos/tfstate.json | 7726 +++++++++++++++++ terraform/{ => repos}/variables.tf | 18 - 21 files changed, 7974 insertions(+), 18 deletions(-) rename terraform/{ => members}/README.md (100%) rename terraform/{ => members}/backend.tf (100%) rename terraform/{ => members}/locals.tf (100%) rename terraform/{ => members}/main.tf (100%) rename terraform/{ => members}/resource-designers.tf (100%) rename terraform/{ => members}/resources-org.tf (100%) rename terraform/{ => members}/tfstate.json (100%) create mode 100644 terraform/members/variables.tf create mode 100644 terraform/repos/README.md create mode 100644 terraform/repos/backend.tf create mode 100644 terraform/repos/locals.tf create mode 100644 terraform/repos/main.tf create mode 100644 terraform/repos/resource-designers.tf rename terraform/{ => repos}/resources-collaborators.tf (100%) rename terraform/{ => repos}/resources-environments.tf (100%) rename terraform/{ => repos}/resources-repo-admin-teams.tf (100%) rename terraform/{ => repos}/resources-repo-committer-teams.tf (100%) rename terraform/{ => repos}/resources-repo-teams.tf (100%) rename terraform/{ => repos}/resources-repos.tf (100%) create mode 100644 terraform/repos/tfstate.json rename terraform/{ => repos}/variables.tf (84%) diff --git a/terraform/README.md b/terraform/members/README.md similarity index 100% rename from terraform/README.md rename to terraform/members/README.md diff --git a/terraform/backend.tf b/terraform/members/backend.tf similarity index 100% rename from terraform/backend.tf rename to terraform/members/backend.tf diff --git a/terraform/locals.tf b/terraform/members/locals.tf similarity index 100% rename from terraform/locals.tf rename to terraform/members/locals.tf diff --git a/terraform/main.tf b/terraform/members/main.tf similarity index 100% rename from terraform/main.tf rename to terraform/members/main.tf diff --git a/terraform/resource-designers.tf b/terraform/members/resource-designers.tf similarity index 100% rename from terraform/resource-designers.tf rename to terraform/members/resource-designers.tf diff --git a/terraform/resources-org.tf b/terraform/members/resources-org.tf similarity index 100% rename from terraform/resources-org.tf rename to terraform/members/resources-org.tf diff --git a/terraform/tfstate.json b/terraform/members/tfstate.json similarity index 100% rename from terraform/tfstate.json rename to terraform/members/tfstate.json diff --git a/terraform/members/variables.tf b/terraform/members/variables.tf new file mode 100644 index 0000000..7257ab5 --- /dev/null +++ b/terraform/members/variables.tf @@ -0,0 +1,45 @@ +# Input Variables +# https://www.terraform.io/language/values/variables + +variable "admins" { + description = "A set of admins to add to the organization" + type = set(string) +} + +variable "github_token" { + description = "The GitHub token used for managing the organization" + type = string + sensitive = true +} + +variable "members" { + description = "A set of members to add to the organization" + type = set(string) + default = [] +} + +variable "designers" { + description = "A set of designers to add to the organization" + type = set(string) + default = [] +} + +variable "organization_teams" { + description = "Map of Django Commons organization teams to manage" + type = map(object({ + description = string + maintainers = optional(set(string), []) + members = optional(set(string), []) + permission = optional(string, null) + privacy = optional(string, "closed") + review_request_delegation = optional(bool, false) + })) +} + +variable "organization_secrets" { + description = "Map of secrets to add to the organization" + type = map(object({ + description = string + visibility = string + })) +} diff --git a/terraform/repos/README.md b/terraform/repos/README.md new file mode 100644 index 0000000..54d39ce --- /dev/null +++ b/terraform/repos/README.md @@ -0,0 +1,101 @@ +GitHub Organization as Terraform +================================ + +# Structure + +- `variables.tf` - define variable types (classes?), notice there is `variable "repositories" {...` there which has a + few variables marked as optional with default values. Why I chose to have `has_discussions` as a repo variable + while `has_issues` as a constant - I am embarrassed to say I don't have a better answer than laziness :smile: - I just + figured if this is the path we want to take, we can continue adding to it. +- `production/*.tfvars` - instances, should strictly follow the types in `variables.tf`. +- `main.tf` - build configuration based on instances values from `production.tfvars` (or, if not defined explicitly, + then default value from `variables.tf`) +- `resources-*.tf` - define resources, like `github_repository`, `github_team`, etc. +- `tfstate.json` - Current state file, pulled using `terraform import ..` + +# Why Terraform? + +We can define our "desired/default" repository configuration, and within this configuration: + +- What is enforced from day one (i.e., constant in `resource "github_repository" "this"`) +- What is recommended but can be changed by users (i.e., variable with a default value in `variables.tf` that can be + updated in `production.tfvars`) => Note this can also help us review outliers, you can see all repos which have + non-default values in the `production.tfvars` file. +- What is determined by users (i.e., variables without default value, like `description`) +- What is not configured in the infra-as-code (currently, for example, repo-labels). + +# What changes can be made + +All changes should be made in `production/*.tfvars`: + +- Add/Remove organization admins by editing the `admins` list. +- Add/Remove organization members by editing the `members` list. +- Add/Remove/Update repositories by editing the `repositories`. A repository can have the following variables: + ```terraform + repositories = { + "repo-name" = { + description = "repo description" + homepage_url = "" # optional, default is "" + allow_auto_merge = false # optional, default is false + allow_merge_commit = false # optional, default is false + allow_rebase_merge = false # optional, default is false + allow_squash_merge = true # optional, default is true + allow_update_branch = true # optional, default is true + delete_branch_on_merge = true # optional, default is true + has_discussions = true # optional, default is true + has_downloads = true # optional, default is true + has_wiki = false # optional, default is false + is_template = false # optional, default is false + push_allowances = [] + template = "" # optional, default is "" + topics = [] + visibility = "public" # optional, default is "public" + is_django_commons_repo = optional(bool, false) # Do not create teams for repository + required_status_checks_contexts = [] # optional, default is [] + admins = [] # Members of the repository's admin and repository teams. Have admin permissions + committers = [] # Members of the repository's committers and repository teams. Have write permissions + members = [] # Members of the repository team. Have triage permissions + } + # ... + } + ``` + +# How to use locally + +You might want to try new settings locally before applying them to the repository automation. +To do so, you can use the following steps: + +1. Clone the repository. +2. From the `terraform/` directory, run `terraform init`. +3. Create a github-token with the necessary permissions on the organization (see [permissions documentation][1]). + - The `repo` permission for full control of private repositories. + - The `admin:org` permission for full control of orgs and teams, read and write org projects + - The `delete_repo` permission to delete repositories + +4. Make changes to `production/*.tfvars` to reflect the desired state (add/update users, repositories, teams, etc.) +5. To see what changes between the current state of the GitHub organization and the plan + run: `terraform plan -var-file=production/org.tfvars -var-file=production/repositories.tfvars -var github_token=...` +6. To apply the changes, + run: `terraform apply -var-file=production/org.tfvars -var-file=production/repositories.tfvars -var github_token=...` + +# Integration with GitHub Actions + +The repository is configured to run `terraform plan` on every new pull-request as well as an update to a pull-request +and list the expected changes as a comment on the pull-request. +Once the pull-request is merged to the `main` branch, `terraform apply` applies the changes to the GitHub organization, and +the updated current state is committed to the `main` branch. +To achieve this, the workflows use `TERRAFORM_MANAGEMENT_GITHUB_TOKEN` secret to plan/apply terraform changes. + +`TERRAFORM_MANAGEMENT_GITHUB_TOKEN` is a fine-grained personal access token with permissions the following permissions +required (see documentation [here][2]): + +- The `repo` permission for full control of private repositories +- The `admin:org` permission for full control of orgs and teams, read and write org projects +- The `delete_repo` permission to delete repositories +- Additionally, the token should have permissions to write content to the repository (see, [here][3]) + +[1]: https://developer.hashicorp.com/terraform/tutorials/it-saas/github-user-teams#configure-your-credentials + +[2]: https://developer.hashicorp.com/terraform/tutorials/it-saas/github-user-teams#configure-your-credentials + +[3]: https://registry.terraform.io/providers/integrations/github/latest/docs/resources/repository \ No newline at end of file diff --git a/terraform/repos/backend.tf b/terraform/repos/backend.tf new file mode 100644 index 0000000..a113544 --- /dev/null +++ b/terraform/repos/backend.tf @@ -0,0 +1,9 @@ +# Backend Configuration +# https://www.terraform.io/language/settings/backends/configuration + +terraform { + backend "local" { + path = "tfstate.json" + } + +} diff --git a/terraform/repos/locals.tf b/terraform/repos/locals.tf new file mode 100644 index 0000000..420824d --- /dev/null +++ b/terraform/repos/locals.tf @@ -0,0 +1,10 @@ +# Local Values +# https://www.terraform.io/language/values/locals + +locals { + + project_repositories = { + for repository_key, repository in var.repositories : repository_key => repository + if !repository.is_django_commons_repo + } +} diff --git a/terraform/repos/main.tf b/terraform/repos/main.tf new file mode 100644 index 0000000..041f53b --- /dev/null +++ b/terraform/repos/main.tf @@ -0,0 +1,61 @@ +# Required Providers +# https://www.terraform.io/docs/language/providers/requirements.html#requiring-providers + +terraform { + required_providers { + github = { + source = "integrations/github" + version = "6.9.0" + } + } +} + +# Github Provider +# https://registry.terraform.io/providers/integrations/github/latest/docs + +provider "github" { + owner = "django-commons" + token = var.github_token +} + + +# Random Password Resource +# https://registry.terraform.io/providers/hashicorp/random/latest/docs/resources/password + +############# GitHub Organization Secret Resource ############# + +# This is necessary to set a GitHub org secret +# resource "random_password" "this" { +# for_each = var.organization_secrets +# length = 32 +# special = false +# +# keepers = { +# rotation_time = time_rotating.this.rotation_rfc3339 +# } +# } + +# Time Rotating Resource +# https://registry.terraform.io/providers/hashicorp/time/latest/docs/resources/rotating + +# This is necessary to use random_password, which is needed +# to set a GitHub org secret +# resource "time_rotating" "this" { +# rotation_days = 5 +# } + +# Github Actions Secret Resource +# https://registry.terraform.io/providers/integrations/github/latest/docs/resources/actions_organization_secret + +# resource "github_actions_organization_secret" "this" { +# +# # Ensure GitHub Actions secrets are encrypted +# # checkov:skip=CKV_GIT_4: We are passing the secret from the random_password resource which is sensitive by default +# # and not checking in any plain text values. State is always secured. +# +# for_each = var.organization_secrets +# +# plaintext_value = random_password.this[each.key].result +# secret_name = each.key +# visibility = each.value.visibility +# } diff --git a/terraform/repos/resource-designers.tf b/terraform/repos/resource-designers.tf new file mode 100644 index 0000000..02a51b4 --- /dev/null +++ b/terraform/repos/resource-designers.tf @@ -0,0 +1,22 @@ +# Create the organization teams for Django Commons. +resource "github_team" "org_designers_team" { + name = "Designers" + description = "Django Commons designers" + privacy = "closed" + +} + + +resource "github_team_members" "org_designers_team_members" { + team_id = github_team.org_designers_team.id + + dynamic "members" { + for_each = var.designers + + content { + username = members.value + role = "member" + } + } +} + diff --git a/terraform/resources-collaborators.tf b/terraform/repos/resources-collaborators.tf similarity index 100% rename from terraform/resources-collaborators.tf rename to terraform/repos/resources-collaborators.tf diff --git a/terraform/resources-environments.tf b/terraform/repos/resources-environments.tf similarity index 100% rename from terraform/resources-environments.tf rename to terraform/repos/resources-environments.tf diff --git a/terraform/resources-repo-admin-teams.tf b/terraform/repos/resources-repo-admin-teams.tf similarity index 100% rename from terraform/resources-repo-admin-teams.tf rename to terraform/repos/resources-repo-admin-teams.tf diff --git a/terraform/resources-repo-committer-teams.tf b/terraform/repos/resources-repo-committer-teams.tf similarity index 100% rename from terraform/resources-repo-committer-teams.tf rename to terraform/repos/resources-repo-committer-teams.tf diff --git a/terraform/resources-repo-teams.tf b/terraform/repos/resources-repo-teams.tf similarity index 100% rename from terraform/resources-repo-teams.tf rename to terraform/repos/resources-repo-teams.tf diff --git a/terraform/resources-repos.tf b/terraform/repos/resources-repos.tf similarity index 100% rename from terraform/resources-repos.tf rename to terraform/repos/resources-repos.tf diff --git a/terraform/repos/tfstate.json b/terraform/repos/tfstate.json new file mode 100644 index 0000000..f96e5a9 --- /dev/null +++ b/terraform/repos/tfstate.json @@ -0,0 +1,7726 @@ +{ + "version": 4, + "terraform_version": "1.14.3", + "serial": 778, + "lineage": "425397de-8394-a003-8a6c-bce854d9cc53", + "outputs": { + "invalid_users": { + "value": [], + "type": [ + "list", + "string" + ] + } + }, + "resources": [ + { + "mode": "data", + "type": "github_users", + "name": "users", + "provider": "provider[\"registry.terraform.io/integrations/github\"]", + "instances": [ + { + "schema_version": 0, + "attributes": { + "emails": [ + "me@youngkwang.dev", + "", + "", + "", + "jonathan@stoppani.name", + "wogur981208@gmail.com", + "", + "", + "mogost@aartemyev.ru", + "fernando_cordeiro@live.com", + "", + "", + "", + "", + "", + "", + "", + "", + "zakuijules@live.fr", + "", + "", + "akshay12345vin@gmail.com", + "", + "", + "hello@asherfoa.com", + "", + "jon.c.culver@gmail.com", + "bckohan@gmail.com", + "", + "", + "carlton.gibson@noumenal.es", + "", + "", + "", + "", + "", + "", + "derek.payton@gmail.com", + "felavid@gmail.com", + "elineda@elineda.ovh", + "federicobond@gmail.com", + "fsbraun@gmx.de", + "terzo.giannis@gmail.com", + "scalamoosh@gmail.com", + "", + "", + "", + "wogur981208@gmail.com", + "", + "", + "", + "", + "jnovinger@gmail.com", + "info@johnatanmoran.com", + "", + "josh@joshthomas.dev", + "", + "", + "tom@carrick.eu", + "uriel@corfa.fr", + "me@kytta.dev", + "leogregianin@gmail.com", + "manelclos@gmail.com", + "mk@feinheit.ch", + "", + "mkalioby@mkalioby.com", + "mnazrul.c@gmail.com", + "mzemlickis@gmail.com", + "info@akmiller.co.uk", + "", + "info@okotdaniel.com", + "oliver@andrich.me", + "", + "", + "paolo@melchiorre.org", + "", + "", + "pahwa.priya19@gmail.com", + "mathieu.rampant@gmail.com", + "", + "aman2001mi@gmail.com", + "", + "", + "", + "thibaudcolas@gmail.com", + "schillingt@better-simple.com", + "", + "", + "", + "vinlawz07@gmail.com", + "", + "" + ], + "id": "e228fd6ad0fdac3cb4195558a7556b67", + "logins": [ + "2ykwang", + "Chiemezuo", + "DhavalGojiya", + "FlipperPA", + "GaretJax", + "JaeHyuckSa", + "JohananOppongAmoateng", + "Josephchinedu", + "Mogost", + "MrCordeiro", + "Natim", + "RealOrangeOne", + "Shrikantgiri25", + "SinkuKumar", + "Stormheg", + "TimothyMalahy", + "VeldaKiara", + "Violette-Allotey", + "Zakui", + "adRn-s", + "adamghill", + "akshayvinchurkar", + "amirreza8002", + "andoriyaprashant", + "asherf", + "ayimdomnic", + "bahoo", + "bckohan", + "blingblin-g", + "browniebroke", + "carltongibson", + "cgl", + "clintonb", + "cunla", + "ddabble", + "deronnax", + "devatbosch", + "dmpayton", + "dr-rompecabezas", + "elineda", + "federicobond", + "fsbraun", + "g-nie", + "gav-fyi", + "giovannicimolin", + "input", + "jacklinke", + "JaeHyuckSa", + "jburns6789", + "jcjudkins", + "jezdez", + "jmgutu", + "jnovinger", + "johnatanmoran", + "johnfraney", + "joshuadavidthomas", + "justbackend", + "kevin-brown", + "knyghty", + "korfuri", + "kytta", + "leogregianin", + "manelclos", + "matthiask", + "mihrab34", + "mkalioby", + "mnislam01", + "mzemlickis", + "nanorepublica", + "niltonpimentel02", + "okotdaniel", + "oliverandrich", + "ontowhee", + "p-r-a-v-i-n", + "pauloxnet", + "peterthomassen", + "pfouque", + "priyapahwa", + "rptmat57", + "ryancheley", + "salty-ivy", + "sergei-maertens", + "sobolevn", + "testSchilling", + "thibaudcolas", + "tim-schilling", + "ulgens", + "unmonoqueteclea", + "vacarme", + "vinlawz", + "viscofuse", + "williln" + ], + "node_ids": [ + "MDQ6VXNlcjY4MzI3OTA=", + "MDQ6VXNlcjI5NDcwNTE2", + "MDQ6VXNlcjUzODU2NTU1", + "MDQ6VXNlcjY4MTY0", + "MDQ6VXNlcjg2MjM2", + "U_kgDOBj-X0w", + "MDQ6VXNlcjg4NDExNjE0", + "MDQ6VXNlcjQ3ODUyOTI1", + "MDQ6VXNlcjcyMTk2Mw==", + "MDQ6VXNlcjIwNTk4NTcx", + "MDQ6VXNlcjIyOTQ1Mw==", + "MDQ6VXNlcjY1Mjc0ODk=", + "MDQ6VXNlcjkxMTIyMzE5", + "MDQ6VXNlcjczNzg1Nzk1", + "MDQ6VXNlcjEzODU2NTE1", + "MDQ6VXNlcjUwMjE3Nzgz", + "MDQ6VXNlcjMyNTUyMjk2", + "MDQ6VXNlcjY4ODY2MjQ2", + "MDQ6VXNlcjE3NTQzODE4", + "MDQ6VXNlcjYyOTcxOTk1", + "MDQ6VXNlcjMxNzA0NQ==", + "MDQ6VXNlcjEwNTEwODg5", + "U_kgDOByTH3Q", + "U_kgDOB0B3aQ", + "MDQ6VXNlcjEyNjgwODg=", + "MDQ6VXNlcjYyMTU5MjU=", + "MDQ6VXNlcjQzMDQxNQ==", + "MDQ6VXNlcjI2MzIwNzQ5", + "MDQ6VXNlcjYwMDkwMzkx", + "MDQ6VXNlcjg2MTA0NA==", + "MDQ6VXNlcjY0Njg2", + "MDQ6VXNlcjE2MTUxNTA=", + "MDQ6VXNlcjkxMDUxMA==", + "MDQ6VXNlcjM0MTk3MjE=", + "MDQ6VXNlcjYwNTg3NDU=", + "MDQ6VXNlcjQzOTI3OQ==", + "U_kgDOCkDCgw", + "MDQ6VXNlcjE0OTkxOA==", + "MDQ6VXNlcjc2NzA4NDM=", + "MDQ6VXNlcjI0OTk2MDE2", + "MDQ6VXNlcjEzODQyNg==", + "MDQ6VXNlcjE2OTA0NDc3", + "MDQ6VXNlcjkwOTA0NDM=", + "MDQ6VXNlcjU4NTI5MQ==", + "MDQ6VXNlcjI3ODkzMzg1", + "MDQ6VXNlcjQ2Mjk4Nw==", + "MDQ6VXNlcjczNTU0Njcy", + "U_kgDOBj-X0w", + "U_kgDOBwTNvg", + "MDQ6VXNlcjM0NDE3NTcz", + "MDQ6VXNlcjE2MTA=", + "MDQ6VXNlcjE0NDExNjE=", + "MDQ6VXNlcjEwMzQ5OQ==", + "MDQ6VXNlcjUzNDIxMTM=", + "MDQ6VXNlcjE3Mjg1Mjg=", + "MDQ6VXNlcjE5ODk2MjY3", + "U_kgDOBYTIXg", + "MDQ6VXNlcjE5OTE4NTA=", + "MDQ6VXNlcjM4NzEzNTQ=", + "MDQ6VXNlcjExMjQyNjM=", + "MDQ6VXNlcjY1NjYyNDg=", + "MDQ6VXNlcjE2ODQwNTM=", + "MDQ6VXNlcjQ2MzgzMg==", + "MDQ6VXNlcjI2Mjc=", + "MDQ6VXNlcjM1NTYyMTMx", + "MDQ6VXNlcjEwNDE0MDIw", + "MDQ6VXNlcjI0OTI5NDY2", + "MDQ6VXNlcjQ1NTY5NDQ=", + "MDQ6VXNlcjE5OTc5NDA=", + "MDQ6VXNlcjYzNjA1NDg1", + "MDQ6VXNlcjQxNzQ0MDEy", + "MDQ6VXNlcjc1OA==", + "MDQ6VXNlcjgyNjA3NzIz", + "MDQ6VXNlcjkxMTI1NTQw", + "MDQ6VXNlcjUyMTA5Nw==", + "MDQ6VXNlcjQyNDI2ODM=", + "MDQ6VXNlcjgzMDAwMDE=", + "MDQ6VXNlcjc3MDc1NDQ5", + "MDQ6VXNlcjE0MzI5Mzg4", + "MDQ6VXNlcjk4NTc3Nzk=", + "MDQ6VXNlcjc0NTUzOTUx", + "MDQ6VXNlcjU1MTg1NTA=", + "MDQ6VXNlcjQ2NjAyNzU=", + "U_kgDOCdBRFg", + "MDQ6VXNlcjg3NzU4NQ==", + "MDQ6VXNlcjEyODEyMTU=", + "MDQ6VXNlcjE2NjYzNw==", + "MDQ6VXNlcjQ3MDU3NTc=", + "MDQ6VXNlcjUxMjM3MTE3", + "U_kgDOCxTEHw", + "MDQ6VXNlcjM1MTUwMDAx", + "MDQ6VXNlcjIyODYzMDQ=" + ], + "unknown_logins": [], + "usernames": [ + "2ykwang", + "Chiemezuo", + "DhavalGojiya", + "FlipperPA", + "GaretJax", + "JaeHyuckSa", + "JohananOppongAmoateng", + "Josephchinedu", + "Mogost", + "MrCordeiro", + "Natim", + "RealOrangeOne", + "Shrikantgiri25", + "SinkuKumar", + "Stormheg", + "TimothyMalahy", + "VeldaKiara", + "Violette-Allotey", + "Zakui", + "adRn-s", + "adamghill", + "akshayvinchurkar", + "amirreza8002", + "andoriyaprashant", + "asherf", + "ayimdomnic", + "bahoo", + "bckohan", + "blingblin-g", + "browniebroke", + "carltongibson", + "cgl", + "clintonb", + "cunla", + "ddabble", + "deronnax", + "devatbosch", + "dmpayton", + "dr-rompecabezas", + "elineda", + "federicobond", + "fsbraun", + "g-nie", + "gav-fyi", + "giovannicimolin", + "input", + "jacklinke", + "jaehyuckSa", + "jburns6789", + "jcjudkins", + "jezdez", + "jmgutu", + "jnovinger", + "johnatanmoran", + "johnfraney", + "joshuadavidthomas", + "justbackend", + "kevin-brown", + "knyghty", + "korfuri", + "kytta", + "leogregianin", + "manelclos", + "matthiask", + "mihrab34", + "mkalioby", + "mnislam01", + "mzemlickis", + "nanorepublica", + "niltonpimentel02", + "okotdaniel", + "oliverandrich", + "ontowhee", + "p-r-a-v-i-n", + "pauloxnet", + "peterthomassen", + "pfouque", + "priyapahwa", + "rptmat57", + "ryancheley", + "salty-ivy", + "sergei-maertens", + "sobolevn", + "testSchilling", + "thibaudcolas", + "tim-schilling", + "ulgens", + "unmonoqueteclea", + "vacarme", + "vinlawz", + "viscofuse", + "williln" + ] + }, + "sensitive_attributes": [], + "identity_schema_version": 0 + } + ] + }, + { + "mode": "managed", + "type": "github_membership", + "name": "this", + "provider": "provider[\"registry.terraform.io/integrations/github\"]", + "instances": [ + { + "index_key": "2ykwang", + "schema_version": 0, + "attributes": { + "downgrade_on_destroy": false, + "etag": "W/\"2ab69bb91ac4b18c946d48dd2579b7091cd483f80be6917ea941288e16ecbc44\"", + "id": "django-commons:2ykwang", + "role": "member", + "username": "2ykwang" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "data.github_users.users" + ] + }, + { + "index_key": "Chiemezuo", + "schema_version": 0, + "attributes": { + "downgrade_on_destroy": false, + "etag": "W/\"86493022e463577599b0c4218dc23c525839a2e5e82514d967d69c1de4a787bb\"", + "id": "django-commons:Chiemezuo", + "role": "member", + "username": "Chiemezuo" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "data.github_users.users" + ] + }, + { + "index_key": "DhavalGojiya", + "schema_version": 0, + "attributes": { + "downgrade_on_destroy": false, + "etag": "W/\"ac59e4c419b08fef803e006e4217fc3fe6f61f20b06686c4ae8b9e95be5ea540\"", + "id": "django-commons:DhavalGojiya", + "role": "member", + "username": "DhavalGojiya" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "data.github_users.users" + ] + }, + { + "index_key": "FlipperPA", + "schema_version": 0, + "attributes": { + "downgrade_on_destroy": false, + "etag": "W/\"7b590516803d9ba1d3628f0b22275dfa2a6b72b6b6ff7cd76c21c5b817e8af26\"", + "id": "django-commons:FlipperPA", + "role": "member", + "username": "FlipperPA" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "data.github_users.users" + ] + }, + { + "index_key": "GaretJax", + "schema_version": 0, + "attributes": { + "downgrade_on_destroy": false, + "etag": "W/\"426aa4f95c40f19c856f37a3c1e6f377e6a0f22be16a35fae129e820486dee44\"", + "id": "django-commons:GaretJax", + "role": "member", + "username": "GaretJax" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "data.github_users.users" + ] + }, + { + "index_key": "JaeHyuckSa", + "schema_version": 0, + "attributes": { + "downgrade_on_destroy": false, + "etag": "W/\"716c3995d2135eb0eaa4d83adc7d3debe7b6af60937d8d64e639bda1f6de03a7\"", + "id": "django-commons:JaeHyuckSa", + "role": "member", + "username": "JaeHyuckSa" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "data.github_users.users" + ] + }, + { + "index_key": "JohananOppongAmoateng", + "schema_version": 0, + "attributes": { + "downgrade_on_destroy": false, + "etag": "W/\"3a07921bf441cea09b0a78f9ab78304ffb76db1e20433294ae55661b0a442cce\"", + "id": "django-commons:JohananOppongAmoateng", + "role": "member", + "username": "JohananOppongAmoateng" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "data.github_users.users" + ] + }, + { + "index_key": "Josephchinedu", + "schema_version": 0, + "attributes": { + "downgrade_on_destroy": false, + "etag": "W/\"ed0d2e1779e4630c5fada391648e2f53c16b772d97cb42a425568ed3014f14ee\"", + "id": "django-commons:Josephchinedu", + "role": "member", + "username": "Josephchinedu" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "data.github_users.users" + ] + }, + { + "index_key": "Mogost", + "schema_version": 0, + "attributes": { + "downgrade_on_destroy": false, + "etag": "W/\"548d6d97173a3ce733c320f447381a8bd6d2fccd6b775584b6176242f52a53d1\"", + "id": "django-commons:Mogost", + "role": "member", + "username": "Mogost" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "data.github_users.users" + ] + }, + { + "index_key": "MrCordeiro", + "schema_version": 0, + "attributes": { + "downgrade_on_destroy": false, + "etag": "W/\"edd0f9b8dab234cbe109f29462f3ece7f0b65f63df7fc2823c9d28fffb2a5ef5\"", + "id": "django-commons:MrCordeiro", + "role": "member", + "username": "MrCordeiro" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "data.github_users.users" + ] + }, + { + "index_key": "Natim", + "schema_version": 0, + "attributes": { + "downgrade_on_destroy": null, + "etag": "W/\"98a134b427d7d7b8f67c9abcfcd6b33416fc931f263a155a02346dd1317adea1\"", + "id": "django-commons:Natim", + "role": "member", + "username": "Natim" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "eyJzY2hlbWFfdmVyc2lvbiI6IjAifQ==", + "dependencies": [ + "data.github_users.users" + ] + }, + { + "index_key": "RealOrangeOne", + "schema_version": 0, + "attributes": { + "downgrade_on_destroy": false, + "etag": "W/\"ab2eccdd691fd60c778f497424dd5447d2acfed1ffffd0b74afaed0f22777432\"", + "id": "django-commons:RealOrangeOne", + "role": "member", + "username": "RealOrangeOne" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "data.github_users.users" + ] + }, + { + "index_key": "Shrikantgiri25", + "schema_version": 0, + "attributes": { + "downgrade_on_destroy": false, + "etag": "W/\"a3333c88d84be72f756f2f53ebd187fc84e51aa2ef0ffaabd4bfd5f5b5eeda28\"", + "id": "django-commons:Shrikantgiri25", + "role": "member", + "username": "Shrikantgiri25" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "data.github_users.users" + ] + }, + { + "index_key": "SinkuKumar", + "schema_version": 0, + "attributes": { + "downgrade_on_destroy": false, + "etag": "W/\"2305d621c10729a6ff4a4558cd2fabe957a57dcadd720001577d8697da0cafe2\"", + "id": "django-commons:SinkuKumar", + "role": "member", + "username": "SinkuKumar" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "data.github_users.users" + ] + }, + { + "index_key": "Stormheg", + "schema_version": 0, + "attributes": { + "downgrade_on_destroy": null, + "etag": "W/\"6b9c524e3964766b01bd2b6c3d28df6103a221f1d0cc1bf5fe7be4cef7c3180b\"", + "id": "django-commons:Stormheg", + "role": "admin", + "username": "Stormheg" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "eyJzY2hlbWFfdmVyc2lvbiI6IjAifQ==", + "dependencies": [ + "data.github_users.users" + ] + }, + { + "index_key": "TimothyMalahy", + "schema_version": 0, + "attributes": { + "downgrade_on_destroy": false, + "etag": "W/\"43e96a9dbb4ebcad38940d648e200236f958f3208488f74b640534d11417fa75\"", + "id": "django-commons:TimothyMalahy", + "role": "member", + "username": "TimothyMalahy" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "data.github_users.users" + ] + }, + { + "index_key": "VeldaKiara", + "schema_version": 0, + "attributes": { + "downgrade_on_destroy": false, + "etag": "W/\"048ba4379d78554dbffe9698ab7d310410d1b450fb8a0243fc4188bf19e5d6af\"", + "id": "django-commons:VeldaKiara", + "role": "member", + "username": "VeldaKiara" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "data.github_users.users" + ] + }, + { + "index_key": "Violette-Allotey", + "schema_version": 0, + "attributes": { + "downgrade_on_destroy": false, + "etag": "W/\"b0038a5b93546b977263873bb9e2db5fe133f7c1ab778ccd949a58b90faf381b\"", + "id": "django-commons:Violette-Allotey", + "role": "member", + "username": "Violette-Allotey" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "data.github_users.users" + ] + }, + { + "index_key": "Zakui", + "schema_version": 0, + "attributes": { + "downgrade_on_destroy": false, + "etag": "W/\"f693bf0f4fa49827c01f276f6f0e1f60ee9b3b24986df0cfa484480c6c3542a5\"", + "id": "django-commons:Zakui", + "role": "member", + "username": "Zakui" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "data.github_users.users" + ] + }, + { + "index_key": "adRn-s", + "schema_version": 0, + "attributes": { + "downgrade_on_destroy": false, + "etag": "W/\"4ad889c365cd59b3c76dbdf7b626298540e621599ea7399e79cd838ffa8f8a18\"", + "id": "django-commons:adRn-s", + "role": "member", + "username": "adRn-s" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "data.github_users.users" + ] + }, + { + "index_key": "adamghill", + "schema_version": 0, + "attributes": { + "downgrade_on_destroy": false, + "etag": "W/\"f97a091dce002178f3bd38e9a5191fbef8ca6ed55365712794ccfd130a424913\"", + "id": "django-commons:adamghill", + "role": "member", + "username": "adamghill" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "data.github_users.users" + ] + }, + { + "index_key": "akshayvinchurkar", + "schema_version": 0, + "attributes": { + "downgrade_on_destroy": false, + "etag": "W/\"1c1b62e18f9f91dfcbbcf08ee56929a08c0e6c4bdef3a56bdfaa53e36c397389\"", + "id": "django-commons:akshayvinchurkar", + "role": "member", + "username": "akshayvinchurkar" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "data.github_users.users" + ] + }, + { + "index_key": "amirreza8002", + "schema_version": 0, + "attributes": { + "downgrade_on_destroy": false, + "etag": "W/\"55bff3bb50dc17188a3a4d3f6a3e14856db5daf924467c30ad332695d0a12744\"", + "id": "django-commons:amirreza8002", + "role": "member", + "username": "amirreza8002" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "data.github_users.users" + ] + }, + { + "index_key": "andoriyaprashant", + "schema_version": 0, + "attributes": { + "downgrade_on_destroy": false, + "etag": "W/\"0695c6f857f9b075d3ca7e8f19ed69b7d3e3de692d721c2ab994618aae4e622e\"", + "id": "django-commons:andoriyaprashant", + "role": "member", + "username": "andoriyaprashant" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "data.github_users.users" + ] + }, + { + "index_key": "asherf", + "schema_version": 0, + "attributes": { + "downgrade_on_destroy": false, + "etag": "W/\"6e015ecc9908c65f3678bcfde23b6f6d51484b9d80f3b459e17056af31114f11\"", + "id": "django-commons:asherf", + "role": "member", + "username": "asherf" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "data.github_users.users" + ] + }, + { + "index_key": "ayimdomnic", + "schema_version": 0, + "attributes": { + "downgrade_on_destroy": false, + "etag": "W/\"246a98fe4ab7fb481f81c65bdca244800cc35950648dc7697c80ac1bbad0b12c\"", + "id": "django-commons:ayimdomnic", + "role": "member", + "username": "ayimdomnic" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "data.github_users.users" + ] + }, + { + "index_key": "bahoo", + "schema_version": 0, + "attributes": { + "downgrade_on_destroy": false, + "etag": "W/\"8e9aa915843efe47fe6bfd858faaa0e2e125d60c76785a61cb5c30ff077c3043\"", + "id": "django-commons:bahoo", + "role": "member", + "username": "bahoo" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "data.github_users.users" + ] + }, + { + "index_key": "bckohan", + "schema_version": 0, + "attributes": { + "downgrade_on_destroy": false, + "etag": "W/\"56a7c423e887b0264729d64da713f5ee984234251d9d8e394af05ba521f5fabc\"", + "id": "django-commons:bckohan", + "role": "member", + "username": "bckohan" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "data.github_users.users" + ] + }, + { + "index_key": "blingblin-g", + "schema_version": 0, + "attributes": { + "downgrade_on_destroy": false, + "etag": "W/\"7896c43e39776144d45c53864520b23b2f2b99a5112593e22ea66c39e4c8082a\"", + "id": "django-commons:blingblin-g", + "role": "member", + "username": "blingblin-g" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "data.github_users.users" + ] + }, + { + "index_key": "browniebroke", + "schema_version": 0, + "attributes": { + "downgrade_on_destroy": false, + "etag": "W/\"0fa93f60780a213eac11fbc66a266aa5d8e254313a8e2d6cd2b2e63ccfe562cc\"", + "id": "django-commons:browniebroke", + "role": "member", + "username": "browniebroke" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "data.github_users.users" + ] + }, + { + "index_key": "carltongibson", + "schema_version": 0, + "attributes": { + "downgrade_on_destroy": false, + "etag": "W/\"ca6d7695590cb0a76b96eb4ce0b18dac1e8ed54b25fe017672d2d2aba68eca1f\"", + "id": "django-commons:carltongibson", + "role": "member", + "username": "carltongibson" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "data.github_users.users" + ] + }, + { + "index_key": "cgl", + "schema_version": 0, + "attributes": { + "downgrade_on_destroy": false, + "etag": "W/\"fa5d14c3626f04db92766d7fe30b1929b9f294d904dfe88c24fa3bd9756c875e\"", + "id": "django-commons:cgl", + "role": "member", + "username": "cgl" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "data.github_users.users" + ] + }, + { + "index_key": "clintonb", + "schema_version": 0, + "attributes": { + "downgrade_on_destroy": false, + "etag": "W/\"9aaf2bf914d4954c9ed392cc10a1670d0624111e1ac9a3b3a3e32f267beb3c8c\"", + "id": "django-commons:clintonb", + "role": "member", + "username": "clintonb" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "data.github_users.users" + ] + }, + { + "index_key": "cunla", + "schema_version": 0, + "attributes": { + "downgrade_on_destroy": null, + "etag": "W/\"fe8a9355720182460e3b8066fe6577918851d592930c5201a97add1a1fcc7f67\"", + "id": "django-commons:cunla", + "role": "admin", + "username": "cunla" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "eyJzY2hlbWFfdmVyc2lvbiI6IjAifQ==", + "dependencies": [ + "data.github_users.users" + ] + }, + { + "index_key": "ddabble", + "schema_version": 0, + "attributes": { + "downgrade_on_destroy": false, + "etag": "W/\"fc42f7a4b7782f316304a82a057c1bb88bcbc26522fa0a4c1a56e1af73aa184e\"", + "id": "django-commons:ddabble", + "role": "member", + "username": "ddabble" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "data.github_users.users" + ] + }, + { + "index_key": "deronnax", + "schema_version": 0, + "attributes": { + "downgrade_on_destroy": false, + "etag": "W/\"1497ae7aa2cfe8c0d69015af3a20baafc1f8bbdd1afbb42ebaf9d6b6efa0d20c\"", + "id": "django-commons:deronnax", + "role": "member", + "username": "deronnax" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "data.github_users.users" + ] + }, + { + "index_key": "devatbosch", + "schema_version": 0, + "attributes": { + "downgrade_on_destroy": false, + "etag": "W/\"b827b10346c1ebac471197a130c75ab78edd219e884be6f9a0a8c9cd0f296159\"", + "id": "django-commons:devatbosch", + "role": "member", + "username": "devatbosch" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "data.github_users.users" + ] + }, + { + "index_key": "dmpayton", + "schema_version": 0, + "attributes": { + "downgrade_on_destroy": false, + "etag": "W/\"4640d6b0ed7b8d1bd3159cb44d18e023edb4646483d14bae22f51253dcc7174a\"", + "id": "django-commons:dmpayton", + "role": "member", + "username": "dmpayton" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "data.github_users.users" + ] + }, + { + "index_key": "dr-rompecabezas", + "schema_version": 0, + "attributes": { + "downgrade_on_destroy": false, + "etag": "W/\"2bf7c17a5feadd333207f5ac23867f7a3c890af2eb27ac9a7c422335c042bd60\"", + "id": "django-commons:dr-rompecabezas", + "role": "member", + "username": "dr-rompecabezas" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "data.github_users.users" + ] + }, + { + "index_key": "elineda", + "schema_version": 0, + "attributes": { + "downgrade_on_destroy": false, + "etag": "W/\"0243d5a80b417e800bce9806cebcfc4c277c38c6c2d1cf63412e0f65f93adb55\"", + "id": "django-commons:elineda", + "role": "member", + "username": "elineda" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "data.github_users.users" + ] + }, + { + "index_key": "federicobond", + "schema_version": 0, + "attributes": { + "downgrade_on_destroy": false, + "etag": "W/\"228410b22b745267f90f006fc90107b32f296bac52bcf22026a3e8317bcfbc9d\"", + "id": "django-commons:federicobond", + "role": "member", + "username": "federicobond" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "data.github_users.users" + ] + }, + { + "index_key": "fsbraun", + "schema_version": 0, + "attributes": { + "downgrade_on_destroy": false, + "etag": "W/\"39da5dd24082f60e83f4adc8fda3679f7c3ddaf7533b1b940f2b8c6219b946e0\"", + "id": "django-commons:fsbraun", + "role": "member", + "username": "fsbraun" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "data.github_users.users" + ] + }, + { + "index_key": "g-nie", + "schema_version": 0, + "attributes": { + "downgrade_on_destroy": false, + "etag": "W/\"d05579f94f11f9652be4cadf306bb66a4e0b16fcf870eb439d471df448f388b8\"", + "id": "django-commons:g-nie", + "role": "member", + "username": "g-nie" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "data.github_users.users" + ] + }, + { + "index_key": "gav-fyi", + "schema_version": 0, + "attributes": { + "downgrade_on_destroy": null, + "etag": "W/\"e34caf3f86b45e8ec852d7fbb939ccf44fcae8b797fb5b651c9c1513b7e6542c\"", + "id": "django-commons:gav-fyi", + "role": "member", + "username": "gav-fyi" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "eyJzY2hlbWFfdmVyc2lvbiI6IjAifQ==", + "dependencies": [ + "data.github_users.users" + ] + }, + { + "index_key": "giovannicimolin", + "schema_version": 0, + "attributes": { + "downgrade_on_destroy": false, + "etag": "W/\"39dcc3fb5073e7738defb298865529a82ede728b5e82bb01703b18ef9baf8426\"", + "id": "django-commons:giovannicimolin", + "role": "member", + "username": "giovannicimolin" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "data.github_users.users" + ] + }, + { + "index_key": "input", + "schema_version": 0, + "attributes": { + "downgrade_on_destroy": false, + "etag": "W/\"d7b8aca501dd7b4ce6dbe3958fba2741cbd493c37c192fe102d49aa615104aae\"", + "id": "django-commons:input", + "role": "member", + "username": "input" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "data.github_users.users" + ] + }, + { + "index_key": "jacklinke", + "schema_version": 0, + "attributes": { + "downgrade_on_destroy": false, + "etag": "W/\"9c7b8e1b0972cd42c16e4953d0b2adb7195286d794df9672942e272e35894c19\"", + "id": "django-commons:jacklinke", + "role": "member", + "username": "jacklinke" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "data.github_users.users" + ] + }, + { + "index_key": "jburns6789", + "schema_version": 0, + "attributes": { + "downgrade_on_destroy": false, + "etag": "W/\"6aac95f41a4d6391899afc1796799228a7692cbad25f8f365f05dca2d9b18b22\"", + "id": "django-commons:jburns6789", + "role": "member", + "username": "jburns6789" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "data.github_users.users" + ] + }, + { + "index_key": "jcjudkins", + "schema_version": 0, + "attributes": { + "downgrade_on_destroy": null, + "etag": "W/\"e9163164f085411bf1b265c5a3dc208169b29569bf002eedda69f948467de9af\"", + "id": "django-commons:jcjudkins", + "role": "member", + "username": "jcjudkins" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "eyJzY2hlbWFfdmVyc2lvbiI6IjAifQ==", + "dependencies": [ + "data.github_users.users" + ] + }, + { + "index_key": "jezdez", + "schema_version": 0, + "attributes": { + "downgrade_on_destroy": false, + "etag": "W/\"947daa19b50e58c770e090500c4818b3bc73a89c49068b513068e4a7eee16e13\"", + "id": "django-commons:jezdez", + "role": "member", + "username": "jezdez" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "data.github_users.users" + ] + }, + { + "index_key": "jmgutu", + "schema_version": 0, + "attributes": { + "downgrade_on_destroy": false, + "etag": "W/\"68c8ee12d995a8e699e9d4f0ab7ea61593dff0e4c56001c0ff74eedc4c3a6a10\"", + "id": "django-commons:jmgutu", + "role": "member", + "username": "jmgutu" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "data.github_users.users" + ] + }, + { + "index_key": "jnovinger", + "schema_version": 0, + "attributes": { + "downgrade_on_destroy": false, + "etag": "W/\"ee2bfbfe115c0657c6190b0a65c6e917ff1a81417d8047326a3c004a0b93711a\"", + "id": "django-commons:jnovinger", + "role": "member", + "username": "jnovinger" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "data.github_users.users" + ] + }, + { + "index_key": "johnatanmoran", + "schema_version": 0, + "attributes": { + "downgrade_on_destroy": false, + "etag": "W/\"fc6eee35c8e85497e635fb0f853d68b523de3022e733b44f3ddbfead290fe89d\"", + "id": "django-commons:johnatanmoran", + "role": "member", + "username": "johnatanmoran" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "data.github_users.users" + ] + }, + { + "index_key": "johnfraney", + "schema_version": 0, + "attributes": { + "downgrade_on_destroy": false, + "etag": "W/\"548dbf94b63461f33c84f1ed7c3e0f911d8ea8cf32b6330c4202ac0b9e4d321d\"", + "id": "django-commons:johnfraney", + "role": "member", + "username": "johnfraney" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "data.github_users.users" + ] + }, + { + "index_key": "joshuadavidthomas", + "schema_version": 0, + "attributes": { + "downgrade_on_destroy": null, + "etag": "W/\"46997d69cead0af60d839f00466ef27d07ca58e2325f7553a2926a42f21f6478\"", + "id": "django-commons:joshuadavidthomas", + "role": "member", + "username": "joshuadavidthomas" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "eyJzY2hlbWFfdmVyc2lvbiI6IjAifQ==", + "dependencies": [ + "data.github_users.users" + ] + }, + { + "index_key": "justbackend", + "schema_version": 0, + "attributes": { + "downgrade_on_destroy": false, + "etag": "W/\"b68ba71336b63ce9b69e1a1735afefd9d140838f6f045b17a9f318a54011281a\"", + "id": "django-commons:justbackend", + "role": "member", + "username": "justbackend" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "data.github_users.users" + ] + }, + { + "index_key": "kevin-brown", + "schema_version": 0, + "attributes": { + "downgrade_on_destroy": false, + "etag": "W/\"4d9aae7389f30dd05b936011f07909c00aee6f0405e25db4afde3f1ec38b2da7\"", + "id": "django-commons:kevin-brown", + "role": "member", + "username": "kevin-brown" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "data.github_users.users" + ] + }, + { + "index_key": "knyghty", + "schema_version": 0, + "attributes": { + "downgrade_on_destroy": false, + "etag": "W/\"d8b7c9aff338e17979af5bd82ccb45672b822d371bafe8c5453e3a31e9301aa5\"", + "id": "django-commons:knyghty", + "role": "member", + "username": "knyghty" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "data.github_users.users" + ] + }, + { + "index_key": "korfuri", + "schema_version": 0, + "attributes": { + "downgrade_on_destroy": false, + "etag": "W/\"42dc62440b556ce3e3ad6b2b8ddafafca7d7922d0614bfdeb928c60220df0044\"", + "id": "django-commons:korfuri", + "role": "member", + "username": "korfuri" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "data.github_users.users" + ] + }, + { + "index_key": "kytta", + "schema_version": 0, + "attributes": { + "downgrade_on_destroy": false, + "etag": "W/\"e98d8c18fbb625dfea5ac19bbcc75fb1e3c9d5d953424334eb6efd01363320ae\"", + "id": "django-commons:kytta", + "role": "member", + "username": "kytta" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "data.github_users.users" + ] + }, + { + "index_key": "leogregianin", + "schema_version": 0, + "attributes": { + "downgrade_on_destroy": false, + "etag": "W/\"e7289910e7febcb8f3a6fde6a8764f6d178bbab56be01b8cd65894a407548edf\"", + "id": "django-commons:leogregianin", + "role": "member", + "username": "leogregianin" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "data.github_users.users" + ] + }, + { + "index_key": "manelclos", + "schema_version": 0, + "attributes": { + "downgrade_on_destroy": false, + "etag": "W/\"0936e6e6b21b78dadf56a5dd3acf703b5d71a0276f1952693f2629bd7441b84c\"", + "id": "django-commons:manelclos", + "role": "member", + "username": "manelclos" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "data.github_users.users" + ] + }, + { + "index_key": "matthiask", + "schema_version": 0, + "attributes": { + "downgrade_on_destroy": null, + "etag": "W/\"fefccd4decf97545d335749efc8ff93204d2413e8964be36b67e29f858940c24\"", + "id": "django-commons:matthiask", + "role": "member", + "username": "matthiask" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "eyJzY2hlbWFfdmVyc2lvbiI6IjAifQ==", + "dependencies": [ + "data.github_users.users" + ] + }, + { + "index_key": "mihrab34", + "schema_version": 0, + "attributes": { + "downgrade_on_destroy": false, + "etag": "W/\"1a94a3a8ec767a94329ee7c152ca3e8118c8250a4acc3cc157a78b6a640fee6a\"", + "id": "django-commons:mihrab34", + "role": "member", + "username": "mihrab34" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "data.github_users.users" + ] + }, + { + "index_key": "mkalioby", + "schema_version": 0, + "attributes": { + "downgrade_on_destroy": false, + "etag": "W/\"a74c9bc54ce56775efa4a02d3aa7beff0c8e0e6dff28c6f1f0fce19ca75b9932\"", + "id": "django-commons:mkalioby", + "role": "member", + "username": "mkalioby" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "data.github_users.users" + ] + }, + { + "index_key": "mnislam01", + "schema_version": 0, + "attributes": { + "downgrade_on_destroy": false, + "etag": "W/\"09a948483a90d2d2f56a89771811a3fe778f6da2918818032cc628b326123c83\"", + "id": "django-commons:mnislam01", + "role": "member", + "username": "mnislam01" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "data.github_users.users" + ] + }, + { + "index_key": "mzemlickis", + "schema_version": 0, + "attributes": { + "downgrade_on_destroy": false, + "etag": "W/\"045ff1bd41fe3f777313f042295b2f0672b50cf4eb3408c29d4e754f614d73de\"", + "id": "django-commons:mzemlickis", + "role": "member", + "username": "mzemlickis" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "data.github_users.users" + ] + }, + { + "index_key": "nanorepublica", + "schema_version": 0, + "attributes": { + "downgrade_on_destroy": null, + "etag": "W/\"db07a7f853410153761267b6045e2715dfd3570732a6dd73ca95debc3c8c893e\"", + "id": "django-commons:nanorepublica", + "role": "member", + "username": "nanorepublica" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "eyJzY2hlbWFfdmVyc2lvbiI6IjAifQ==", + "dependencies": [ + "data.github_users.users" + ] + }, + { + "index_key": "niltonpimentel02", + "schema_version": 0, + "attributes": { + "downgrade_on_destroy": false, + "etag": "W/\"0ad8efea6af66569079cca077fe80dd90f92cb1bda110b859ca1d4f6536b3b7a\"", + "id": "django-commons:niltonpimentel02", + "role": "member", + "username": "niltonpimentel02" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "data.github_users.users" + ] + }, + { + "index_key": "okotdaniel", + "schema_version": 0, + "attributes": { + "downgrade_on_destroy": false, + "etag": "W/\"6b33ef86c3648185881d37bdbe7a5e9bb13a67f127148bcae3549ee956a4b8d7\"", + "id": "django-commons:okotdaniel", + "role": "member", + "username": "okotdaniel" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "data.github_users.users" + ] + }, + { + "index_key": "oliverandrich", + "schema_version": 0, + "attributes": { + "downgrade_on_destroy": false, + "etag": "W/\"2661a7ebb699c4436ef13afd7695d0de3f489ac913a2a3b677a66d02ece9a841\"", + "id": "django-commons:oliverandrich", + "role": "member", + "username": "oliverandrich" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "data.github_users.users" + ] + }, + { + "index_key": "ontowhee", + "schema_version": 0, + "attributes": { + "downgrade_on_destroy": false, + "etag": "W/\"15738a7615fe4145e26cbf354d2f41a39b797ac3dc3adf48d41d8422ff26d0ae\"", + "id": "django-commons:ontowhee", + "role": "member", + "username": "ontowhee" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "data.github_users.users" + ] + }, + { + "index_key": "p-r-a-v-i-n", + "schema_version": 0, + "attributes": { + "downgrade_on_destroy": false, + "etag": "W/\"1f3946f54242711152a8de285cd1de2fb9205f24b900b0fcecf4e080fbe33b9f\"", + "id": "django-commons:p-r-a-v-i-n", + "role": "member", + "username": "p-r-a-v-i-n" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "data.github_users.users" + ] + }, + { + "index_key": "pauloxnet", + "schema_version": 0, + "attributes": { + "downgrade_on_destroy": false, + "etag": "W/\"7484824a1f4860f2c581727dc50084fd7ab0a0d77965d3149cdf13629c68ab5d\"", + "id": "django-commons:pauloxnet", + "role": "member", + "username": "pauloxnet" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "data.github_users.users" + ] + }, + { + "index_key": "peterthomassen", + "schema_version": 0, + "attributes": { + "downgrade_on_destroy": false, + "etag": "W/\"29c7fc91dd66c69a9e501be9f62110d623c81858ffd3822c5c8f43bad17c9594\"", + "id": "django-commons:peterthomassen", + "role": "member", + "username": "peterthomassen" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "data.github_users.users" + ] + }, + { + "index_key": "pfouque", + "schema_version": 0, + "attributes": { + "downgrade_on_destroy": null, + "etag": "W/\"5a3d9b761fba19a193259234d71497c6e5574393707f803767d37c136468a52d\"", + "id": "django-commons:pfouque", + "role": "member", + "username": "pfouque" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "eyJzY2hlbWFfdmVyc2lvbiI6IjAifQ==", + "dependencies": [ + "data.github_users.users" + ] + }, + { + "index_key": "priyapahwa", + "schema_version": 0, + "attributes": { + "downgrade_on_destroy": null, + "etag": "W/\"59e5eb397e76259240de3829e2528ca2f2e71f5e7d464693ce82eafca0320a9c\"", + "id": "django-commons:priyapahwa", + "role": "member", + "username": "priyapahwa" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "eyJzY2hlbWFfdmVyc2lvbiI6IjAifQ==", + "dependencies": [ + "data.github_users.users" + ] + }, + { + "index_key": "rptmat57", + "schema_version": 0, + "attributes": { + "downgrade_on_destroy": false, + "etag": "W/\"4bd0e11d86ffae30dbe102932f029b7d5d4d28ea0e52f0a8cc231f9fd992ad61\"", + "id": "django-commons:rptmat57", + "role": "member", + "username": "rptmat57" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "data.github_users.users" + ] + }, + { + "index_key": "ryancheley", + "schema_version": 0, + "attributes": { + "downgrade_on_destroy": null, + "etag": "W/\"d4801c18e69b247f563e341db73e1e0104be35af7a9404fdb627a0113ecfba38\"", + "id": "django-commons:ryancheley", + "role": "admin", + "username": "ryancheley" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "eyJzY2hlbWFfdmVyc2lvbiI6IjAifQ==", + "dependencies": [ + "data.github_users.users" + ] + }, + { + "index_key": "salty-ivy", + "schema_version": 0, + "attributes": { + "downgrade_on_destroy": false, + "etag": "W/\"f3a25f39cea7946c1cec4618d826cda67a57680b1189a5dbc15c36ff6fc2a27e\"", + "id": "django-commons:salty-ivy", + "role": "member", + "username": "salty-ivy" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "data.github_users.users" + ] + }, + { + "index_key": "sergei-maertens", + "schema_version": 0, + "attributes": { + "downgrade_on_destroy": false, + "etag": "W/\"7445fbd239acb3977a3269ec9034054e2834abd9a5aafa431a28fc34355bd530\"", + "id": "django-commons:sergei-maertens", + "role": "member", + "username": "sergei-maertens" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "data.github_users.users" + ] + }, + { + "index_key": "sobolevn", + "schema_version": 0, + "attributes": { + "downgrade_on_destroy": false, + "etag": "W/\"1040a3f9bd732d2dfd5dbe4c5e909a757a96b3362fd137f92fe1406fbb3cbafd\"", + "id": "django-commons:sobolevn", + "role": "member", + "username": "sobolevn" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "data.github_users.users" + ] + }, + { + "index_key": "testSchilling", + "schema_version": 0, + "attributes": { + "downgrade_on_destroy": null, + "etag": "W/\"70b5261bc95232509ab86b1b4b41f6b00b87b9aeb0de7e6ca619b0ae4108fcdd\"", + "id": "django-commons:testSchilling", + "role": "member", + "username": "testSchilling" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "eyJzY2hlbWFfdmVyc2lvbiI6IjAifQ==", + "dependencies": [ + "data.github_users.users" + ] + }, + { + "index_key": "thibaudcolas", + "schema_version": 0, + "attributes": { + "downgrade_on_destroy": false, + "etag": "W/\"9b3ed8803fe33e93bdf58b4190ea5dbfb0854c32bb58229fe4ee453fe4c1db6b\"", + "id": "django-commons:thibaudcolas", + "role": "member", + "username": "thibaudcolas" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "data.github_users.users" + ] + }, + { + "index_key": "tim-schilling", + "schema_version": 0, + "attributes": { + "downgrade_on_destroy": null, + "etag": "W/\"d08704cb76022b1f2da65825ae4ac61d02b465eefe1f41ebe37f1fe5cdb95d40\"", + "id": "django-commons:tim-schilling", + "role": "admin", + "username": "tim-schilling" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "eyJzY2hlbWFfdmVyc2lvbiI6IjAifQ==", + "dependencies": [ + "data.github_users.users" + ] + }, + { + "index_key": "ulgens", + "schema_version": 0, + "attributes": { + "downgrade_on_destroy": false, + "etag": "W/\"3d515302dfc8d88308043185f1fbc09cb6960f0f9481cb6dc8d59839c08b562f\"", + "id": "django-commons:ulgens", + "role": "member", + "username": "ulgens" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "data.github_users.users" + ] + }, + { + "index_key": "unmonoqueteclea", + "schema_version": 0, + "attributes": { + "downgrade_on_destroy": false, + "etag": "W/\"34cb9ad582585c20fb425f7fe15525432edf8b3487f2be0eed3833ecdf94d660\"", + "id": "django-commons:unmonoqueteclea", + "role": "member", + "username": "unmonoqueteclea" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "data.github_users.users" + ] + }, + { + "index_key": "vacarme", + "schema_version": 0, + "attributes": { + "downgrade_on_destroy": false, + "etag": "W/\"ad55e5ad154339604d255e00138136cbec4af629353e4e2e81c6c21aee82d355\"", + "id": "django-commons:vacarme", + "role": "member", + "username": "vacarme" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "data.github_users.users" + ] + }, + { + "index_key": "vinlawz", + "schema_version": 0, + "attributes": { + "downgrade_on_destroy": false, + "etag": "W/\"eab564fdfeb02b9a5fce96e1cb696297646c3f5947200711c17028761ba6fead\"", + "id": "django-commons:vinlawz", + "role": "member", + "username": "vinlawz" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "data.github_users.users" + ] + }, + { + "index_key": "viscofuse", + "schema_version": 0, + "attributes": { + "downgrade_on_destroy": false, + "etag": "W/\"005abac2f1fc0677f1e0124c5d963fdd519ab9498c42b190146e1c877af3a5b9\"", + "id": "django-commons:viscofuse", + "role": "member", + "username": "viscofuse" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "data.github_users.users" + ] + }, + { + "index_key": "williln", + "schema_version": 0, + "attributes": { + "downgrade_on_destroy": null, + "etag": "W/\"12a0371329c9540348dbf2d5da0292aff07049c0a3efc56e7ebfcfe2a57190d2\"", + "id": "django-commons:williln", + "role": "admin", + "username": "williln" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "eyJzY2hlbWFfdmVyc2lvbiI6IjAifQ==", + "dependencies": [ + "data.github_users.users" + ] + } + ] + }, + { + "mode": "managed", + "type": "github_organization_role_team", + "name": "admins_security_manager", + "provider": "provider[\"registry.terraform.io/integrations/github\"]", + "instances": [ + { + "schema_version": 0, + "attributes": { + "id": "138:admins", + "role_id": 138, + "team_slug": "admins" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "github_team.org_teams" + ] + } + ] + }, + { + "mode": "managed", + "type": "github_repository", + "name": "this", + "provider": "provider[\"registry.terraform.io/integrations/github\"]", + "instances": [ + { + "index_key": ".github", + "schema_version": 1, + "attributes": { + "allow_auto_merge": false, + "allow_merge_commit": false, + "allow_rebase_merge": false, + "allow_squash_merge": true, + "allow_update_branch": true, + "archive_on_destroy": true, + "archived": false, + "auto_init": false, + "default_branch": "main", + "delete_branch_on_merge": true, + "description": "A Special Repository.", + "etag": "W/\"ac350a50d35e38f6a30f8304696ffd37ab0e4fd4e2fe00dfe935644fe8e9633d\"", + "fork": "false", + "full_name": "django-commons/.github", + "git_clone_url": "git://github.com/django-commons/.github.git", + "gitignore_template": null, + "has_discussions": true, + "has_downloads": true, + "has_issues": true, + "has_projects": true, + "has_wiki": false, + "homepage_url": "", + "html_url": "https://github.com/django-commons/.github", + "http_clone_url": "https://github.com/django-commons/.github.git", + "id": ".github", + "ignore_vulnerability_alerts_during_read": null, + "is_template": false, + "license_template": null, + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "name": ".github", + "node_id": "R_kgDOLkyRSQ", + "pages": [], + "primary_language": "", + "private": false, + "repo_id": 776769865, + "security_and_analysis": [ + { + "advanced_security": [], + "code_security": [], + "secret_scanning": [ + { + "status": "disabled" + } + ], + "secret_scanning_ai_detection": [], + "secret_scanning_non_provider_patterns": [], + "secret_scanning_push_protection": [ + { + "status": "disabled" + } + ] + } + ], + "source_owner": "", + "source_repo": "", + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "ssh_clone_url": "git@github.com:django-commons/.github.git", + "svn_url": "https://github.com/django-commons/.github", + "template": [], + "topics": [], + "visibility": "public", + "vulnerability_alerts": true, + "web_commit_signoff_required": false + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "eyJzY2hlbWFfdmVyc2lvbiI6IjEifQ==" + }, + { + "index_key": "axe-selenium-python", + "schema_version": 1, + "attributes": { + "allow_auto_merge": false, + "allow_merge_commit": false, + "allow_rebase_merge": true, + "allow_squash_merge": true, + "allow_update_branch": true, + "archive_on_destroy": true, + "archived": false, + "auto_init": false, + "default_branch": "main", + "delete_branch_on_merge": true, + "description": "Automated web accessibility testing with Axe and Selenium", + "etag": "W/\"5f5751e289969fc1b5b5277a03c7a06cb542aeb68a73339b5917c38701545b6d\"", + "fork": "false", + "full_name": "django-commons/axe-selenium-python", + "git_clone_url": "git://github.com/django-commons/axe-selenium-python.git", + "gitignore_template": null, + "has_discussions": true, + "has_downloads": true, + "has_issues": true, + "has_projects": true, + "has_wiki": false, + "homepage_url": "", + "html_url": "https://github.com/django-commons/axe-selenium-python", + "http_clone_url": "https://github.com/django-commons/axe-selenium-python.git", + "id": "axe-selenium-python", + "ignore_vulnerability_alerts_during_read": null, + "is_template": false, + "license_template": null, + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "name": "axe-selenium-python", + "node_id": "MDEwOlJlcG9zaXRvcnk5NDEyOTM2NA==", + "pages": [], + "primary_language": "Python", + "private": false, + "repo_id": 94129364, + "security_and_analysis": [ + { + "advanced_security": [], + "code_security": [], + "secret_scanning": [ + { + "status": "disabled" + } + ], + "secret_scanning_ai_detection": [], + "secret_scanning_non_provider_patterns": [], + "secret_scanning_push_protection": [ + { + "status": "disabled" + } + ] + } + ], + "source_owner": "", + "source_repo": "", + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "ssh_clone_url": "git@github.com:django-commons/axe-selenium-python.git", + "svn_url": "https://github.com/django-commons/axe-selenium-python", + "template": [], + "topics": [], + "visibility": "public", + "vulnerability_alerts": true, + "web_commit_signoff_required": false + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "eyJzY2hlbWFfdmVyc2lvbiI6IjEifQ==" + }, + { + "index_key": "best-practices", + "schema_version": 1, + "attributes": { + "allow_auto_merge": false, + "allow_merge_commit": false, + "allow_rebase_merge": false, + "allow_squash_merge": true, + "allow_update_branch": true, + "archive_on_destroy": true, + "archived": false, + "auto_init": false, + "default_branch": "main", + "delete_branch_on_merge": true, + "description": "A sample project with best practices for Django Commons projects.", + "etag": "W/\"9214c62d209a20c93aa33adb10c9ce6d50e1ff3b9d9adcc0dc4eb21bef311f6a\"", + "fork": "false", + "full_name": "django-commons/best-practices", + "git_clone_url": "git://github.com/django-commons/best-practices.git", + "gitignore_template": null, + "has_discussions": true, + "has_downloads": true, + "has_issues": true, + "has_projects": true, + "has_wiki": false, + "homepage_url": "", + "html_url": "https://github.com/django-commons/best-practices", + "http_clone_url": "https://github.com/django-commons/best-practices.git", + "id": "best-practices", + "ignore_vulnerability_alerts_during_read": null, + "is_template": false, + "license_template": null, + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "name": "best-practices", + "node_id": "R_kgDOLkANrg", + "pages": [], + "primary_language": "Python", + "private": false, + "repo_id": 775949742, + "security_and_analysis": [ + { + "advanced_security": [], + "code_security": [], + "secret_scanning": [ + { + "status": "enabled" + } + ], + "secret_scanning_ai_detection": [], + "secret_scanning_non_provider_patterns": [], + "secret_scanning_push_protection": [ + { + "status": "disabled" + } + ] + } + ], + "source_owner": "", + "source_repo": "", + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "ssh_clone_url": "git@github.com:django-commons/best-practices.git", + "svn_url": "https://github.com/django-commons/best-practices", + "template": [], + "topics": [ + "django", + "python", + "template" + ], + "visibility": "public", + "vulnerability_alerts": true, + "web_commit_signoff_required": false + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "eyJzY2hlbWFfdmVyc2lvbiI6IjEifQ==" + }, + { + "index_key": "controls", + "schema_version": 1, + "attributes": { + "allow_auto_merge": false, + "allow_merge_commit": true, + "allow_rebase_merge": true, + "allow_squash_merge": true, + "allow_update_branch": true, + "archive_on_destroy": true, + "archived": false, + "auto_init": false, + "default_branch": "main", + "delete_branch_on_merge": true, + "description": "The controls for managing Django Commons projects", + "etag": "W/\"f084475c86efee52b3ea6b4a718a753d81a2b481a6d5c14570c6b7c58391d2c5\"", + "fork": "false", + "full_name": "django-commons/controls", + "git_clone_url": "git://github.com/django-commons/controls.git", + "gitignore_template": null, + "has_discussions": true, + "has_downloads": true, + "has_issues": true, + "has_projects": true, + "has_wiki": false, + "homepage_url": "", + "html_url": "https://github.com/django-commons/controls", + "http_clone_url": "https://github.com/django-commons/controls.git", + "id": "controls", + "ignore_vulnerability_alerts_during_read": null, + "is_template": false, + "license_template": null, + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "name": "controls", + "node_id": "R_kgDOLkDK8g", + "pages": [], + "primary_language": "", + "private": false, + "repo_id": 775998194, + "security_and_analysis": [ + { + "advanced_security": [], + "code_security": [], + "secret_scanning": [ + { + "status": "disabled" + } + ], + "secret_scanning_ai_detection": [], + "secret_scanning_non_provider_patterns": [], + "secret_scanning_push_protection": [ + { + "status": "disabled" + } + ] + } + ], + "source_owner": "", + "source_repo": "", + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "ssh_clone_url": "git@github.com:django-commons/controls.git", + "svn_url": "https://github.com/django-commons/controls", + "template": [], + "topics": [], + "visibility": "public", + "vulnerability_alerts": true, + "web_commit_signoff_required": false + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "eyJzY2hlbWFfdmVyc2lvbiI6IjEifQ==" + }, + { + "index_key": "django-click", + "schema_version": 1, + "attributes": { + "allow_auto_merge": false, + "allow_merge_commit": true, + "allow_rebase_merge": true, + "allow_squash_merge": false, + "allow_update_branch": true, + "archive_on_destroy": true, + "archived": false, + "auto_init": false, + "default_branch": "master", + "delete_branch_on_merge": true, + "description": "Write Django management command using the click CLI library", + "etag": "W/\"da6efb4ed0899a0ace255869c36de0a6d7ae4c5ca6aaa52468825ccbc63e28c5\"", + "fork": "false", + "full_name": "django-commons/django-click", + "git_clone_url": "git://github.com/django-commons/django-click.git", + "gitignore_template": null, + "has_discussions": false, + "has_downloads": true, + "has_issues": true, + "has_projects": true, + "has_wiki": false, + "homepage_url": "", + "html_url": "https://github.com/django-commons/django-click", + "http_clone_url": "https://github.com/django-commons/django-click.git", + "id": "django-click", + "ignore_vulnerability_alerts_during_read": null, + "is_template": false, + "license_template": null, + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "name": "django-click", + "node_id": "MDEwOlJlcG9zaXRvcnk0MjI3NDc5Nw==", + "pages": [], + "primary_language": "Python", + "private": false, + "repo_id": 42274797, + "security_and_analysis": [ + { + "advanced_security": [], + "code_security": [], + "secret_scanning": [ + { + "status": "disabled" + } + ], + "secret_scanning_ai_detection": [], + "secret_scanning_non_provider_patterns": [], + "secret_scanning_push_protection": [ + { + "status": "disabled" + } + ] + } + ], + "source_owner": "", + "source_repo": "", + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "ssh_clone_url": "git@github.com:django-commons/django-click.git", + "svn_url": "https://github.com/django-commons/django-click", + "template": [], + "topics": [], + "visibility": "public", + "vulnerability_alerts": true, + "web_commit_signoff_required": false + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "eyJzY2hlbWFfdmVyc2lvbiI6IjEifQ==" + }, + { + "index_key": "django-cookie-consent", + "schema_version": 1, + "attributes": { + "allow_auto_merge": false, + "allow_merge_commit": true, + "allow_rebase_merge": false, + "allow_squash_merge": true, + "allow_update_branch": true, + "archive_on_destroy": true, + "archived": false, + "auto_init": false, + "default_branch": "master", + "delete_branch_on_merge": true, + "description": "Reusable application for managing various cookies and visitors consent for their use in Django project.", + "etag": "W/\"173aa1aa4b557aaf0df43a904e869e9ca939199b50a6297b2d882dc9f0047c9c\"", + "fork": "false", + "full_name": "django-commons/django-cookie-consent", + "git_clone_url": "git://github.com/django-commons/django-cookie-consent.git", + "gitignore_template": null, + "has_discussions": false, + "has_downloads": true, + "has_issues": true, + "has_projects": true, + "has_wiki": false, + "homepage_url": "https://django-cookie-consent.readthedocs.org/en/latest/", + "html_url": "https://github.com/django-commons/django-cookie-consent", + "http_clone_url": "https://github.com/django-commons/django-cookie-consent.git", + "id": "django-cookie-consent", + "ignore_vulnerability_alerts_during_read": null, + "is_template": false, + "license_template": null, + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "name": "django-cookie-consent", + "node_id": "MDEwOlJlcG9zaXRvcnkxMDU1NDY2Ng==", + "pages": [], + "primary_language": "Python", + "private": false, + "repo_id": 10554666, + "security_and_analysis": [ + { + "advanced_security": [], + "code_security": [], + "secret_scanning": [ + { + "status": "disabled" + } + ], + "secret_scanning_ai_detection": [], + "secret_scanning_non_provider_patterns": [], + "secret_scanning_push_protection": [ + { + "status": "disabled" + } + ] + } + ], + "source_owner": "", + "source_repo": "", + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "ssh_clone_url": "git@github.com:django-commons/django-cookie-consent.git", + "svn_url": "https://github.com/django-commons/django-cookie-consent", + "template": [], + "topics": [], + "visibility": "public", + "vulnerability_alerts": true, + "web_commit_signoff_required": false + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "eyJzY2hlbWFfdmVyc2lvbiI6IjEifQ==" + }, + { + "index_key": "django-debug-toolbar", + "schema_version": 1, + "attributes": { + "allow_auto_merge": true, + "allow_merge_commit": true, + "allow_rebase_merge": true, + "allow_squash_merge": true, + "allow_update_branch": true, + "archive_on_destroy": true, + "archived": false, + "auto_init": false, + "default_branch": "main", + "delete_branch_on_merge": true, + "description": "A configurable set of panels that display various debug information about the current request/response.", + "etag": "W/\"512845b0e7d9989cb568d0184d5a6a357e17fc929ae4a7d52386073745c6537f\"", + "fork": "false", + "full_name": "django-commons/django-debug-toolbar", + "git_clone_url": "git://github.com/django-commons/django-debug-toolbar.git", + "gitignore_template": null, + "has_discussions": true, + "has_downloads": true, + "has_issues": true, + "has_projects": true, + "has_wiki": true, + "homepage_url": "https://django-debug-toolbar.readthedocs.io", + "html_url": "https://github.com/django-commons/django-debug-toolbar", + "http_clone_url": "https://github.com/django-commons/django-debug-toolbar.git", + "id": "django-debug-toolbar", + "ignore_vulnerability_alerts_during_read": null, + "is_template": false, + "license_template": null, + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "name": "django-debug-toolbar", + "node_id": "MDEwOlJlcG9zaXRvcnk0NjkzOQ==", + "pages": [], + "primary_language": "Python", + "private": false, + "repo_id": 46939, + "security_and_analysis": [ + { + "advanced_security": [], + "code_security": [], + "secret_scanning": [ + { + "status": "enabled" + } + ], + "secret_scanning_ai_detection": [], + "secret_scanning_non_provider_patterns": [], + "secret_scanning_push_protection": [ + { + "status": "enabled" + } + ] + } + ], + "source_owner": "", + "source_repo": "", + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "ssh_clone_url": "git@github.com:django-commons/django-debug-toolbar.git", + "svn_url": "https://github.com/django-commons/django-debug-toolbar", + "template": [], + "topics": [], + "visibility": "public", + "vulnerability_alerts": true, + "web_commit_signoff_required": false + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "eyJzY2hlbWFfdmVyc2lvbiI6IjEifQ==" + }, + { + "index_key": "django-enum", + "schema_version": 1, + "attributes": { + "allow_auto_merge": false, + "allow_merge_commit": true, + "allow_rebase_merge": true, + "allow_squash_merge": true, + "allow_update_branch": true, + "archive_on_destroy": true, + "archived": false, + "auto_init": false, + "default_branch": "main", + "delete_branch_on_merge": true, + "description": "Full and natural support for enumerations as Django model fields.", + "etag": "W/\"9ecb31a9c857c9db01f236ed860ebfc448e480a5375423f6557fc8a04198a174\"", + "fork": "false", + "full_name": "django-commons/django-enum", + "git_clone_url": "git://github.com/django-commons/django-enum.git", + "gitignore_template": null, + "has_discussions": true, + "has_downloads": true, + "has_issues": true, + "has_projects": true, + "has_wiki": false, + "homepage_url": "https://django-enum.rtfd.io", + "html_url": "https://github.com/django-commons/django-enum", + "http_clone_url": "https://github.com/django-commons/django-enum.git", + "id": "django-enum", + "ignore_vulnerability_alerts_during_read": null, + "is_template": false, + "license_template": null, + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "name": "django-enum", + "node_id": "R_kgDOHrCyiQ", + "pages": [], + "primary_language": "Python", + "private": false, + "repo_id": 514896521, + "security_and_analysis": [ + { + "advanced_security": [], + "code_security": [], + "secret_scanning": [ + { + "status": "disabled" + } + ], + "secret_scanning_ai_detection": [], + "secret_scanning_non_provider_patterns": [], + "secret_scanning_push_protection": [ + { + "status": "disabled" + } + ] + } + ], + "source_owner": "", + "source_repo": "", + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "ssh_clone_url": "git@github.com:django-commons/django-enum.git", + "svn_url": "https://github.com/django-commons/django-enum", + "template": [], + "topics": [ + "bitfield", + "bitfields", + "bitmask", + "database", + "databases", + "defines", + "django", + "enum", + "enumeration", + "enums", + "fields", + "flag", + "flags", + "mask", + "modelfields" + ], + "visibility": "public", + "vulnerability_alerts": true, + "web_commit_signoff_required": false + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "eyJzY2hlbWFfdmVyc2lvbiI6IjEifQ==" + }, + { + "index_key": "django-fsm-2", + "schema_version": 1, + "attributes": { + "allow_auto_merge": false, + "allow_merge_commit": false, + "allow_rebase_merge": true, + "allow_squash_merge": true, + "allow_update_branch": true, + "archive_on_destroy": true, + "archived": false, + "auto_init": false, + "default_branch": "main", + "delete_branch_on_merge": true, + "description": "Django friendly finite state machine support", + "etag": "W/\"ed335fedfda99c81029ffc7d929caf724136fb8efde6b001c68ef46450cb555b\"", + "fork": "false", + "full_name": "django-commons/django-fsm-2", + "git_clone_url": "git://github.com/django-commons/django-fsm-2.git", + "gitignore_template": null, + "has_discussions": true, + "has_downloads": true, + "has_issues": true, + "has_projects": true, + "has_wiki": false, + "homepage_url": "https://github.com/django-commons/django-fsm-2", + "html_url": "https://github.com/django-commons/django-fsm-2", + "http_clone_url": "https://github.com/django-commons/django-fsm-2.git", + "id": "django-fsm-2", + "ignore_vulnerability_alerts_during_read": null, + "is_template": false, + "license_template": null, + "merge_commit_message": "BLANK", + "merge_commit_title": "PR_TITLE", + "name": "django-fsm-2", + "node_id": "R_kgDOIRc3Iw", + "pages": [], + "primary_language": "Python", + "private": false, + "repo_id": 555169571, + "security_and_analysis": [ + { + "advanced_security": [], + "code_security": [], + "secret_scanning": [ + { + "status": "disabled" + } + ], + "secret_scanning_ai_detection": [], + "secret_scanning_non_provider_patterns": [], + "secret_scanning_push_protection": [ + { + "status": "disabled" + } + ] + } + ], + "source_owner": "", + "source_repo": "", + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "ssh_clone_url": "git@github.com:django-commons/django-fsm-2.git", + "svn_url": "https://github.com/django-commons/django-fsm-2", + "template": [], + "topics": [], + "visibility": "public", + "vulnerability_alerts": true, + "web_commit_signoff_required": false + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "eyJzY2hlbWFfdmVyc2lvbiI6IjEifQ==" + }, + { + "index_key": "django-prometheus", + "schema_version": 1, + "attributes": { + "allow_auto_merge": false, + "allow_merge_commit": true, + "allow_rebase_merge": true, + "allow_squash_merge": true, + "allow_update_branch": true, + "archive_on_destroy": true, + "archived": false, + "auto_init": false, + "default_branch": "master", + "delete_branch_on_merge": true, + "description": "Export Django monitoring metrics for Prometheus.io", + "etag": "W/\"a65db355096d3b5a8aba2f7ef345a015ab649a6ec372ff31266ecc368534a210\"", + "fork": "false", + "full_name": "django-commons/django-prometheus", + "git_clone_url": "git://github.com/django-commons/django-prometheus.git", + "gitignore_template": null, + "has_discussions": false, + "has_downloads": true, + "has_issues": true, + "has_projects": true, + "has_wiki": false, + "homepage_url": "", + "html_url": "https://github.com/django-commons/django-prometheus", + "http_clone_url": "https://github.com/django-commons/django-prometheus.git", + "id": "django-prometheus", + "ignore_vulnerability_alerts_during_read": null, + "is_template": false, + "license_template": null, + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "name": "django-prometheus", + "node_id": "MDEwOlJlcG9zaXRvcnkzMzQzMzA5Mg==", + "pages": [], + "primary_language": "Python", + "private": false, + "repo_id": 33433092, + "security_and_analysis": [ + { + "advanced_security": [], + "code_security": [], + "secret_scanning": [ + { + "status": "disabled" + } + ], + "secret_scanning_ai_detection": [], + "secret_scanning_non_provider_patterns": [], + "secret_scanning_push_protection": [ + { + "status": "disabled" + } + ] + } + ], + "source_owner": "", + "source_repo": "", + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "ssh_clone_url": "git@github.com:django-commons/django-prometheus.git", + "svn_url": "https://github.com/django-commons/django-prometheus", + "template": [], + "topics": [ + "django", + "django-prometheus", + "exported-metrics", + "metrics", + "monitoring", + "prometheus", + "prometheus-client", + "python" + ], + "visibility": "public", + "vulnerability_alerts": true, + "web_commit_signoff_required": false + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "eyJzY2hlbWFfdmVyc2lvbiI6IjEifQ==" + }, + { + "index_key": "django-simple-history", + "schema_version": 1, + "attributes": { + "allow_auto_merge": false, + "allow_merge_commit": true, + "allow_rebase_merge": false, + "allow_squash_merge": true, + "allow_update_branch": true, + "archive_on_destroy": true, + "archived": false, + "auto_init": false, + "default_branch": "master", + "delete_branch_on_merge": true, + "description": "Store model history and view/revert changes from admin site.", + "etag": "W/\"c38a59315e43a0cd63abcf8311fef8e2c3f41dd754b3c9ed4afc52e20f8cc747\"", + "fork": "false", + "full_name": "django-commons/django-simple-history", + "git_clone_url": "git://github.com/django-commons/django-simple-history.git", + "gitignore_template": null, + "has_discussions": true, + "has_downloads": true, + "has_issues": true, + "has_projects": true, + "has_wiki": true, + "homepage_url": "https://django-simple-history.readthedocs.org", + "html_url": "https://github.com/django-commons/django-simple-history", + "http_clone_url": "https://github.com/django-commons/django-simple-history.git", + "id": "django-simple-history", + "ignore_vulnerability_alerts_during_read": null, + "is_template": false, + "license_template": null, + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "name": "django-simple-history", + "node_id": "MDEwOlJlcG9zaXRvcnkxNDQ3ODgy", + "pages": [], + "primary_language": "Python", + "private": false, + "repo_id": 1447882, + "security_and_analysis": [ + { + "advanced_security": [], + "code_security": [], + "secret_scanning": [ + { + "status": "enabled" + } + ], + "secret_scanning_ai_detection": [], + "secret_scanning_non_provider_patterns": [], + "secret_scanning_push_protection": [ + { + "status": "enabled" + } + ] + } + ], + "source_owner": "", + "source_repo": "", + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "ssh_clone_url": "git@github.com:django-commons/django-simple-history.git", + "svn_url": "https://github.com/django-commons/django-simple-history", + "template": [], + "topics": [], + "visibility": "public", + "vulnerability_alerts": true, + "web_commit_signoff_required": false + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "eyJzY2hlbWFfdmVyc2lvbiI6IjEifQ==" + }, + { + "index_key": "django-tailwind-cli", + "schema_version": 1, + "attributes": { + "allow_auto_merge": false, + "allow_merge_commit": false, + "allow_rebase_merge": false, + "allow_squash_merge": true, + "allow_update_branch": true, + "archive_on_destroy": true, + "archived": false, + "auto_init": false, + "default_branch": "main", + "delete_branch_on_merge": true, + "description": "Django and Tailwind integration based on the prebuilt Tailwind CSS CLI.", + "etag": "W/\"9ef828fcf454a0388b78ae41a780fc5462526844acbedfe8011b9fc2dae31eaf\"", + "fork": "false", + "full_name": "django-commons/django-tailwind-cli", + "git_clone_url": "git://github.com/django-commons/django-tailwind-cli.git", + "gitignore_template": null, + "has_discussions": true, + "has_downloads": true, + "has_issues": true, + "has_projects": true, + "has_wiki": false, + "homepage_url": "https://django-tailwind-cli.rtfd.io/", + "html_url": "https://github.com/django-commons/django-tailwind-cli", + "http_clone_url": "https://github.com/django-commons/django-tailwind-cli.git", + "id": "django-tailwind-cli", + "ignore_vulnerability_alerts_during_read": null, + "is_template": false, + "license_template": null, + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "name": "django-tailwind-cli", + "node_id": "R_kgDOISkAkA", + "pages": [], + "primary_language": "Python", + "private": false, + "repo_id": 556335248, + "security_and_analysis": [ + { + "advanced_security": [], + "code_security": [], + "secret_scanning": [ + { + "status": "disabled" + } + ], + "secret_scanning_ai_detection": [], + "secret_scanning_non_provider_patterns": [], + "secret_scanning_push_protection": [ + { + "status": "disabled" + } + ] + } + ], + "source_owner": "", + "source_repo": "", + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "ssh_clone_url": "git@github.com:django-commons/django-tailwind-cli.git", + "svn_url": "https://github.com/django-commons/django-tailwind-cli", + "template": [], + "topics": [ + "django", + "django-application", + "python", + "tailwind", + "tailwind-css", + "tailwindcss" + ], + "visibility": "public", + "vulnerability_alerts": true, + "web_commit_signoff_required": false + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "eyJzY2hlbWFfdmVyc2lvbiI6IjEifQ==" + }, + { + "index_key": "django-tasks-scheduler", + "schema_version": 1, + "attributes": { + "allow_auto_merge": false, + "allow_merge_commit": true, + "allow_rebase_merge": false, + "allow_squash_merge": true, + "allow_update_branch": true, + "archive_on_destroy": true, + "archived": false, + "auto_init": false, + "default_branch": "master", + "delete_branch_on_merge": true, + "description": "Schedule async tasks using redis protocol. Redis/ValKey/Dragonfly or any broker using the redis protocol can be used.", + "etag": "W/\"b5bd59ac3c52adf18f6a08254529fcd527478b8f802ba77609409b8fa9073746\"", + "fork": "false", + "full_name": "django-commons/django-tasks-scheduler", + "git_clone_url": "git://github.com/django-commons/django-tasks-scheduler.git", + "gitignore_template": null, + "has_discussions": true, + "has_downloads": true, + "has_issues": true, + "has_projects": true, + "has_wiki": false, + "homepage_url": "https://django-tasks-scheduler.readthedocs.io/", + "html_url": "https://github.com/django-commons/django-tasks-scheduler", + "http_clone_url": "https://github.com/django-commons/django-tasks-scheduler.git", + "id": "django-tasks-scheduler", + "ignore_vulnerability_alerts_during_read": null, + "is_template": false, + "license_template": null, + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "name": "django-tasks-scheduler", + "node_id": "R_kgDOJzK5Kg", + "pages": [], + "primary_language": "Python", + "private": false, + "repo_id": 657635626, + "security_and_analysis": [ + { + "advanced_security": [], + "code_security": [], + "secret_scanning": [ + { + "status": "disabled" + } + ], + "secret_scanning_ai_detection": [], + "secret_scanning_non_provider_patterns": [], + "secret_scanning_push_protection": [ + { + "status": "disabled" + } + ] + } + ], + "source_owner": "", + "source_repo": "", + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "ssh_clone_url": "git@github.com:django-commons/django-tasks-scheduler.git", + "svn_url": "https://github.com/django-commons/django-tasks-scheduler", + "template": [], + "topics": [ + "background-jobs", + "django", + "django-application", + "job-queue", + "python", + "redis", + "scheduled-jobs", + "scheduled-tasks", + "task-queue", + "valkey" + ], + "visibility": "public", + "vulnerability_alerts": true, + "web_commit_signoff_required": false + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "eyJzY2hlbWFfdmVyc2lvbiI6IjEifQ==" + }, + { + "index_key": "django-typer", + "schema_version": 1, + "attributes": { + "allow_auto_merge": false, + "allow_merge_commit": true, + "allow_rebase_merge": true, + "allow_squash_merge": true, + "allow_update_branch": true, + "archive_on_destroy": true, + "archived": false, + "auto_init": false, + "default_branch": "main", + "delete_branch_on_merge": true, + "description": "Use Typer (type hints) to define the interface for your Django management commands.", + "etag": "W/\"c8018a77dc281c8eb7be7de3e9a81f0127b45718dc019ac878c5ea242b04b0f6\"", + "fork": "false", + "full_name": "django-commons/django-typer", + "git_clone_url": "git://github.com/django-commons/django-typer.git", + "gitignore_template": null, + "has_discussions": true, + "has_downloads": true, + "has_issues": true, + "has_projects": true, + "has_wiki": true, + "homepage_url": "https://django-typer.rtfd.io", + "html_url": "https://github.com/django-commons/django-typer", + "http_clone_url": "https://github.com/django-commons/django-typer.git", + "id": "django-typer", + "ignore_vulnerability_alerts_during_read": null, + "is_template": false, + "license_template": null, + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "name": "django-typer", + "node_id": "R_kgDOKkMk_Q", + "pages": [], + "primary_language": "Python", + "private": false, + "repo_id": 709043453, + "security_and_analysis": [ + { + "advanced_security": [], + "code_security": [], + "secret_scanning": [ + { + "status": "enabled" + } + ], + "secret_scanning_ai_detection": [], + "secret_scanning_non_provider_patterns": [], + "secret_scanning_push_protection": [ + { + "status": "enabled" + } + ] + } + ], + "source_owner": "", + "source_repo": "", + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "ssh_clone_url": "git@github.com:django-commons/django-typer.git", + "svn_url": "https://github.com/django-commons/django-typer", + "template": [], + "topics": [ + "admin", + "cli", + "click", + "command-line", + "commands", + "django", + "management", + "python", + "python3", + "shell", + "terminal", + "typehints", + "typer" + ], + "visibility": "public", + "vulnerability_alerts": true, + "web_commit_signoff_required": false + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "eyJzY2hlbWFfdmVyc2lvbiI6IjEifQ==" + }, + { + "index_key": "django-valkey", + "schema_version": 1, + "attributes": { + "allow_auto_merge": true, + "allow_merge_commit": true, + "allow_rebase_merge": true, + "allow_squash_merge": true, + "allow_update_branch": true, + "archive_on_destroy": true, + "archived": false, + "auto_init": false, + "default_branch": "main", + "delete_branch_on_merge": false, + "description": "a Valkey backend for django", + "etag": "W/\"900ab9cde0911515bc590810cc86f2ed47fdf3beb8b64cd1b557e7447f1e1c18\"", + "fork": "false", + "full_name": "django-commons/django-valkey", + "git_clone_url": "git://github.com/django-commons/django-valkey.git", + "gitignore_template": null, + "has_discussions": false, + "has_downloads": true, + "has_issues": true, + "has_projects": true, + "has_wiki": false, + "homepage_url": "https://django-valkey.readthedocs.io/en/latest/", + "html_url": "https://github.com/django-commons/django-valkey", + "http_clone_url": "https://github.com/django-commons/django-valkey.git", + "id": "django-valkey", + "ignore_vulnerability_alerts_during_read": null, + "is_template": false, + "license_template": null, + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "name": "django-valkey", + "node_id": "R_kgDOMsI4lw", + "pages": [], + "primary_language": "Python", + "private": false, + "repo_id": 851589271, + "security_and_analysis": [ + { + "advanced_security": [], + "code_security": [], + "secret_scanning": [ + { + "status": "disabled" + } + ], + "secret_scanning_ai_detection": [], + "secret_scanning_non_provider_patterns": [], + "secret_scanning_push_protection": [ + { + "status": "disabled" + } + ] + } + ], + "source_owner": "", + "source_repo": "", + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "ssh_clone_url": "git@github.com:django-commons/django-valkey.git", + "svn_url": "https://github.com/django-commons/django-valkey", + "template": [], + "topics": [ + "backend", + "cache", + "database", + "django", + "python", + "session", + "valkey", + "valkey-client" + ], + "visibility": "public", + "vulnerability_alerts": true, + "web_commit_signoff_required": false + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "eyJzY2hlbWFfdmVyc2lvbiI6IjEifQ==" + }, + { + "index_key": "drf-excel", + "schema_version": 1, + "attributes": { + "allow_auto_merge": false, + "allow_merge_commit": true, + "allow_rebase_merge": true, + "allow_squash_merge": true, + "allow_update_branch": true, + "archive_on_destroy": true, + "archived": false, + "auto_init": false, + "default_branch": "main", + "delete_branch_on_merge": true, + "description": "An XLSX spreadsheet renderer for Django REST Framework.", + "etag": "W/\"0a684b721c621ee7ab85891c12177aba97464c7462ba6b0aaccbdbd33ab98289\"", + "fork": "false", + "full_name": "django-commons/drf-excel", + "git_clone_url": "git://github.com/django-commons/drf-excel.git", + "gitignore_template": null, + "has_discussions": false, + "has_downloads": true, + "has_issues": true, + "has_projects": true, + "has_wiki": false, + "homepage_url": "", + "html_url": "https://github.com/django-commons/drf-excel", + "http_clone_url": "https://github.com/django-commons/drf-excel.git", + "id": "drf-excel", + "ignore_vulnerability_alerts_during_read": null, + "is_template": false, + "license_template": null, + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "name": "drf-excel", + "node_id": "MDEwOlJlcG9zaXRvcnkxMDU2ODYwODA=", + "pages": [], + "primary_language": "Python", + "private": false, + "repo_id": 105686080, + "security_and_analysis": [ + { + "advanced_security": [], + "code_security": [], + "secret_scanning": [ + { + "status": "disabled" + } + ], + "secret_scanning_ai_detection": [], + "secret_scanning_non_provider_patterns": [], + "secret_scanning_push_protection": [ + { + "status": "disabled" + } + ] + } + ], + "source_owner": "", + "source_repo": "", + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "ssh_clone_url": "git@github.com:django-commons/drf-excel.git", + "svn_url": "https://github.com/django-commons/drf-excel", + "template": [], + "topics": [], + "visibility": "public", + "vulnerability_alerts": true, + "web_commit_signoff_required": false + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "eyJzY2hlbWFfdmVyc2lvbiI6IjEifQ==" + }, + { + "index_key": "membership", + "schema_version": 1, + "attributes": { + "allow_auto_merge": false, + "allow_merge_commit": false, + "allow_rebase_merge": true, + "allow_squash_merge": true, + "allow_update_branch": true, + "archive_on_destroy": true, + "archived": false, + "auto_init": false, + "default_branch": "main", + "delete_branch_on_merge": true, + "description": "Membership repository for the django-commons organization.", + "etag": "W/\"9c5c270c4dfc9aa051791ba5dce9d16200a0f1baba4390ebb7d0693fa0f641ae\"", + "fork": "false", + "full_name": "django-commons/membership", + "git_clone_url": "git://github.com/django-commons/membership.git", + "gitignore_template": null, + "has_discussions": true, + "has_downloads": true, + "has_issues": true, + "has_projects": true, + "has_wiki": false, + "homepage_url": "", + "html_url": "https://github.com/django-commons/membership", + "http_clone_url": "https://github.com/django-commons/membership.git", + "id": "membership", + "ignore_vulnerability_alerts_during_read": null, + "is_template": false, + "license_template": null, + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "name": "membership", + "node_id": "R_kgDOLklIpA", + "pages": [], + "primary_language": "HCL", + "private": false, + "repo_id": 776554660, + "security_and_analysis": [ + { + "advanced_security": [], + "code_security": [], + "secret_scanning": [ + { + "status": "disabled" + } + ], + "secret_scanning_ai_detection": [], + "secret_scanning_non_provider_patterns": [], + "secret_scanning_push_protection": [ + { + "status": "disabled" + } + ] + } + ], + "source_owner": "", + "source_repo": "", + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "ssh_clone_url": "git@github.com:django-commons/membership.git", + "svn_url": "https://github.com/django-commons/membership", + "template": [], + "topics": [], + "visibility": "public", + "vulnerability_alerts": true, + "web_commit_signoff_required": false + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "eyJzY2hlbWFfdmVyc2lvbiI6IjEifQ==" + } + ] + }, + { + "mode": "managed", + "type": "github_repository_collaborators", + "name": "this", + "provider": "provider[\"registry.terraform.io/integrations/github\"]", + "instances": [ + { + "index_key": "axe-selenium-python", + "schema_version": 0, + "attributes": { + "id": "axe-selenium-python", + "ignore_team": [ + { + "team_id": "admins" + } + ], + "invitation_ids": {}, + "repository": "axe-selenium-python", + "team": [ + { + "permission": "admin", + "team_id": "axe-selenium-python-admins" + }, + { + "permission": "maintain", + "team_id": "axe-selenium-python-committers" + }, + { + "permission": "triage", + "team_id": "axe-selenium-python" + } + ], + "user": [] + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "github_repository.this", + "github_team.org_teams", + "github_team.repo_admin_team", + "github_team.repo_committer_team", + "github_team.repo_team" + ] + }, + { + "index_key": "best-practices", + "schema_version": 0, + "attributes": { + "id": "best-practices", + "ignore_team": [ + { + "team_id": "admins" + } + ], + "invitation_ids": {}, + "repository": "best-practices", + "team": [ + { + "permission": "admin", + "team_id": "best-practices-admins" + }, + { + "permission": "maintain", + "team_id": "best-practices-committers" + }, + { + "permission": "triage", + "team_id": "best-practices" + } + ], + "user": [] + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "github_repository.this", + "github_team.org_teams", + "github_team.repo_admin_team", + "github_team.repo_committer_team", + "github_team.repo_team" + ] + }, + { + "index_key": "django-click", + "schema_version": 0, + "attributes": { + "id": "django-click", + "ignore_team": [ + { + "team_id": "admins" + } + ], + "invitation_ids": {}, + "repository": "django-click", + "team": [ + { + "permission": "admin", + "team_id": "django-click-admins" + }, + { + "permission": "maintain", + "team_id": "django-click-committers" + }, + { + "permission": "triage", + "team_id": "django-click" + } + ], + "user": [] + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "github_repository.this", + "github_team.org_teams", + "github_team.repo_admin_team", + "github_team.repo_committer_team", + "github_team.repo_team" + ] + }, + { + "index_key": "django-cookie-consent", + "schema_version": 0, + "attributes": { + "id": "django-cookie-consent", + "ignore_team": [ + { + "team_id": "admins" + } + ], + "invitation_ids": {}, + "repository": "django-cookie-consent", + "team": [ + { + "permission": "admin", + "team_id": "django-cookie-consent-admins" + }, + { + "permission": "maintain", + "team_id": "django-cookie-consent-committers" + }, + { + "permission": "triage", + "team_id": "django-cookie-consent" + } + ], + "user": [] + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "github_repository.this", + "github_team.org_teams", + "github_team.repo_admin_team", + "github_team.repo_committer_team", + "github_team.repo_team" + ] + }, + { + "index_key": "django-debug-toolbar", + "schema_version": 0, + "attributes": { + "id": "django-debug-toolbar", + "ignore_team": [ + { + "team_id": "admins" + } + ], + "invitation_ids": {}, + "repository": "django-debug-toolbar", + "team": [ + { + "permission": "admin", + "team_id": "django-debug-toolbar-admins" + }, + { + "permission": "maintain", + "team_id": "django-debug-toolbar-committers" + }, + { + "permission": "triage", + "team_id": "django-debug-toolbar" + } + ], + "user": [] + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "github_repository.this", + "github_team.org_teams", + "github_team.repo_admin_team", + "github_team.repo_committer_team", + "github_team.repo_team" + ] + }, + { + "index_key": "django-enum", + "schema_version": 0, + "attributes": { + "id": "django-enum", + "ignore_team": [ + { + "team_id": "admins" + } + ], + "invitation_ids": {}, + "repository": "django-enum", + "team": [ + { + "permission": "admin", + "team_id": "django-enum-admins" + }, + { + "permission": "maintain", + "team_id": "django-enum-committers" + }, + { + "permission": "triage", + "team_id": "django-enum" + } + ], + "user": [] + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "github_repository.this", + "github_team.org_teams", + "github_team.repo_admin_team", + "github_team.repo_committer_team", + "github_team.repo_team" + ] + }, + { + "index_key": "django-fsm-2", + "schema_version": 0, + "attributes": { + "id": "django-fsm-2", + "ignore_team": [ + { + "team_id": "admins" + } + ], + "invitation_ids": {}, + "repository": "django-fsm-2", + "team": [ + { + "permission": "admin", + "team_id": "django-fsm-2-admins" + }, + { + "permission": "maintain", + "team_id": "django-fsm-2-committers" + }, + { + "permission": "triage", + "team_id": "django-fsm-2" + } + ], + "user": [] + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "github_repository.this", + "github_team.org_teams", + "github_team.repo_admin_team", + "github_team.repo_committer_team", + "github_team.repo_team" + ] + }, + { + "index_key": "django-prometheus", + "schema_version": 0, + "attributes": { + "id": "django-prometheus", + "ignore_team": [ + { + "team_id": "admins" + } + ], + "invitation_ids": {}, + "repository": "django-prometheus", + "team": [ + { + "permission": "admin", + "team_id": "django-prometheus-admins" + }, + { + "permission": "maintain", + "team_id": "django-prometheus-committers" + }, + { + "permission": "triage", + "team_id": "django-prometheus" + } + ], + "user": [] + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "github_repository.this", + "github_team.org_teams", + "github_team.repo_admin_team", + "github_team.repo_committer_team", + "github_team.repo_team" + ] + }, + { + "index_key": "django-simple-history", + "schema_version": 0, + "attributes": { + "id": "django-simple-history", + "ignore_team": [ + { + "team_id": "admins" + } + ], + "invitation_ids": {}, + "repository": "django-simple-history", + "team": [ + { + "permission": "admin", + "team_id": "django-simple-history-admins" + }, + { + "permission": "maintain", + "team_id": "django-simple-history-committers" + }, + { + "permission": "triage", + "team_id": "django-simple-history" + } + ], + "user": [] + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "github_repository.this", + "github_team.org_teams", + "github_team.repo_admin_team", + "github_team.repo_committer_team", + "github_team.repo_team" + ] + }, + { + "index_key": "django-tailwind-cli", + "schema_version": 0, + "attributes": { + "id": "django-tailwind-cli", + "ignore_team": [ + { + "team_id": "admins" + } + ], + "invitation_ids": {}, + "repository": "django-tailwind-cli", + "team": [ + { + "permission": "admin", + "team_id": "django-tailwind-cli-admins" + }, + { + "permission": "maintain", + "team_id": "django-tailwind-cli-committers" + }, + { + "permission": "triage", + "team_id": "django-tailwind-cli" + } + ], + "user": [] + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "github_repository.this", + "github_team.org_teams", + "github_team.repo_admin_team", + "github_team.repo_committer_team", + "github_team.repo_team" + ] + }, + { + "index_key": "django-tasks-scheduler", + "schema_version": 0, + "attributes": { + "id": "django-tasks-scheduler", + "ignore_team": [ + { + "team_id": "admins" + } + ], + "invitation_ids": {}, + "repository": "django-tasks-scheduler", + "team": [ + { + "permission": "admin", + "team_id": "django-tasks-scheduler-admins" + }, + { + "permission": "maintain", + "team_id": "django-tasks-scheduler-committers" + }, + { + "permission": "triage", + "team_id": "django-tasks-scheduler" + } + ], + "user": [] + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "github_repository.this", + "github_team.org_teams", + "github_team.repo_admin_team", + "github_team.repo_committer_team", + "github_team.repo_team" + ] + }, + { + "index_key": "django-typer", + "schema_version": 0, + "attributes": { + "id": "django-typer", + "ignore_team": [ + { + "team_id": "admins" + } + ], + "invitation_ids": {}, + "repository": "django-typer", + "team": [ + { + "permission": "admin", + "team_id": "django-typer-admins" + }, + { + "permission": "maintain", + "team_id": "django-typer-committers" + }, + { + "permission": "triage", + "team_id": "django-typer" + } + ], + "user": [] + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "github_repository.this", + "github_team.org_teams", + "github_team.repo_admin_team", + "github_team.repo_committer_team", + "github_team.repo_team" + ] + }, + { + "index_key": "django-valkey", + "schema_version": 0, + "attributes": { + "id": "django-valkey", + "ignore_team": [ + { + "team_id": "admins" + } + ], + "invitation_ids": {}, + "repository": "django-valkey", + "team": [ + { + "permission": "admin", + "team_id": "django-valkey-admins" + }, + { + "permission": "maintain", + "team_id": "django-valkey-committers" + }, + { + "permission": "triage", + "team_id": "django-valkey" + } + ], + "user": [] + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "github_repository.this", + "github_team.org_teams", + "github_team.repo_admin_team", + "github_team.repo_committer_team", + "github_team.repo_team" + ] + }, + { + "index_key": "drf-excel", + "schema_version": 0, + "attributes": { + "id": "drf-excel", + "ignore_team": [ + { + "team_id": "admins" + } + ], + "invitation_ids": {}, + "repository": "drf-excel", + "team": [ + { + "permission": "admin", + "team_id": "drf-excel-admins" + }, + { + "permission": "maintain", + "team_id": "drf-excel-committers" + }, + { + "permission": "triage", + "team_id": "drf-excel" + } + ], + "user": [] + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "github_repository.this", + "github_team.org_teams", + "github_team.repo_admin_team", + "github_team.repo_committer_team", + "github_team.repo_team" + ] + } + ] + }, + { + "mode": "managed", + "type": "github_repository_environment", + "name": "pypi", + "provider": "provider[\"registry.terraform.io/integrations/github\"]", + "instances": [ + { + "index_key": "axe-selenium-python", + "schema_version": 0, + "attributes": { + "can_admins_bypass": true, + "deployment_branch_policy": [], + "environment": "pypi", + "id": "axe-selenium-python:pypi", + "prevent_self_review": false, + "repository": "axe-selenium-python", + "reviewers": [ + { + "teams": [ + 14236311 + ], + "users": [] + } + ], + "wait_timer": 0 + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "github_team.repo_admin_team", + "github_team.repo_team" + ] + }, + { + "index_key": "best-practices", + "schema_version": 0, + "attributes": { + "can_admins_bypass": true, + "deployment_branch_policy": [], + "environment": "pypi", + "id": "best-practices:pypi", + "prevent_self_review": false, + "repository": "best-practices", + "reviewers": [ + { + "teams": [ + 9757650 + ], + "users": [] + } + ], + "wait_timer": 0 + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "eyJzY2hlbWFfdmVyc2lvbiI6IjAifQ==", + "dependencies": [ + "github_team.repo_admin_team", + "github_team.repo_team" + ] + }, + { + "index_key": "django-click", + "schema_version": 0, + "attributes": { + "can_admins_bypass": true, + "deployment_branch_policy": [], + "environment": "pypi", + "id": "django-click:pypi", + "prevent_self_review": false, + "repository": "django-click", + "reviewers": [ + { + "teams": [ + 12315701 + ], + "users": [] + } + ], + "wait_timer": 0 + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "github_team.repo_admin_team", + "github_team.repo_team" + ] + }, + { + "index_key": "django-cookie-consent", + "schema_version": 0, + "attributes": { + "can_admins_bypass": true, + "deployment_branch_policy": [], + "environment": "pypi", + "id": "django-cookie-consent:pypi", + "prevent_self_review": false, + "repository": "django-cookie-consent", + "reviewers": [ + { + "teams": [ + 13287527 + ], + "users": [] + } + ], + "wait_timer": 0 + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "github_team.repo_admin_team", + "github_team.repo_team" + ] + }, + { + "index_key": "django-debug-toolbar", + "schema_version": 0, + "attributes": { + "can_admins_bypass": true, + "deployment_branch_policy": [], + "environment": "pypi", + "id": "django-debug-toolbar:pypi", + "prevent_self_review": false, + "repository": "django-debug-toolbar", + "reviewers": [ + { + "teams": [ + 11354341 + ], + "users": [] + } + ], + "wait_timer": 0 + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "github_team.repo_admin_team", + "github_team.repo_team" + ] + }, + { + "index_key": "django-enum", + "schema_version": 0, + "attributes": { + "can_admins_bypass": true, + "deployment_branch_policy": [], + "environment": "pypi", + "id": "django-enum:pypi", + "prevent_self_review": false, + "repository": "django-enum", + "reviewers": [ + { + "teams": [ + 12828751 + ], + "users": [] + } + ], + "wait_timer": 0 + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "github_team.repo_admin_team", + "github_team.repo_team" + ] + }, + { + "index_key": "django-fsm-2", + "schema_version": 0, + "attributes": { + "can_admins_bypass": true, + "deployment_branch_policy": [], + "environment": "pypi", + "id": "django-fsm-2:pypi", + "prevent_self_review": false, + "repository": "django-fsm-2", + "reviewers": [ + { + "teams": [ + 10870432 + ], + "users": [] + } + ], + "wait_timer": 0 + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "eyJzY2hlbWFfdmVyc2lvbiI6IjAifQ==", + "dependencies": [ + "github_team.repo_admin_team", + "github_team.repo_team" + ] + }, + { + "index_key": "django-prometheus", + "schema_version": 0, + "attributes": { + "can_admins_bypass": true, + "deployment_branch_policy": [], + "environment": "pypi", + "id": "django-prometheus:pypi", + "prevent_self_review": false, + "repository": "django-prometheus", + "reviewers": [ + { + "teams": [ + 13333849 + ], + "users": [] + } + ], + "wait_timer": 0 + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "github_team.repo_admin_team", + "github_team.repo_team" + ] + }, + { + "index_key": "django-simple-history", + "schema_version": 0, + "attributes": { + "can_admins_bypass": true, + "deployment_branch_policy": [], + "environment": "pypi", + "id": "django-simple-history:pypi", + "prevent_self_review": false, + "repository": "django-simple-history", + "reviewers": [ + { + "teams": [ + 13286901 + ], + "users": [] + } + ], + "wait_timer": 0 + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "eyJzY2hlbWFfdmVyc2lvbiI6IjAifQ==", + "dependencies": [ + "github_team.repo_admin_team", + "github_team.repo_team" + ] + }, + { + "index_key": "django-tailwind-cli", + "schema_version": 0, + "attributes": { + "can_admins_bypass": true, + "deployment_branch_policy": [], + "environment": "pypi", + "id": "django-tailwind-cli:pypi", + "prevent_self_review": false, + "repository": "django-tailwind-cli", + "reviewers": [ + { + "teams": [ + 11394000 + ], + "users": [] + } + ], + "wait_timer": 0 + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "github_team.repo_admin_team", + "github_team.repo_team" + ] + }, + { + "index_key": "django-tasks-scheduler", + "schema_version": 0, + "attributes": { + "can_admins_bypass": true, + "deployment_branch_policy": [], + "environment": "pypi", + "id": "django-tasks-scheduler:pypi", + "prevent_self_review": false, + "repository": "django-tasks-scheduler", + "reviewers": [ + { + "teams": [ + 10707221 + ], + "users": [] + } + ], + "wait_timer": 0 + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "github_team.repo_admin_team", + "github_team.repo_team" + ] + }, + { + "index_key": "django-typer", + "schema_version": 0, + "attributes": { + "can_admins_bypass": true, + "deployment_branch_policy": [], + "environment": "pypi", + "id": "django-typer:pypi", + "prevent_self_review": false, + "repository": "django-typer", + "reviewers": [ + { + "teams": [ + 11217214 + ], + "users": [] + } + ], + "wait_timer": 0 + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "github_team.repo_admin_team", + "github_team.repo_team" + ] + }, + { + "index_key": "django-valkey", + "schema_version": 0, + "attributes": { + "can_admins_bypass": true, + "deployment_branch_policy": [], + "environment": "pypi", + "id": "django-valkey:pypi", + "prevent_self_review": false, + "repository": "django-valkey", + "reviewers": [ + { + "teams": [ + 13334520 + ], + "users": [] + } + ], + "wait_timer": 0 + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "github_team.repo_admin_team", + "github_team.repo_team" + ] + }, + { + "index_key": "drf-excel", + "schema_version": 0, + "attributes": { + "can_admins_bypass": true, + "deployment_branch_policy": [], + "environment": "pypi", + "id": "drf-excel:pypi", + "prevent_self_review": false, + "repository": "drf-excel", + "reviewers": [ + { + "teams": [ + 11341702 + ], + "users": [] + } + ], + "wait_timer": 0 + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "github_team.repo_admin_team", + "github_team.repo_team" + ] + } + ] + }, + { + "mode": "managed", + "type": "github_repository_environment", + "name": "testpypi", + "provider": "provider[\"registry.terraform.io/integrations/github\"]", + "instances": [ + { + "index_key": "axe-selenium-python", + "schema_version": 0, + "attributes": { + "can_admins_bypass": true, + "deployment_branch_policy": [], + "environment": "testpypi", + "id": "axe-selenium-python:testpypi", + "prevent_self_review": false, + "repository": "axe-selenium-python", + "reviewers": [], + "wait_timer": 0 + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==" + }, + { + "index_key": "best-practices", + "schema_version": 0, + "attributes": { + "can_admins_bypass": true, + "deployment_branch_policy": [], + "environment": "testpypi", + "id": "best-practices:testpypi", + "prevent_self_review": null, + "repository": "best-practices", + "reviewers": [], + "wait_timer": 0 + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "eyJzY2hlbWFfdmVyc2lvbiI6IjAifQ==" + }, + { + "index_key": "django-click", + "schema_version": 0, + "attributes": { + "can_admins_bypass": true, + "deployment_branch_policy": [], + "environment": "testpypi", + "id": "django-click:testpypi", + "prevent_self_review": false, + "repository": "django-click", + "reviewers": [], + "wait_timer": 0 + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==" + }, + { + "index_key": "django-cookie-consent", + "schema_version": 0, + "attributes": { + "can_admins_bypass": true, + "deployment_branch_policy": [], + "environment": "testpypi", + "id": "django-cookie-consent:testpypi", + "prevent_self_review": false, + "repository": "django-cookie-consent", + "reviewers": [], + "wait_timer": 0 + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==" + }, + { + "index_key": "django-debug-toolbar", + "schema_version": 0, + "attributes": { + "can_admins_bypass": true, + "deployment_branch_policy": [], + "environment": "testpypi", + "id": "django-debug-toolbar:testpypi", + "prevent_self_review": false, + "repository": "django-debug-toolbar", + "reviewers": [], + "wait_timer": 0 + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==" + }, + { + "index_key": "django-enum", + "schema_version": 0, + "attributes": { + "can_admins_bypass": true, + "deployment_branch_policy": [], + "environment": "testpypi", + "id": "django-enum:testpypi", + "prevent_self_review": false, + "repository": "django-enum", + "reviewers": [], + "wait_timer": 0 + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==" + }, + { + "index_key": "django-fsm-2", + "schema_version": 0, + "attributes": { + "can_admins_bypass": true, + "deployment_branch_policy": [], + "environment": "testpypi", + "id": "django-fsm-2:testpypi", + "prevent_self_review": null, + "repository": "django-fsm-2", + "reviewers": [], + "wait_timer": 0 + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "eyJzY2hlbWFfdmVyc2lvbiI6IjAifQ==" + }, + { + "index_key": "django-prometheus", + "schema_version": 0, + "attributes": { + "can_admins_bypass": true, + "deployment_branch_policy": [], + "environment": "testpypi", + "id": "django-prometheus:testpypi", + "prevent_self_review": false, + "repository": "django-prometheus", + "reviewers": [], + "wait_timer": 0 + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==" + }, + { + "index_key": "django-simple-history", + "schema_version": 0, + "attributes": { + "can_admins_bypass": true, + "deployment_branch_policy": [], + "environment": "testpypi", + "id": "django-simple-history:testpypi", + "prevent_self_review": null, + "repository": "django-simple-history", + "reviewers": [], + "wait_timer": 0 + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "eyJzY2hlbWFfdmVyc2lvbiI6IjAifQ==" + }, + { + "index_key": "django-tailwind-cli", + "schema_version": 0, + "attributes": { + "can_admins_bypass": true, + "deployment_branch_policy": [], + "environment": "testpypi", + "id": "django-tailwind-cli:testpypi", + "prevent_self_review": false, + "repository": "django-tailwind-cli", + "reviewers": [], + "wait_timer": 0 + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==" + }, + { + "index_key": "django-tasks-scheduler", + "schema_version": 0, + "attributes": { + "can_admins_bypass": true, + "deployment_branch_policy": [], + "environment": "testpypi", + "id": "django-tasks-scheduler:testpypi", + "prevent_self_review": false, + "repository": "django-tasks-scheduler", + "reviewers": [], + "wait_timer": 0 + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==" + }, + { + "index_key": "django-typer", + "schema_version": 0, + "attributes": { + "can_admins_bypass": true, + "deployment_branch_policy": [], + "environment": "testpypi", + "id": "django-typer:testpypi", + "prevent_self_review": false, + "repository": "django-typer", + "reviewers": [], + "wait_timer": 0 + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==" + }, + { + "index_key": "django-valkey", + "schema_version": 0, + "attributes": { + "can_admins_bypass": true, + "deployment_branch_policy": [], + "environment": "testpypi", + "id": "django-valkey:testpypi", + "prevent_self_review": false, + "repository": "django-valkey", + "reviewers": [], + "wait_timer": 0 + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==" + }, + { + "index_key": "drf-excel", + "schema_version": 0, + "attributes": { + "can_admins_bypass": true, + "deployment_branch_policy": [], + "environment": "testpypi", + "id": "drf-excel:testpypi", + "prevent_self_review": false, + "repository": "drf-excel", + "reviewers": [], + "wait_timer": 0 + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==" + } + ] + }, + { + "mode": "managed", + "type": "github_team", + "name": "org_designers_team", + "provider": "provider[\"registry.terraform.io/integrations/github\"]", + "instances": [ + { + "schema_version": 0, + "attributes": { + "create_default_maintainer": false, + "description": "Django Commons designers", + "etag": "W/\"6190db9e35543983d98c90efd5100623c9aa039b6a5c86cf4f39d884ea57b542\"", + "id": "14084892", + "ldap_dn": "", + "members_count": 12, + "name": "Designers", + "node_id": "T_kwDOCaaRBM4A1usc", + "parent_team_id": "", + "parent_team_read_id": "", + "parent_team_read_slug": "", + "privacy": "closed", + "slug": "designers" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==" + } + ] + }, + { + "mode": "managed", + "type": "github_team", + "name": "org_teams", + "provider": "provider[\"registry.terraform.io/integrations/github\"]", + "instances": [ + { + "index_key": "Admins", + "schema_version": 0, + "attributes": { + "create_default_maintainer": false, + "description": "django-commons administrators", + "etag": "W/\"5f69695e20abebe020e6c81b6e8964fa94fa8813fa3ab99a4bb84e97661fb6cb\"", + "id": "9763562", + "ldap_dn": "", + "members_count": 5, + "name": "Admins", + "node_id": "T_kwDOCaaRBM4AlPrq", + "parent_team_id": "", + "parent_team_read_id": "", + "parent_team_read_slug": "", + "privacy": "closed", + "slug": "admins" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "eyJzY2hlbWFfdmVyc2lvbiI6IjAifQ==" + } + ] + }, + { + "mode": "managed", + "type": "github_team", + "name": "repo_admin_team", + "provider": "provider[\"registry.terraform.io/integrations/github\"]", + "instances": [ + { + "index_key": "axe-selenium-python", + "schema_version": 0, + "attributes": { + "create_default_maintainer": false, + "description": "Admin team for the axe-selenium-python repository", + "etag": "W/\"1b716a4778cf4e1484e4092a91e53292612564219b7bfa6d2d2bd8c02997417e\"", + "id": "14236311", + "ldap_dn": "", + "members_count": 2, + "name": "axe-selenium-python-admins", + "node_id": "T_kwDOCaaRBM4A2TqX", + "parent_team_id": "14236309", + "parent_team_read_id": "14236309", + "parent_team_read_slug": "axe-selenium-python", + "privacy": "closed", + "slug": "axe-selenium-python-admins" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "github_team.repo_team" + ] + }, + { + "index_key": "best-practices", + "schema_version": 0, + "attributes": { + "create_default_maintainer": false, + "description": "Admin team for the best-practices repository", + "etag": "W/\"a9952481b09f4a3b97bb23e258710cd776ab139c891bc4070a4ec94b00d3bb69\"", + "id": "9757650", + "ldap_dn": "", + "members_count": 5, + "name": "best-practices-admins", + "node_id": "T_kwDOCaaRBM4AlOPS", + "parent_team_id": "9757678", + "parent_team_read_id": "9757678", + "parent_team_read_slug": "best-practices", + "privacy": "closed", + "slug": "best-practices-admins" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "github_team.repo_team" + ] + }, + { + "index_key": "django-click", + "schema_version": 0, + "attributes": { + "create_default_maintainer": false, + "description": "Admin team for the django-click repository", + "etag": "W/\"53141d12174bc422fe289a2eeaa70d180aa0d81b46797da15541c36df8e5415d\"", + "id": "12315701", + "ldap_dn": "", + "members_count": 2, + "name": "django-click-admins", + "node_id": "T_kwDOCaaRBM4Au-w1", + "parent_team_id": "12315699", + "parent_team_read_id": "12315699", + "parent_team_read_slug": "django-click", + "privacy": "closed", + "slug": "django-click-admins" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "github_team.repo_team" + ] + }, + { + "index_key": "django-cookie-consent", + "schema_version": 0, + "attributes": { + "create_default_maintainer": false, + "description": "Admin team for the django-cookie-consent repository", + "etag": "W/\"409dcbf7cf68c3abf3e19ca123c05fd6d7da91dc505f3deb975abdadb8e32bd0\"", + "id": "13287527", + "ldap_dn": "", + "members_count": 1, + "name": "django-cookie-consent-admins", + "node_id": "T_kwDOCaaRBM4AysBn", + "parent_team_id": "13287524", + "parent_team_read_id": "13287524", + "parent_team_read_slug": "django-cookie-consent", + "privacy": "closed", + "slug": "django-cookie-consent-admins" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "github_team.repo_team" + ] + }, + { + "index_key": "django-debug-toolbar", + "schema_version": 0, + "attributes": { + "create_default_maintainer": false, + "description": "Admin team for the django-debug-toolbar repository", + "etag": "W/\"dbcbea2d83a5dcf5827b865f6770dcaa6f1d8a83d3df5a3fc7421ed91958d347\"", + "id": "11354341", + "ldap_dn": "", + "members_count": 2, + "name": "django-debug-toolbar-admins", + "node_id": "T_kwDOCaaRBM4ArUDl", + "parent_team_id": "11354339", + "parent_team_read_id": "11354339", + "parent_team_read_slug": "django-debug-toolbar", + "privacy": "closed", + "slug": "django-debug-toolbar-admins" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "github_team.repo_team" + ] + }, + { + "index_key": "django-enum", + "schema_version": 0, + "attributes": { + "create_default_maintainer": false, + "description": "Admin team for the django-enum repository", + "etag": "W/\"54df55825e4db3c96d95e41e8d146477bd05bb7cc0cb22d39f8967099ccf46d5\"", + "id": "12828751", + "ldap_dn": "", + "members_count": 1, + "name": "django-enum-admins", + "node_id": "T_kwDOCaaRBM4Aw8BP", + "parent_team_id": "12828748", + "parent_team_read_id": "12828748", + "parent_team_read_slug": "django-enum", + "privacy": "closed", + "slug": "django-enum-admins" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "github_team.repo_team" + ] + }, + { + "index_key": "django-fsm-2", + "schema_version": 0, + "attributes": { + "create_default_maintainer": false, + "description": "Admin team for the django-fsm-2 repository", + "etag": "W/\"49618d76308a955741eb7bec48810a41807a9363a46c67a7a1c6dffacf251fa9\"", + "id": "10870432", + "ldap_dn": "", + "members_count": 2, + "name": "django-fsm-2-admins", + "node_id": "T_kwDOCaaRBM4Apd6g", + "parent_team_id": "10870431", + "parent_team_read_id": "10870431", + "parent_team_read_slug": "django-fsm-2", + "privacy": "closed", + "slug": "django-fsm-2-admins" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "github_team.repo_team" + ] + }, + { + "index_key": "django-prometheus", + "schema_version": 0, + "attributes": { + "create_default_maintainer": false, + "description": "Admin team for the django-prometheus repository", + "etag": "W/\"b5a7d45bad487cf990128d4a507fc441c8540573ea69c630b8219f63d7229863\"", + "id": "13333849", + "ldap_dn": "", + "members_count": 1, + "name": "django-prometheus-admins", + "node_id": "T_kwDOCaaRBM4Ay3VZ", + "parent_team_id": "13333847", + "parent_team_read_id": "13333847", + "parent_team_read_slug": "django-prometheus", + "privacy": "closed", + "slug": "django-prometheus-admins" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "github_team.repo_team" + ] + }, + { + "index_key": "django-simple-history", + "schema_version": 0, + "attributes": { + "create_default_maintainer": false, + "description": "Admin team for the django-simple-history repository", + "etag": "W/\"d0f896c678a4d6987b45e71e4f22a83474626506d90a1e87a9e22f33353ce152\"", + "id": "13286901", + "ldap_dn": "", + "members_count": 2, + "name": "django-simple-history-admins", + "node_id": "T_kwDOCaaRBM4Ayr31", + "parent_team_id": "13286898", + "parent_team_read_id": "13286898", + "parent_team_read_slug": "django-simple-history", + "privacy": "closed", + "slug": "django-simple-history-admins" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "eyJzY2hlbWFfdmVyc2lvbiI6IjAifQ==", + "dependencies": [ + "github_team.repo_team" + ] + }, + { + "index_key": "django-tailwind-cli", + "schema_version": 0, + "attributes": { + "create_default_maintainer": false, + "description": "Admin team for the django-tailwind-cli repository", + "etag": "W/\"3a7359d38703c04abe75db6226c8fcee5a52dfec29c01970f4e7b52a6fd76d64\"", + "id": "11394000", + "ldap_dn": "", + "members_count": 1, + "name": "django-tailwind-cli-admins", + "node_id": "T_kwDOCaaRBM4ArdvQ", + "parent_team_id": "11393999", + "parent_team_read_id": "11393999", + "parent_team_read_slug": "django-tailwind-cli", + "privacy": "closed", + "slug": "django-tailwind-cli-admins" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "github_team.repo_team" + ] + }, + { + "index_key": "django-tasks-scheduler", + "schema_version": 0, + "attributes": { + "create_default_maintainer": false, + "description": "Admin team for the django-tasks-scheduler repository", + "etag": "W/\"25c7a9af7bbffa5480ce74657e9441629a48c03057e6ce16f92fd040cca89af7\"", + "id": "10707221", + "ldap_dn": "", + "members_count": 1, + "name": "django-tasks-scheduler-admins", + "node_id": "T_kwDOCaaRBM4Ao2EV", + "parent_team_id": "10707217", + "parent_team_read_id": "10707217", + "parent_team_read_slug": "django-tasks-scheduler", + "privacy": "closed", + "slug": "django-tasks-scheduler-admins" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "github_team.repo_team" + ] + }, + { + "index_key": "django-typer", + "schema_version": 0, + "attributes": { + "create_default_maintainer": false, + "description": "Admin team for the django-typer repository", + "etag": "W/\"38726b713574cc9c3d10ad6489a3d86f4ef5e077da1e3d848ed84f9ab662c447\"", + "id": "11217214", + "ldap_dn": "", + "members_count": 2, + "name": "django-typer-admins", + "node_id": "T_kwDOCaaRBM4Aqyk-", + "parent_team_id": "11217213", + "parent_team_read_id": "11217213", + "parent_team_read_slug": "django-typer", + "privacy": "closed", + "slug": "django-typer-admins" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "github_team.repo_team" + ] + }, + { + "index_key": "django-valkey", + "schema_version": 0, + "attributes": { + "create_default_maintainer": false, + "description": "Admin team for the django-valkey repository", + "etag": "W/\"0ad2a3fc69034104d1a2c3c337d8a35717ecad3d4b8cc1a1855bf4f8aedd0a97\"", + "id": "13334520", + "ldap_dn": "", + "members_count": 1, + "name": "django-valkey-admins", + "node_id": "T_kwDOCaaRBM4Ay3f4", + "parent_team_id": "13334519", + "parent_team_read_id": "13334519", + "parent_team_read_slug": "django-valkey", + "privacy": "closed", + "slug": "django-valkey-admins" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "github_team.repo_team" + ] + }, + { + "index_key": "drf-excel", + "schema_version": 0, + "attributes": { + "create_default_maintainer": false, + "description": "Admin team for the drf-excel repository", + "etag": "W/\"b9d767d363ae342810d48aa7ce703de1828198c41c33695e8e8169663dd70109\"", + "id": "11341702", + "ldap_dn": "", + "members_count": 2, + "name": "drf-excel-admins", + "node_id": "T_kwDOCaaRBM4ArQ-G", + "parent_team_id": "11341700", + "parent_team_read_id": "11341700", + "parent_team_read_slug": "drf-excel", + "privacy": "closed", + "slug": "drf-excel-admins" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "github_team.repo_team" + ] + } + ] + }, + { + "mode": "managed", + "type": "github_team", + "name": "repo_committer_team", + "provider": "provider[\"registry.terraform.io/integrations/github\"]", + "instances": [ + { + "index_key": "axe-selenium-python", + "schema_version": 0, + "attributes": { + "create_default_maintainer": false, + "description": "Committers team for the axe-selenium-python repository", + "etag": "W/\"8b372c8bd9fa0d3c35b2bbf4f9544e6a076cd41261befaccd6d05a65d6bb3e2c\"", + "id": "14236310", + "ldap_dn": "", + "members_count": 0, + "name": "axe-selenium-python-committers", + "node_id": "T_kwDOCaaRBM4A2TqW", + "parent_team_id": "14236309", + "parent_team_read_id": "14236309", + "parent_team_read_slug": "axe-selenium-python", + "privacy": "closed", + "slug": "axe-selenium-python-committers" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "github_team.repo_team" + ] + }, + { + "index_key": "best-practices", + "schema_version": 0, + "attributes": { + "create_default_maintainer": false, + "description": "Committers team for the best-practices repository", + "etag": "W/\"5a037ab06c90e215ee037e35c16c7057b9dda74978b2280b2a04f354d284450d\"", + "id": "9757668", + "ldap_dn": "", + "members_count": 1, + "name": "best-practices-committers", + "node_id": "T_kwDOCaaRBM4AlOPk", + "parent_team_id": "9757678", + "parent_team_read_id": "9757678", + "parent_team_read_slug": "best-practices", + "privacy": "closed", + "slug": "best-practices-committers" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "github_team.repo_team" + ] + }, + { + "index_key": "django-click", + "schema_version": 0, + "attributes": { + "create_default_maintainer": false, + "description": "Committers team for the django-click repository", + "etag": "W/\"5122202fb8043525a1a51422c2a30928018b494dee2747ffc0f32c1ff01bd811\"", + "id": "12315700", + "ldap_dn": "", + "members_count": 1, + "name": "django-click-committers", + "node_id": "T_kwDOCaaRBM4Au-w0", + "parent_team_id": "12315699", + "parent_team_read_id": "12315699", + "parent_team_read_slug": "django-click", + "privacy": "closed", + "slug": "django-click-committers" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "github_team.repo_team" + ] + }, + { + "index_key": "django-cookie-consent", + "schema_version": 0, + "attributes": { + "create_default_maintainer": false, + "description": "Committers team for the django-cookie-consent repository", + "etag": "W/\"7cba0ca6c519109cf86147b9273499b90ff89ff3882725a27bbc6f02d5ea9545\"", + "id": "13287526", + "ldap_dn": "", + "members_count": 1, + "name": "django-cookie-consent-committers", + "node_id": "T_kwDOCaaRBM4AysBm", + "parent_team_id": "13287524", + "parent_team_read_id": "13287524", + "parent_team_read_slug": "django-cookie-consent", + "privacy": "closed", + "slug": "django-cookie-consent-committers" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "github_team.repo_team" + ] + }, + { + "index_key": "django-debug-toolbar", + "schema_version": 0, + "attributes": { + "create_default_maintainer": false, + "description": "Committers team for the django-debug-toolbar repository", + "etag": "W/\"e3ef04436477b76b504866b3ce4732cebd6dfae0e04127cb853d28af493d9801\"", + "id": "11354340", + "ldap_dn": "", + "members_count": 2, + "name": "django-debug-toolbar-committers", + "node_id": "T_kwDOCaaRBM4ArUDk", + "parent_team_id": "11354339", + "parent_team_read_id": "11354339", + "parent_team_read_slug": "django-debug-toolbar", + "privacy": "closed", + "slug": "django-debug-toolbar-committers" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "github_team.repo_team" + ] + }, + { + "index_key": "django-enum", + "schema_version": 0, + "attributes": { + "create_default_maintainer": false, + "description": "Committers team for the django-enum repository", + "etag": "W/\"131548eec956790a3e673602a5fa78731199753a2e5d62260b9fb400d874e28b\"", + "id": "12828750", + "ldap_dn": "", + "members_count": 0, + "name": "django-enum-committers", + "node_id": "T_kwDOCaaRBM4Aw8BO", + "parent_team_id": "12828748", + "parent_team_read_id": "12828748", + "parent_team_read_slug": "django-enum", + "privacy": "closed", + "slug": "django-enum-committers" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "github_team.repo_team" + ] + }, + { + "index_key": "django-fsm-2", + "schema_version": 0, + "attributes": { + "create_default_maintainer": false, + "description": "Committers team for the django-fsm-2 repository", + "etag": "W/\"c31a6f470294785a158a9435ace2b4eccfd0dea48631188d2d981b0db4b34923\"", + "id": "10870433", + "ldap_dn": "", + "members_count": 0, + "name": "django-fsm-2-committers", + "node_id": "T_kwDOCaaRBM4Apd6h", + "parent_team_id": "10870431", + "parent_team_read_id": "10870431", + "parent_team_read_slug": "django-fsm-2", + "privacy": "closed", + "slug": "django-fsm-2-committers" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "github_team.repo_team" + ] + }, + { + "index_key": "django-prometheus", + "schema_version": 0, + "attributes": { + "create_default_maintainer": false, + "description": "Committers team for the django-prometheus repository", + "etag": "W/\"14d03c00525d3340e0dc548cd4d2642ef617db43b1dfad8466ca692a71c86bff\"", + "id": "13333848", + "ldap_dn": "", + "members_count": 0, + "name": "django-prometheus-committers", + "node_id": "T_kwDOCaaRBM4Ay3VY", + "parent_team_id": "13333847", + "parent_team_read_id": "13333847", + "parent_team_read_slug": "django-prometheus", + "privacy": "closed", + "slug": "django-prometheus-committers" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "github_team.repo_team" + ] + }, + { + "index_key": "django-simple-history", + "schema_version": 0, + "attributes": { + "create_default_maintainer": false, + "description": "Committers team for the django-simple-history repository", + "etag": "W/\"f0238525e1f06627cd74f11233207922c880fbad29d1015bbb903e9b5260e1f5\"", + "id": "13286900", + "ldap_dn": "", + "members_count": 0, + "name": "django-simple-history-committers", + "node_id": "T_kwDOCaaRBM4Ayr30", + "parent_team_id": "13286898", + "parent_team_read_id": "13286898", + "parent_team_read_slug": "django-simple-history", + "privacy": "closed", + "slug": "django-simple-history-committers" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "eyJzY2hlbWFfdmVyc2lvbiI6IjAifQ==", + "dependencies": [ + "github_team.repo_team" + ] + }, + { + "index_key": "django-tailwind-cli", + "schema_version": 0, + "attributes": { + "create_default_maintainer": false, + "description": "Committers team for the django-tailwind-cli repository", + "etag": "W/\"1f13248bbf957fc4b5bb70a5b1d980e3ba9f19520dd5935b0eb412b07735ffaf\"", + "id": "11394001", + "ldap_dn": "", + "members_count": 0, + "name": "django-tailwind-cli-committers", + "node_id": "T_kwDOCaaRBM4ArdvR", + "parent_team_id": "11393999", + "parent_team_read_id": "11393999", + "parent_team_read_slug": "django-tailwind-cli", + "privacy": "closed", + "slug": "django-tailwind-cli-committers" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "github_team.repo_team" + ] + }, + { + "index_key": "django-tasks-scheduler", + "schema_version": 0, + "attributes": { + "create_default_maintainer": false, + "description": "Committers team for the django-tasks-scheduler repository", + "etag": "W/\"8f038ac96223cefd39be48636c82fab559c866510e8de7fd2533d7de79feedbe\"", + "id": "10707220", + "ldap_dn": "", + "members_count": 2, + "name": "django-tasks-scheduler-committers", + "node_id": "T_kwDOCaaRBM4Ao2EU", + "parent_team_id": "10707217", + "parent_team_read_id": "10707217", + "parent_team_read_slug": "django-tasks-scheduler", + "privacy": "closed", + "slug": "django-tasks-scheduler-committers" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "github_team.repo_team" + ] + }, + { + "index_key": "django-typer", + "schema_version": 0, + "attributes": { + "create_default_maintainer": false, + "description": "Committers team for the django-typer repository", + "etag": "W/\"241c8fa9d2ab7c309003c093b062bfb1c039b518d768355ee57c80552a131b84\"", + "id": "11217215", + "ldap_dn": "", + "members_count": 0, + "name": "django-typer-committers", + "node_id": "T_kwDOCaaRBM4Aqyk_", + "parent_team_id": "11217213", + "parent_team_read_id": "11217213", + "parent_team_read_slug": "django-typer", + "privacy": "closed", + "slug": "django-typer-committers" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "github_team.repo_team" + ] + }, + { + "index_key": "django-valkey", + "schema_version": 0, + "attributes": { + "create_default_maintainer": false, + "description": "Committers team for the django-valkey repository", + "etag": "W/\"3ae8d8bf12a31aaf3e6446f714c46e6a87651cd286038937c2fff23ffb416046\"", + "id": "13334521", + "ldap_dn": "", + "members_count": 0, + "name": "django-valkey-committers", + "node_id": "T_kwDOCaaRBM4Ay3f5", + "parent_team_id": "13334519", + "parent_team_read_id": "13334519", + "parent_team_read_slug": "django-valkey", + "privacy": "closed", + "slug": "django-valkey-committers" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "github_team.repo_team" + ] + }, + { + "index_key": "drf-excel", + "schema_version": 0, + "attributes": { + "create_default_maintainer": false, + "description": "Committers team for the drf-excel repository", + "etag": "W/\"9ea6247aba2e630db5a8458f35acac215817072a526d4d433364ab85a3c072ad\"", + "id": "11341703", + "ldap_dn": "", + "members_count": 1, + "name": "drf-excel-committers", + "node_id": "T_kwDOCaaRBM4ArQ-H", + "parent_team_id": "11341700", + "parent_team_read_id": "11341700", + "parent_team_read_slug": "drf-excel", + "privacy": "closed", + "slug": "drf-excel-committers" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "github_team.repo_team" + ] + } + ] + }, + { + "mode": "managed", + "type": "github_team", + "name": "repo_team", + "provider": "provider[\"registry.terraform.io/integrations/github\"]", + "instances": [ + { + "index_key": "axe-selenium-python", + "schema_version": 0, + "attributes": { + "create_default_maintainer": false, + "description": "Main team for the axe-selenium-python repository", + "etag": "W/\"aa16d5b523c9b1d07c0bfc2feceec1e36ed1a9f01074360afe4b67f9eb76fa38\"", + "id": "14236309", + "ldap_dn": "", + "members_count": 2, + "name": "axe-selenium-python", + "node_id": "T_kwDOCaaRBM4A2TqV", + "parent_team_id": "", + "parent_team_read_id": "", + "parent_team_read_slug": "", + "privacy": "closed", + "slug": "axe-selenium-python" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==" + }, + { + "index_key": "best-practices", + "schema_version": 0, + "attributes": { + "create_default_maintainer": false, + "description": "Main team for the best-practices repository", + "etag": "W/\"fea8ddf124465ec6048bc415c62fa198fa31e67880de00b963cdd121e2058116\"", + "id": "9757678", + "ldap_dn": "", + "members_count": 6, + "name": "best-practices", + "node_id": "T_kwDOCaaRBM4AlOPu", + "parent_team_id": "", + "parent_team_read_id": "", + "parent_team_read_slug": "", + "privacy": "closed", + "slug": "best-practices" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==" + }, + { + "index_key": "django-click", + "schema_version": 0, + "attributes": { + "create_default_maintainer": false, + "description": "Main team for the django-click repository", + "etag": "W/\"a943ab0dec3f3aaf6383ed16ed28b3fdac5ae57197c354a30ae64bac21d84fa9\"", + "id": "12315699", + "ldap_dn": "", + "members_count": 3, + "name": "django-click", + "node_id": "T_kwDOCaaRBM4Au-wz", + "parent_team_id": "", + "parent_team_read_id": "", + "parent_team_read_slug": "", + "privacy": "closed", + "slug": "django-click" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==" + }, + { + "index_key": "django-cookie-consent", + "schema_version": 0, + "attributes": { + "create_default_maintainer": false, + "description": "Main team for the django-cookie-consent repository", + "etag": "W/\"3a3556a6142536571cf3bf33701fffbcefa21f713bb077d22706fbccc83fe4d6\"", + "id": "13287524", + "ldap_dn": "", + "members_count": 2, + "name": "django-cookie-consent", + "node_id": "T_kwDOCaaRBM4AysBk", + "parent_team_id": "", + "parent_team_read_id": "", + "parent_team_read_slug": "", + "privacy": "closed", + "slug": "django-cookie-consent" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==" + }, + { + "index_key": "django-debug-toolbar", + "schema_version": 0, + "attributes": { + "create_default_maintainer": false, + "description": "Main team for the django-debug-toolbar repository", + "etag": "W/\"557a630ecb0563f23b476db8a7545f31f67198ecb9cfbfbab55e81c2d310897b\"", + "id": "11354339", + "ldap_dn": "", + "members_count": 14, + "name": "django-debug-toolbar", + "node_id": "T_kwDOCaaRBM4ArUDj", + "parent_team_id": "", + "parent_team_read_id": "", + "parent_team_read_slug": "", + "privacy": "closed", + "slug": "django-debug-toolbar" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==" + }, + { + "index_key": "django-enum", + "schema_version": 0, + "attributes": { + "create_default_maintainer": false, + "description": "Main team for the django-enum repository", + "etag": "W/\"53d755d0ebad8d8ccafdedcce6059a21a923b990b942864ffc0a25e7a7cf945b\"", + "id": "12828748", + "ldap_dn": "", + "members_count": 1, + "name": "django-enum", + "node_id": "T_kwDOCaaRBM4Aw8BM", + "parent_team_id": "", + "parent_team_read_id": "", + "parent_team_read_slug": "", + "privacy": "closed", + "slug": "django-enum" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==" + }, + { + "index_key": "django-fsm-2", + "schema_version": 0, + "attributes": { + "create_default_maintainer": false, + "description": "Main team for the django-fsm-2 repository", + "etag": "W/\"52364710686a5ee16685e9cf4886b5f3e492fd7f2129f60f035a571518510556\"", + "id": "10870431", + "ldap_dn": "", + "members_count": 3, + "name": "django-fsm-2", + "node_id": "T_kwDOCaaRBM4Apd6f", + "parent_team_id": "", + "parent_team_read_id": "", + "parent_team_read_slug": "", + "privacy": "closed", + "slug": "django-fsm-2" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==" + }, + { + "index_key": "django-prometheus", + "schema_version": 0, + "attributes": { + "create_default_maintainer": false, + "description": "Main team for the django-prometheus repository", + "etag": "W/\"96e3f9996ed4e65290bf1587e5078af21d71aca499ec15fc9162c6aaab93260c\"", + "id": "13333847", + "ldap_dn": "", + "members_count": 1, + "name": "django-prometheus", + "node_id": "T_kwDOCaaRBM4Ay3VX", + "parent_team_id": "", + "parent_team_read_id": "", + "parent_team_read_slug": "", + "privacy": "closed", + "slug": "django-prometheus" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==" + }, + { + "index_key": "django-simple-history", + "schema_version": 0, + "attributes": { + "create_default_maintainer": false, + "description": "Main team for the django-simple-history repository", + "etag": "W/\"7e0303bced30a4ffc52a3a30f4a20b3e51d04c8ceed1ffd5996cbc0dd2001265\"", + "id": "13286898", + "ldap_dn": "", + "members_count": 2, + "name": "django-simple-history", + "node_id": "T_kwDOCaaRBM4Ayr3y", + "parent_team_id": "", + "parent_team_read_id": "", + "parent_team_read_slug": "", + "privacy": "closed", + "slug": "django-simple-history" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "eyJzY2hlbWFfdmVyc2lvbiI6IjAifQ==" + }, + { + "index_key": "django-tailwind-cli", + "schema_version": 0, + "attributes": { + "create_default_maintainer": false, + "description": "Main team for the django-tailwind-cli repository", + "etag": "W/\"b4e8eac611fab4a37231285a81498e27227a4857e32533d4e443c586af3ebb5e\"", + "id": "11393999", + "ldap_dn": "", + "members_count": 1, + "name": "django-tailwind-cli", + "node_id": "T_kwDOCaaRBM4ArdvP", + "parent_team_id": "", + "parent_team_read_id": "", + "parent_team_read_slug": "", + "privacy": "closed", + "slug": "django-tailwind-cli" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==" + }, + { + "index_key": "django-tasks-scheduler", + "schema_version": 0, + "attributes": { + "create_default_maintainer": false, + "description": "Main team for the django-tasks-scheduler repository", + "etag": "W/\"3470f04d33eb592033b39ac5f023c2c3c28ab5bd6186cb641b8c0b4143e7585e\"", + "id": "10707217", + "ldap_dn": "", + "members_count": 3, + "name": "django-tasks-scheduler", + "node_id": "T_kwDOCaaRBM4Ao2ER", + "parent_team_id": "", + "parent_team_read_id": "", + "parent_team_read_slug": "", + "privacy": "closed", + "slug": "django-tasks-scheduler" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==" + }, + { + "index_key": "django-typer", + "schema_version": 0, + "attributes": { + "create_default_maintainer": false, + "description": "Main team for the django-typer repository", + "etag": "W/\"b7760c610a071b6a0af0bf0765c69b4fa866922f62afe82a5509fe9ef957ec07\"", + "id": "11217213", + "ldap_dn": "", + "members_count": 2, + "name": "django-typer", + "node_id": "T_kwDOCaaRBM4Aqyk9", + "parent_team_id": "", + "parent_team_read_id": "", + "parent_team_read_slug": "", + "privacy": "closed", + "slug": "django-typer" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==" + }, + { + "index_key": "django-valkey", + "schema_version": 0, + "attributes": { + "create_default_maintainer": false, + "description": "Main team for the django-valkey repository", + "etag": "W/\"ca83497b3e3acbae2b0c6dd35f5efb9139f8a20e609324b7e6077014ee9306b5\"", + "id": "13334519", + "ldap_dn": "", + "members_count": 1, + "name": "django-valkey", + "node_id": "T_kwDOCaaRBM4Ay3f3", + "parent_team_id": "", + "parent_team_read_id": "", + "parent_team_read_slug": "", + "privacy": "closed", + "slug": "django-valkey" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==" + }, + { + "index_key": "drf-excel", + "schema_version": 0, + "attributes": { + "create_default_maintainer": false, + "description": "Main team for the drf-excel repository", + "etag": "W/\"f7f780c680b60219a01e34077d7a34050c6eb61d6f62456f2dc573246f722049\"", + "id": "11341700", + "ldap_dn": "", + "members_count": 4, + "name": "drf-excel", + "node_id": "T_kwDOCaaRBM4ArQ-E", + "parent_team_id": "", + "parent_team_read_id": "", + "parent_team_read_slug": "", + "privacy": "closed", + "slug": "drf-excel" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==" + } + ] + }, + { + "mode": "managed", + "type": "github_team_members", + "name": "org_designers_team_members", + "provider": "provider[\"registry.terraform.io/integrations/github\"]", + "instances": [ + { + "schema_version": 0, + "attributes": { + "id": "14084892", + "members": [ + { + "role": "member", + "username": "Shrikantgiri25" + }, + { + "role": "member", + "username": "Violette-Allotey" + }, + { + "role": "member", + "username": "Zakui" + }, + { + "role": "member", + "username": "akshayvinchurkar" + }, + { + "role": "member", + "username": "federicobond" + }, + { + "role": "member", + "username": "jmgutu" + }, + { + "role": "member", + "username": "johnatanmoran" + }, + { + "role": "member", + "username": "mzemlickis" + }, + { + "role": "member", + "username": "okotdaniel" + }, + { + "role": "member", + "username": "p-r-a-v-i-n" + }, + { + "role": "member", + "username": "vinlawz" + }, + { + "role": "member", + "username": "viscofuse" + } + ], + "team_id": "14084892" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "github_team.org_designers_team" + ] + } + ] + }, + { + "mode": "managed", + "type": "github_team_members", + "name": "org_team_members", + "provider": "provider[\"registry.terraform.io/integrations/github\"]", + "instances": [ + { + "index_key": "Admins", + "schema_version": 0, + "attributes": { + "id": "9763562", + "members": [ + { + "role": "maintainer", + "username": "Stormheg" + }, + { + "role": "maintainer", + "username": "cunla" + }, + { + "role": "maintainer", + "username": "ryancheley" + }, + { + "role": "maintainer", + "username": "tim-schilling" + }, + { + "role": "maintainer", + "username": "williln" + } + ], + "team_id": "9763562" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "eyJzY2hlbWFfdmVyc2lvbiI6IjAifQ==", + "dependencies": [ + "github_team.org_teams" + ] + } + ] + }, + { + "mode": "managed", + "type": "github_team_members", + "name": "repo_admin_members", + "provider": "provider[\"registry.terraform.io/integrations/github\"]", + "instances": [ + { + "index_key": "axe-selenium-python", + "schema_version": 0, + "attributes": { + "id": "axe-selenium-python-admins", + "members": [ + { + "role": "member", + "username": "knyghty" + }, + { + "role": "member", + "username": "thibaudcolas" + } + ], + "team_id": "axe-selenium-python-admins" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "github_team.repo_admin_team", + "github_team.repo_team" + ] + }, + { + "index_key": "best-practices", + "schema_version": 0, + "attributes": { + "id": "best-practices-admins", + "members": [ + { + "role": "maintainer", + "username": "Stormheg" + }, + { + "role": "maintainer", + "username": "cunla" + }, + { + "role": "maintainer", + "username": "ryancheley" + }, + { + "role": "maintainer", + "username": "tim-schilling" + }, + { + "role": "maintainer", + "username": "williln" + } + ], + "team_id": "best-practices-admins" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "github_team.repo_admin_team", + "github_team.repo_team" + ] + }, + { + "index_key": "django-click", + "schema_version": 0, + "attributes": { + "id": "django-click-admins", + "members": [ + { + "role": "member", + "username": "FlipperPA" + }, + { + "role": "member", + "username": "GaretJax" + } + ], + "team_id": "django-click-admins" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "github_team.repo_admin_team", + "github_team.repo_team" + ] + }, + { + "index_key": "django-cookie-consent", + "schema_version": 0, + "attributes": { + "id": "django-cookie-consent-admins", + "members": [ + { + "role": "member", + "username": "sergei-maertens" + } + ], + "team_id": "django-cookie-consent-admins" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "github_team.repo_admin_team", + "github_team.repo_team" + ] + }, + { + "index_key": "django-debug-toolbar", + "schema_version": 0, + "attributes": { + "id": "django-debug-toolbar-admins", + "members": [ + { + "role": "maintainer", + "username": "tim-schilling" + }, + { + "role": "member", + "username": "matthiask" + } + ], + "team_id": "django-debug-toolbar-admins" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "github_team.repo_admin_team", + "github_team.repo_team" + ] + }, + { + "index_key": "django-enum", + "schema_version": 0, + "attributes": { + "id": "django-enum-admins", + "members": [ + { + "role": "member", + "username": "bckohan" + } + ], + "team_id": "django-enum-admins" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "github_team.repo_admin_team", + "github_team.repo_team" + ] + }, + { + "index_key": "django-fsm-2", + "schema_version": 0, + "attributes": { + "id": "django-fsm-2-admins", + "members": [ + { + "role": "member", + "username": "Natim" + }, + { + "role": "member", + "username": "pfouque" + } + ], + "team_id": "django-fsm-2-admins" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "github_team.repo_admin_team", + "github_team.repo_team" + ] + }, + { + "index_key": "django-prometheus", + "schema_version": 0, + "attributes": { + "id": "django-prometheus-admins", + "members": [ + { + "role": "member", + "username": "asherf" + } + ], + "team_id": "django-prometheus-admins" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "github_team.repo_admin_team", + "github_team.repo_team" + ] + }, + { + "index_key": "django-simple-history", + "schema_version": 0, + "attributes": { + "id": "django-simple-history-admins", + "members": [ + { + "role": "maintainer", + "username": "tim-schilling" + }, + { + "role": "member", + "username": "ddabble" + } + ], + "team_id": "django-simple-history-admins" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "github_team.repo_admin_team", + "github_team.repo_team" + ] + }, + { + "index_key": "django-tailwind-cli", + "schema_version": 0, + "attributes": { + "id": "django-tailwind-cli-admins", + "members": [ + { + "role": "member", + "username": "oliverandrich" + } + ], + "team_id": "django-tailwind-cli-admins" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "github_team.repo_admin_team", + "github_team.repo_team" + ] + }, + { + "index_key": "django-tasks-scheduler", + "schema_version": 0, + "attributes": { + "id": "django-tasks-scheduler-admins", + "members": [ + { + "role": "maintainer", + "username": "cunla" + } + ], + "team_id": "django-tasks-scheduler-admins" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "github_team.repo_admin_team", + "github_team.repo_team" + ] + }, + { + "index_key": "django-typer", + "schema_version": 0, + "attributes": { + "id": "django-typer-admins", + "members": [ + { + "role": "member", + "username": "bckohan" + }, + { + "role": "member", + "username": "oliverandrich" + } + ], + "team_id": "django-typer-admins" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "github_team.repo_admin_team", + "github_team.repo_team" + ] + }, + { + "index_key": "django-valkey", + "schema_version": 0, + "attributes": { + "id": "django-valkey-admins", + "members": [ + { + "role": "member", + "username": "amirreza8002" + } + ], + "team_id": "django-valkey-admins" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "github_team.repo_admin_team", + "github_team.repo_team" + ] + }, + { + "index_key": "drf-excel", + "schema_version": 0, + "attributes": { + "id": "drf-excel-admins", + "members": [ + { + "role": "member", + "username": "FlipperPA" + }, + { + "role": "member", + "username": "browniebroke" + } + ], + "team_id": "drf-excel-admins" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "github_team.repo_admin_team", + "github_team.repo_team" + ] + } + ] + }, + { + "mode": "managed", + "type": "github_team_members", + "name": "repo_committer_team_members", + "provider": "provider[\"registry.terraform.io/integrations/github\"]", + "instances": [ + { + "index_key": "best-practices", + "schema_version": 0, + "attributes": { + "id": "best-practices-committers", + "members": [ + { + "role": "member", + "username": "priyapahwa" + } + ], + "team_id": "best-practices-committers" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "github_team.repo_committer_team", + "github_team.repo_team" + ] + }, + { + "index_key": "django-click", + "schema_version": 0, + "attributes": { + "id": "django-click-committers", + "members": [ + { + "role": "member", + "username": "ulgens" + } + ], + "team_id": "django-click-committers" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "github_team.repo_committer_team", + "github_team.repo_team" + ] + }, + { + "index_key": "django-cookie-consent", + "schema_version": 0, + "attributes": { + "id": "django-cookie-consent-committers", + "members": [ + { + "role": "member", + "username": "MrCordeiro" + } + ], + "team_id": "django-cookie-consent-committers" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "github_team.repo_committer_team", + "github_team.repo_team" + ] + }, + { + "index_key": "django-debug-toolbar", + "schema_version": 0, + "attributes": { + "id": "django-debug-toolbar-committers", + "members": [ + { + "role": "member", + "username": "elineda" + }, + { + "role": "member", + "username": "salty-ivy" + } + ], + "team_id": "django-debug-toolbar-committers" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "github_team.repo_committer_team", + "github_team.repo_team" + ] + }, + { + "index_key": "django-tasks-scheduler", + "schema_version": 0, + "attributes": { + "id": "django-tasks-scheduler-committers", + "members": [ + { + "role": "member", + "username": "DhavalGojiya" + }, + { + "role": "member", + "username": "cclauss" + } + ], + "team_id": "django-tasks-scheduler-committers" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "github_team.repo_committer_team", + "github_team.repo_team" + ] + }, + { + "index_key": "drf-excel", + "schema_version": 0, + "attributes": { + "id": "drf-excel-committers", + "members": [ + { + "role": "member", + "username": "rptmat57" + } + ], + "team_id": "drf-excel-committers" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "github_team.repo_committer_team", + "github_team.repo_team" + ] + } + ] + }, + { + "mode": "managed", + "type": "github_team_members", + "name": "repo_team_members", + "provider": "provider[\"registry.terraform.io/integrations/github\"]", + "instances": [ + { + "index_key": "axe-selenium-python", + "schema_version": 0, + "attributes": { + "id": "axe-selenium-python", + "members": [ + { + "role": "member", + "username": "knyghty" + }, + { + "role": "member", + "username": "thibaudcolas" + } + ], + "team_id": "axe-selenium-python" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "github_team.repo_team" + ] + }, + { + "index_key": "best-practices", + "schema_version": 0, + "attributes": { + "id": "best-practices", + "members": [ + { + "role": "maintainer", + "username": "Stormheg" + }, + { + "role": "maintainer", + "username": "cunla" + }, + { + "role": "maintainer", + "username": "ryancheley" + }, + { + "role": "maintainer", + "username": "tim-schilling" + }, + { + "role": "maintainer", + "username": "williln" + }, + { + "role": "member", + "username": "priyapahwa" + } + ], + "team_id": "best-practices" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "github_team.repo_team" + ] + }, + { + "index_key": "django-click", + "schema_version": 0, + "attributes": { + "id": "django-click", + "members": [ + { + "role": "member", + "username": "FlipperPA" + }, + { + "role": "member", + "username": "GaretJax" + }, + { + "role": "member", + "username": "ulgens" + } + ], + "team_id": "django-click" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "github_team.repo_team" + ] + }, + { + "index_key": "django-cookie-consent", + "schema_version": 0, + "attributes": { + "id": "django-cookie-consent", + "members": [ + { + "role": "member", + "username": "MrCordeiro" + }, + { + "role": "member", + "username": "sergei-maertens" + } + ], + "team_id": "django-cookie-consent" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "github_team.repo_team" + ] + }, + { + "index_key": "django-debug-toolbar", + "schema_version": 0, + "attributes": { + "id": "django-debug-toolbar", + "members": [ + { + "role": "maintainer", + "username": "tim-schilling" + }, + { + "role": "member", + "username": "Chiemezuo" + }, + { + "role": "member", + "username": "JohananOppongAmoateng" + }, + { + "role": "member", + "username": "VeldaKiara" + }, + { + "role": "member", + "username": "Zakui" + }, + { + "role": "member", + "username": "andoriyaprashant" + }, + { + "role": "member", + "username": "blingblin-g" + }, + { + "role": "member", + "username": "devatbosch" + }, + { + "role": "member", + "username": "dr-rompecabezas" + }, + { + "role": "member", + "username": "elineda" + }, + { + "role": "member", + "username": "federicobond" + }, + { + "role": "member", + "username": "jmgutu" + }, + { + "role": "member", + "username": "matthiask" + }, + { + "role": "member", + "username": "salty-ivy" + } + ], + "team_id": "django-debug-toolbar" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "github_team.repo_team" + ] + }, + { + "index_key": "django-enum", + "schema_version": 0, + "attributes": { + "id": "django-enum", + "members": [ + { + "role": "member", + "username": "bckohan" + } + ], + "team_id": "django-enum" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "github_team.repo_team" + ] + }, + { + "index_key": "django-fsm-2", + "schema_version": 0, + "attributes": { + "id": "django-fsm-2", + "members": [ + { + "role": "member", + "username": "Natim" + }, + { + "role": "member", + "username": "giovannicimolin" + }, + { + "role": "member", + "username": "pfouque" + } + ], + "team_id": "django-fsm-2" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "github_team.repo_team" + ] + }, + { + "index_key": "django-prometheus", + "schema_version": 0, + "attributes": { + "id": "django-prometheus", + "members": [ + { + "role": "member", + "username": "asherf" + } + ], + "team_id": "django-prometheus" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "github_team.repo_team" + ] + }, + { + "index_key": "django-simple-history", + "schema_version": 0, + "attributes": { + "id": "django-simple-history", + "members": [ + { + "role": "maintainer", + "username": "tim-schilling" + }, + { + "role": "member", + "username": "ddabble" + } + ], + "team_id": "django-simple-history" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "github_team.repo_team" + ] + }, + { + "index_key": "django-tailwind-cli", + "schema_version": 0, + "attributes": { + "id": "django-tailwind-cli", + "members": [ + { + "role": "member", + "username": "oliverandrich" + } + ], + "team_id": "django-tailwind-cli" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "github_team.repo_team" + ] + }, + { + "index_key": "django-tasks-scheduler", + "schema_version": 0, + "attributes": { + "id": "django-tasks-scheduler", + "members": [ + { + "role": "maintainer", + "username": "cunla" + }, + { + "role": "member", + "username": "DhavalGojiya" + }, + { + "role": "member", + "username": "cclauss" + } + ], + "team_id": "django-tasks-scheduler" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "github_team.repo_team" + ] + }, + { + "index_key": "django-typer", + "schema_version": 0, + "attributes": { + "id": "django-typer", + "members": [ + { + "role": "member", + "username": "bckohan" + }, + { + "role": "member", + "username": "oliverandrich" + } + ], + "team_id": "django-typer" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "github_team.repo_team" + ] + }, + { + "index_key": "django-valkey", + "schema_version": 0, + "attributes": { + "id": "django-valkey", + "members": [ + { + "role": "member", + "username": "amirreza8002" + } + ], + "team_id": "django-valkey" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "github_team.repo_team" + ] + }, + { + "index_key": "drf-excel", + "schema_version": 0, + "attributes": { + "id": "drf-excel", + "members": [ + { + "role": "member", + "username": "FlipperPA" + }, + { + "role": "member", + "username": "browniebroke" + }, + { + "role": "member", + "username": "justbackend" + }, + { + "role": "member", + "username": "rptmat57" + } + ], + "team_id": "drf-excel" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "github_team.repo_team" + ] + } + ] + }, + { + "mode": "managed", + "type": "github_team_repository", + "name": "repo_admin_team_access", + "provider": "provider[\"registry.terraform.io/integrations/github\"]", + "instances": [ + { + "index_key": "axe-selenium-python", + "schema_version": 0, + "attributes": { + "etag": "W/\"60c36677839c5964797174ea5770e8b304312e4393f4f31f44307f84225888a2\"", + "id": "14236311:axe-selenium-python", + "permission": "admin", + "repository": "axe-selenium-python", + "team_id": "axe-selenium-python-admins" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "github_team.repo_admin_team", + "github_team.repo_team" + ] + }, + { + "index_key": "best-practices", + "schema_version": 0, + "attributes": { + "etag": "W/\"e8eb42b3afacd8c4bf6067e5fdb02b1c3f6e0f59f1e8e0bafa16b8720dc0b2a3\"", + "id": "9757650:best-practices", + "permission": "admin", + "repository": "best-practices", + "team_id": "best-practices-admins" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "github_team.repo_admin_team", + "github_team.repo_team" + ] + }, + { + "index_key": "django-click", + "schema_version": 0, + "attributes": { + "etag": "W/\"fe4b06cf576758dac79f09094e174d7af6b3f4606320da4229b9050bc43c5571\"", + "id": "12315701:django-click", + "permission": "admin", + "repository": "django-click", + "team_id": "django-click-admins" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "github_team.repo_admin_team", + "github_team.repo_team" + ] + }, + { + "index_key": "django-cookie-consent", + "schema_version": 0, + "attributes": { + "etag": "W/\"615e6fec0a51cc159136c8d351c06a322883877b3cbfca1a8964548e77975f1f\"", + "id": "13287527:django-cookie-consent", + "permission": "admin", + "repository": "django-cookie-consent", + "team_id": "django-cookie-consent-admins" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "github_team.repo_admin_team", + "github_team.repo_team" + ] + }, + { + "index_key": "django-debug-toolbar", + "schema_version": 0, + "attributes": { + "etag": "W/\"2d6717b127804a30225264bca48909e2eaaf1ffb0751924d4c052c6b1d459d1c\"", + "id": "11354341:django-debug-toolbar", + "permission": "admin", + "repository": "django-debug-toolbar", + "team_id": "django-debug-toolbar-admins" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "github_team.repo_admin_team", + "github_team.repo_team" + ] + }, + { + "index_key": "django-enum", + "schema_version": 0, + "attributes": { + "etag": "W/\"eb67fbfe762315fcc56fc611473293bd4b7914be5aa2a062185d50bf98a1272d\"", + "id": "12828751:django-enum", + "permission": "admin", + "repository": "django-enum", + "team_id": "django-enum-admins" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "github_team.repo_admin_team", + "github_team.repo_team" + ] + }, + { + "index_key": "django-fsm-2", + "schema_version": 0, + "attributes": { + "etag": "W/\"a33b6638e44c963412bf8e945653a29bff5908994215d6998eb6cb344c05c4c6\"", + "id": "10870432:django-fsm-2", + "permission": "admin", + "repository": "django-fsm-2", + "team_id": "django-fsm-2-admins" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "github_team.repo_admin_team", + "github_team.repo_team" + ] + }, + { + "index_key": "django-prometheus", + "schema_version": 0, + "attributes": { + "etag": "W/\"f817343e7b9ae1bc7a82d8ceeaf87d6c7b6f3d144ba54640acd8278804c7ea3e\"", + "id": "13333849:django-prometheus", + "permission": "admin", + "repository": "django-prometheus", + "team_id": "django-prometheus-admins" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "github_team.repo_admin_team", + "github_team.repo_team" + ] + }, + { + "index_key": "django-simple-history", + "schema_version": 0, + "attributes": { + "etag": "W/\"b86c23a0f069e33083ddc64a6b2dc5a8e4b5c7d08d478740c0569ef9dd380aaa\"", + "id": "13286901:django-simple-history", + "permission": "admin", + "repository": "django-simple-history", + "team_id": "django-simple-history-admins" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "github_team.repo_admin_team", + "github_team.repo_team" + ] + }, + { + "index_key": "django-tailwind-cli", + "schema_version": 0, + "attributes": { + "etag": "W/\"fed639b4a2a5f6bcaad8979a9a7b807ceb09a17461deb8bd69d644d8c0d8a2ea\"", + "id": "11394000:django-tailwind-cli", + "permission": "admin", + "repository": "django-tailwind-cli", + "team_id": "django-tailwind-cli-admins" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "github_team.repo_admin_team", + "github_team.repo_team" + ] + }, + { + "index_key": "django-tasks-scheduler", + "schema_version": 0, + "attributes": { + "etag": "W/\"90b127a31fba83768dd71030416c2bb12fa39717ffcdf2de3305939f225c0b83\"", + "id": "10707221:django-tasks-scheduler", + "permission": "admin", + "repository": "django-tasks-scheduler", + "team_id": "django-tasks-scheduler-admins" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "github_team.repo_admin_team", + "github_team.repo_team" + ] + }, + { + "index_key": "django-typer", + "schema_version": 0, + "attributes": { + "etag": "W/\"20f31092a4b9cbaa12074a85031bc2b502b92f6eedc7e6a963535a5c1d431a77\"", + "id": "11217214:django-typer", + "permission": "admin", + "repository": "django-typer", + "team_id": "django-typer-admins" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "github_team.repo_admin_team", + "github_team.repo_team" + ] + }, + { + "index_key": "django-valkey", + "schema_version": 0, + "attributes": { + "etag": "W/\"215142dcf3549cd641496584f684dbc4b1c6c29fe2d6914b1bd21d826f6d794c\"", + "id": "13334520:django-valkey", + "permission": "admin", + "repository": "django-valkey", + "team_id": "django-valkey-admins" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "github_team.repo_admin_team", + "github_team.repo_team" + ] + }, + { + "index_key": "drf-excel", + "schema_version": 0, + "attributes": { + "etag": "W/\"05a8a920f012097870fb8a298e0e56d107341f1d45645d9673a74ef8030c07e3\"", + "id": "11341702:drf-excel", + "permission": "admin", + "repository": "drf-excel", + "team_id": "drf-excel-admins" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "github_team.repo_admin_team", + "github_team.repo_team" + ] + } + ] + }, + { + "mode": "managed", + "type": "github_team_repository", + "name": "repo_committer_team_access", + "provider": "provider[\"registry.terraform.io/integrations/github\"]", + "instances": [ + { + "index_key": "axe-selenium-python", + "schema_version": 0, + "attributes": { + "etag": "W/\"0d368165178af04042c8e4a553f3e22996be62ceca4c1c6b82f8435576127e03\"", + "id": "14236310:axe-selenium-python", + "permission": "maintain", + "repository": "axe-selenium-python", + "team_id": "axe-selenium-python-committers" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "github_team.repo_committer_team", + "github_team.repo_team" + ] + }, + { + "index_key": "best-practices", + "schema_version": 0, + "attributes": { + "etag": "W/\"dafb7c0ad512bc98e7a86a32a40e1b74a352e80b9ec03fe5d6ee1a2ffb3f7082\"", + "id": "9757668:best-practices", + "permission": "maintain", + "repository": "best-practices", + "team_id": "best-practices-committers" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "github_team.repo_committer_team", + "github_team.repo_team" + ] + }, + { + "index_key": "django-click", + "schema_version": 0, + "attributes": { + "etag": "W/\"f19c1f14fde70f95e509c62de5536688245bde50a5a96ecc457c9be8d3bdcdaa\"", + "id": "12315700:django-click", + "permission": "maintain", + "repository": "django-click", + "team_id": "django-click-committers" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "github_team.repo_committer_team", + "github_team.repo_team" + ] + }, + { + "index_key": "django-cookie-consent", + "schema_version": 0, + "attributes": { + "etag": "W/\"34d878c2bddf3341ff42985dca487e0e8d205940755ad5ef9fb4f1f3de3c9d47\"", + "id": "13287526:django-cookie-consent", + "permission": "maintain", + "repository": "django-cookie-consent", + "team_id": "django-cookie-consent-committers" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "github_team.repo_committer_team", + "github_team.repo_team" + ] + }, + { + "index_key": "django-debug-toolbar", + "schema_version": 0, + "attributes": { + "etag": "W/\"e5244e1917245c13a27aaee1ab731aee3365fdb5d67fd740a99945bc2e7cc10c\"", + "id": "11354340:django-debug-toolbar", + "permission": "maintain", + "repository": "django-debug-toolbar", + "team_id": "django-debug-toolbar-committers" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "github_team.repo_committer_team", + "github_team.repo_team" + ] + }, + { + "index_key": "django-enum", + "schema_version": 0, + "attributes": { + "etag": "W/\"044026344f6d81c96bc9743495c0c0c5ddf2b7af7f913a2b638f26c7e87afd45\"", + "id": "12828750:django-enum", + "permission": "maintain", + "repository": "django-enum", + "team_id": "django-enum-committers" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "github_team.repo_committer_team", + "github_team.repo_team" + ] + }, + { + "index_key": "django-fsm-2", + "schema_version": 0, + "attributes": { + "etag": "W/\"5e3ffc73a654c677bd927fced5cbef1dbf6813c619e46c965ce86f0d61876961\"", + "id": "10870433:django-fsm-2", + "permission": "maintain", + "repository": "django-fsm-2", + "team_id": "django-fsm-2-committers" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "github_team.repo_committer_team", + "github_team.repo_team" + ] + }, + { + "index_key": "django-prometheus", + "schema_version": 0, + "attributes": { + "etag": "W/\"06c60919e59122a2e480345baa72b54bbe8efa5961e0011b01655a35a59b7aea\"", + "id": "13333848:django-prometheus", + "permission": "maintain", + "repository": "django-prometheus", + "team_id": "django-prometheus-committers" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "github_team.repo_committer_team", + "github_team.repo_team" + ] + }, + { + "index_key": "django-simple-history", + "schema_version": 0, + "attributes": { + "etag": "W/\"a0adcfd3e4408c29b2c774c4566d143e6a3ee3e8aa12b72cbc2aa36236afc6fa\"", + "id": "13286900:django-simple-history", + "permission": "maintain", + "repository": "django-simple-history", + "team_id": "django-simple-history-committers" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "github_team.repo_committer_team", + "github_team.repo_team" + ] + }, + { + "index_key": "django-tailwind-cli", + "schema_version": 0, + "attributes": { + "etag": "W/\"78566ba3d97c6a1761b6950123dd5c77ea4f82f17cdbc024d29ba604f40005b9\"", + "id": "11394001:django-tailwind-cli", + "permission": "maintain", + "repository": "django-tailwind-cli", + "team_id": "django-tailwind-cli-committers" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "github_team.repo_committer_team", + "github_team.repo_team" + ] + }, + { + "index_key": "django-tasks-scheduler", + "schema_version": 0, + "attributes": { + "etag": "W/\"aaf2bc97c47cb2f63c654e887697dda267010606410bcf8b3beccdc2bd755d5e\"", + "id": "10707220:django-tasks-scheduler", + "permission": "maintain", + "repository": "django-tasks-scheduler", + "team_id": "django-tasks-scheduler-committers" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "github_team.repo_committer_team", + "github_team.repo_team" + ] + }, + { + "index_key": "django-typer", + "schema_version": 0, + "attributes": { + "etag": "W/\"77988d9faeeb8a042bf07d1159b9764dfb2ef46f91439e9696f454e7360f8d50\"", + "id": "11217215:django-typer", + "permission": "maintain", + "repository": "django-typer", + "team_id": "django-typer-committers" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "github_team.repo_committer_team", + "github_team.repo_team" + ] + }, + { + "index_key": "django-valkey", + "schema_version": 0, + "attributes": { + "etag": "W/\"7a096004cb82de6e4536f5a99369a46d7764e17878ae1e3037ea8b5104f8a624\"", + "id": "13334521:django-valkey", + "permission": "maintain", + "repository": "django-valkey", + "team_id": "django-valkey-committers" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "github_team.repo_committer_team", + "github_team.repo_team" + ] + }, + { + "index_key": "drf-excel", + "schema_version": 0, + "attributes": { + "etag": "W/\"2f3f10cca71e685ddbd072129db6cf060fdc2224a3bbedfb942c13cc8d3722d0\"", + "id": "11341703:drf-excel", + "permission": "maintain", + "repository": "drf-excel", + "team_id": "drf-excel-committers" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "github_team.repo_committer_team", + "github_team.repo_team" + ] + } + ] + }, + { + "mode": "managed", + "type": "github_team_repository", + "name": "repo_team_access", + "provider": "provider[\"registry.terraform.io/integrations/github\"]", + "instances": [ + { + "index_key": "axe-selenium-python", + "schema_version": 0, + "attributes": { + "etag": "W/\"73ae70563a934bbd34e22cd47882c6e96bfa01c10a9bc57bcadf21a57add3eaa\"", + "id": "14236309:axe-selenium-python", + "permission": "triage", + "repository": "axe-selenium-python", + "team_id": "axe-selenium-python" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "github_team.repo_team" + ] + }, + { + "index_key": "best-practices", + "schema_version": 0, + "attributes": { + "etag": "W/\"32bbc50bd689dfe6bad802b2ed3b275c65c82678cb683baf0fdb8775d2602a73\"", + "id": "9757678:best-practices", + "permission": "triage", + "repository": "best-practices", + "team_id": "best-practices" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "github_team.repo_team" + ] + }, + { + "index_key": "django-click", + "schema_version": 0, + "attributes": { + "etag": "W/\"4e7e20348471d2ef4ea966ba3ecb0178f95aa1c8ef9688cb57f230e840d2243e\"", + "id": "12315699:django-click", + "permission": "triage", + "repository": "django-click", + "team_id": "django-click" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "github_team.repo_team" + ] + }, + { + "index_key": "django-cookie-consent", + "schema_version": 0, + "attributes": { + "etag": "W/\"ad26fd419a3fd7a00d9e643344f7b0f6fb576db4c6d84900dfdce9b7cfac7ed4\"", + "id": "13287524:django-cookie-consent", + "permission": "triage", + "repository": "django-cookie-consent", + "team_id": "django-cookie-consent" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "github_team.repo_team" + ] + }, + { + "index_key": "django-debug-toolbar", + "schema_version": 0, + "attributes": { + "etag": "W/\"b26b36271dbd1690d06f4fbcd5db3f87b759bfc6f081f181d299cac4b2916306\"", + "id": "11354339:django-debug-toolbar", + "permission": "triage", + "repository": "django-debug-toolbar", + "team_id": "django-debug-toolbar" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "github_team.repo_team" + ] + }, + { + "index_key": "django-enum", + "schema_version": 0, + "attributes": { + "etag": "W/\"48e36882aeff82d71c81db508dcf612ac025f721367c4c5dd63c41aeb8bb3a38\"", + "id": "12828748:django-enum", + "permission": "triage", + "repository": "django-enum", + "team_id": "django-enum" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "github_team.repo_team" + ] + }, + { + "index_key": "django-fsm-2", + "schema_version": 0, + "attributes": { + "etag": "W/\"771185b031962c675732b18e5aebf8b70d7e4a765f2462f5aa099ba9d1b59af4\"", + "id": "10870431:django-fsm-2", + "permission": "triage", + "repository": "django-fsm-2", + "team_id": "django-fsm-2" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "github_team.repo_team" + ] + }, + { + "index_key": "django-prometheus", + "schema_version": 0, + "attributes": { + "etag": "W/\"9dba5030f376ad62e7d3f7dbd8eab691942b598333afc60a4b2639f901104cbd\"", + "id": "13333847:django-prometheus", + "permission": "triage", + "repository": "django-prometheus", + "team_id": "django-prometheus" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "github_team.repo_team" + ] + }, + { + "index_key": "django-simple-history", + "schema_version": 0, + "attributes": { + "etag": "W/\"2938ae7e972a2a07aa5d9ef29076784bea7b71b6c0114ab6bb7b1016ef0b9761\"", + "id": "13286898:django-simple-history", + "permission": "triage", + "repository": "django-simple-history", + "team_id": "django-simple-history" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "github_team.repo_team" + ] + }, + { + "index_key": "django-tailwind-cli", + "schema_version": 0, + "attributes": { + "etag": "W/\"d12bd01e4aaf68b2f615ec42aa7811c84d72c23b360ec6df299dde0c4c801bd4\"", + "id": "11393999:django-tailwind-cli", + "permission": "triage", + "repository": "django-tailwind-cli", + "team_id": "django-tailwind-cli" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "github_team.repo_team" + ] + }, + { + "index_key": "django-tasks-scheduler", + "schema_version": 0, + "attributes": { + "etag": "W/\"4c589d755497b83afc67541a8aaca40c1b2c8260f23b6e8dee2b12b13a68330f\"", + "id": "10707217:django-tasks-scheduler", + "permission": "triage", + "repository": "django-tasks-scheduler", + "team_id": "django-tasks-scheduler" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "github_team.repo_team" + ] + }, + { + "index_key": "django-typer", + "schema_version": 0, + "attributes": { + "etag": "W/\"c34d957f13c19590d3c8260c545afe8468ba8c85d9b066d759e7481f890aa847\"", + "id": "11217213:django-typer", + "permission": "triage", + "repository": "django-typer", + "team_id": "django-typer" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "github_team.repo_team" + ] + }, + { + "index_key": "django-valkey", + "schema_version": 0, + "attributes": { + "etag": "W/\"b9e719fff6d3d7bfa8aa4b769da43002468329d66827f2322692aa13efeaa6d9\"", + "id": "13334519:django-valkey", + "permission": "triage", + "repository": "django-valkey", + "team_id": "django-valkey" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "github_team.repo_team" + ] + }, + { + "index_key": "drf-excel", + "schema_version": 0, + "attributes": { + "etag": "W/\"3cafab9834c1ca62cfa11e3bed9c7baca4d22b0e9494efcb978851fb5acdd2a9\"", + "id": "11341700:drf-excel", + "permission": "triage", + "repository": "drf-excel", + "team_id": "drf-excel" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "github_team.repo_team" + ] + } + ] + }, + { + "mode": "managed", + "type": "github_team_settings", + "name": "this", + "provider": "provider[\"registry.terraform.io/integrations/github\"]", + "instances": [ + { + "index_key": "axe-selenium-python", + "schema_version": 0, + "attributes": { + "id": "T_kwDOCaaRBM4A2TqV", + "review_request_delegation": [ + { + "algorithm": "LOAD_BALANCE", + "member_count": 2, + "notify": false + } + ], + "team_id": "axe-selenium-python", + "team_slug": "axe-selenium-python", + "team_uid": "T_kwDOCaaRBM4A2TqV" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "github_team.repo_team" + ] + }, + { + "index_key": "best-practices", + "schema_version": 0, + "attributes": { + "id": "T_kwDOCaaRBM4AlOPu", + "review_request_delegation": [ + { + "algorithm": "LOAD_BALANCE", + "member_count": 2, + "notify": false + } + ], + "team_id": "best-practices", + "team_slug": "best-practices", + "team_uid": "T_kwDOCaaRBM4AlOPu" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "github_team.repo_team" + ] + }, + { + "index_key": "django-click", + "schema_version": 0, + "attributes": { + "id": "T_kwDOCaaRBM4Au-wz", + "review_request_delegation": [ + { + "algorithm": "LOAD_BALANCE", + "member_count": 2, + "notify": false + } + ], + "team_id": "django-click", + "team_slug": "django-click", + "team_uid": "T_kwDOCaaRBM4Au-wz" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "github_team.repo_team" + ] + }, + { + "index_key": "django-cookie-consent", + "schema_version": 0, + "attributes": { + "id": "T_kwDOCaaRBM4AysBk", + "review_request_delegation": [ + { + "algorithm": "LOAD_BALANCE", + "member_count": 2, + "notify": false + } + ], + "team_id": "django-cookie-consent", + "team_slug": "django-cookie-consent", + "team_uid": "T_kwDOCaaRBM4AysBk" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "github_team.repo_team" + ] + }, + { + "index_key": "django-debug-toolbar", + "schema_version": 0, + "attributes": { + "id": "T_kwDOCaaRBM4ArUDj", + "review_request_delegation": [ + { + "algorithm": "LOAD_BALANCE", + "member_count": 2, + "notify": false + } + ], + "team_id": "django-debug-toolbar", + "team_slug": "django-debug-toolbar", + "team_uid": "T_kwDOCaaRBM4ArUDj" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "github_team.repo_team" + ] + }, + { + "index_key": "django-enum", + "schema_version": 0, + "attributes": { + "id": "T_kwDOCaaRBM4Aw8BM", + "review_request_delegation": [ + { + "algorithm": "LOAD_BALANCE", + "member_count": 2, + "notify": false + } + ], + "team_id": "django-enum", + "team_slug": "django-enum", + "team_uid": "T_kwDOCaaRBM4Aw8BM" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "github_team.repo_team" + ] + }, + { + "index_key": "django-fsm-2", + "schema_version": 0, + "attributes": { + "id": "T_kwDOCaaRBM4Apd6f", + "review_request_delegation": [ + { + "algorithm": "LOAD_BALANCE", + "member_count": 2, + "notify": false + } + ], + "team_id": "django-fsm-2", + "team_slug": "django-fsm-2", + "team_uid": "T_kwDOCaaRBM4Apd6f" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "github_team.repo_team" + ] + }, + { + "index_key": "django-prometheus", + "schema_version": 0, + "attributes": { + "id": "T_kwDOCaaRBM4Ay3VX", + "review_request_delegation": [ + { + "algorithm": "LOAD_BALANCE", + "member_count": 2, + "notify": false + } + ], + "team_id": "django-prometheus", + "team_slug": "django-prometheus", + "team_uid": "T_kwDOCaaRBM4Ay3VX" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "github_team.repo_team" + ] + }, + { + "index_key": "django-simple-history", + "schema_version": 0, + "attributes": { + "id": "T_kwDOCaaRBM4Ayr3y", + "review_request_delegation": [ + { + "algorithm": "LOAD_BALANCE", + "member_count": 2, + "notify": false + } + ], + "team_id": "django-simple-history", + "team_slug": "django-simple-history", + "team_uid": "T_kwDOCaaRBM4Ayr3y" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "eyJzY2hlbWFfdmVyc2lvbiI6IjAifQ==", + "dependencies": [ + "github_team.repo_team" + ] + }, + { + "index_key": "django-tailwind-cli", + "schema_version": 0, + "attributes": { + "id": "T_kwDOCaaRBM4ArdvP", + "review_request_delegation": [ + { + "algorithm": "LOAD_BALANCE", + "member_count": 2, + "notify": false + } + ], + "team_id": "django-tailwind-cli", + "team_slug": "django-tailwind-cli", + "team_uid": "T_kwDOCaaRBM4ArdvP" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "github_team.repo_team" + ] + }, + { + "index_key": "django-tasks-scheduler", + "schema_version": 0, + "attributes": { + "id": "T_kwDOCaaRBM4Ao2ER", + "review_request_delegation": [ + { + "algorithm": "LOAD_BALANCE", + "member_count": 2, + "notify": false + } + ], + "team_id": "django-tasks-scheduler", + "team_slug": "django-tasks-scheduler", + "team_uid": "T_kwDOCaaRBM4Ao2ER" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "github_team.repo_team" + ] + }, + { + "index_key": "django-typer", + "schema_version": 0, + "attributes": { + "id": "T_kwDOCaaRBM4Aqyk9", + "review_request_delegation": [ + { + "algorithm": "LOAD_BALANCE", + "member_count": 2, + "notify": false + } + ], + "team_id": "django-typer", + "team_slug": "django-typer", + "team_uid": "T_kwDOCaaRBM4Aqyk9" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "github_team.repo_team" + ] + }, + { + "index_key": "django-valkey", + "schema_version": 0, + "attributes": { + "id": "T_kwDOCaaRBM4Ay3f3", + "review_request_delegation": [ + { + "algorithm": "LOAD_BALANCE", + "member_count": 2, + "notify": false + } + ], + "team_id": "django-valkey", + "team_slug": "django-valkey", + "team_uid": "T_kwDOCaaRBM4Ay3f3" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "github_team.repo_team" + ] + }, + { + "index_key": "drf-excel", + "schema_version": 0, + "attributes": { + "id": "T_kwDOCaaRBM4ArQ-E", + "review_request_delegation": [ + { + "algorithm": "LOAD_BALANCE", + "member_count": 2, + "notify": false + } + ], + "team_id": "drf-excel", + "team_slug": "drf-excel", + "team_uid": "T_kwDOCaaRBM4ArQ-E" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "github_team.repo_team" + ] + } + ] + } + ], + "check_results": null +} diff --git a/terraform/variables.tf b/terraform/repos/variables.tf similarity index 84% rename from terraform/variables.tf rename to terraform/repos/variables.tf index 108ed16..6d5b325 100644 --- a/terraform/variables.tf +++ b/terraform/repos/variables.tf @@ -12,12 +12,6 @@ variable "github_token" { sensitive = true } -variable "members" { - description = "A set of members to add to the organization" - type = set(string) - default = [] -} - variable "designers" { description = "A set of designers to add to the organization" type = set(string) @@ -78,18 +72,6 @@ variable "repositories" { })) } -variable "organization_teams" { - description = "Map of Django Commons organization teams to manage" - type = map(object({ - description = string - maintainers = optional(set(string), []) - members = optional(set(string), []) - permission = optional(string, null) - privacy = optional(string, "closed") - review_request_delegation = optional(bool, false) - })) -} - variable "organization_secrets" { description = "Map of secrets to add to the organization" type = map(object({ From 17273e3a87ebd830630546f3b2a88e5b1cea1f96 Mon Sep 17 00:00:00 2001 From: Daniel M Date: Thu, 18 Dec 2025 16:11:01 -0500 Subject: [PATCH 02/17] separate modules --- terraform/members/locals.tf | 7 - ...ce-designers.tf => resources-designers.tf} | 0 terraform/members/tfstate.json | 6009 +---------------- terraform/repos/resource-designers.tf | 22 - 4 files changed, 176 insertions(+), 5862 deletions(-) rename terraform/members/{resource-designers.tf => resources-designers.tf} (100%) delete mode 100644 terraform/repos/resource-designers.tf diff --git a/terraform/members/locals.tf b/terraform/members/locals.tf index 420824d..d555d86 100644 --- a/terraform/members/locals.tf +++ b/terraform/members/locals.tf @@ -1,10 +1,3 @@ -# Local Values -# https://www.terraform.io/language/values/locals - locals { - project_repositories = { - for repository_key, repository in var.repositories : repository_key => repository - if !repository.is_django_commons_repo - } } diff --git a/terraform/members/resource-designers.tf b/terraform/members/resources-designers.tf similarity index 100% rename from terraform/members/resource-designers.tf rename to terraform/members/resources-designers.tf diff --git a/terraform/members/tfstate.json b/terraform/members/tfstate.json index f96e5a9..68aae16 100644 --- a/terraform/members/tfstate.json +++ b/terraform/members/tfstate.json @@ -1,7 +1,7 @@ { "version": 4, - "terraform_version": "1.14.3", - "serial": 778, + "terraform_version": "1.11.1", + "serial": 967, "lineage": "425397de-8394-a003-8a6c-bce854d9cc53", "outputs": { "invalid_users": { @@ -401,8 +401,181 @@ "williln" ] }, + "sensitive_attributes": [] + } + ] + }, + { + "mode": "managed", + "type": "github_team_members", + "name": "org_designers_team_members", + "provider": "provider[\"registry.terraform.io/integrations/github\"]", + "instances": [ + { + "schema_version": 0, + "attributes": { + "id": "14084892", + "members": [ + { + "role": "member", + "username": "Shrikantgiri25" + }, + { + "role": "member", + "username": "Violette-Allotey" + }, + { + "role": "member", + "username": "Zakui" + }, + { + "role": "member", + "username": "akshayvinchurkar" + }, + { + "role": "member", + "username": "federicobond" + }, + { + "role": "member", + "username": "jmgutu" + }, + { + "role": "member", + "username": "johnatanmoran" + }, + { + "role": "member", + "username": "mzemlickis" + }, + { + "role": "member", + "username": "okotdaniel" + }, + { + "role": "member", + "username": "p-r-a-v-i-n" + }, + { + "role": "member", + "username": "vinlawz" + }, + { + "role": "member", + "username": "viscofuse" + } + ], + "team_id": "14084892" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "github_team.org_designers_team" + ] + } + ] + }, + { + "mode": "managed", + "type": "github_team_members", + "name": "org_team_members", + "provider": "provider[\"registry.terraform.io/integrations/github\"]", + "instances": [ + { + "index_key": "Admins", + "schema_version": 0, + "attributes": { + "id": "9763562", + "members": [ + { + "role": "maintainer", + "username": "Stormheg" + }, + { + "role": "maintainer", + "username": "cunla" + }, + { + "role": "maintainer", + "username": "ryancheley" + }, + { + "role": "maintainer", + "username": "tim-schilling" + }, + { + "role": "maintainer", + "username": "williln" + } + ], + "team_id": "9763562" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "eyJzY2hlbWFfdmVyc2lvbiI6IjAifQ==", + "dependencies": [ + "github_team.org_teams" + ] + } + ] + }, + { + "mode": "managed", + "type": "github_team", + "name": "org_designers_team", + "provider": "provider[\"registry.terraform.io/integrations/github\"]", + "instances": [ + { + "schema_version": 0, + "attributes": { + "create_default_maintainer": false, + "description": "Django Commons designers", + "etag": "W/\"6190db9e35543983d98c90efd5100623c9aa039b6a5c86cf4f39d884ea57b542\"", + "id": "14084892", + "ldap_dn": "", + "members_count": 12, + "name": "Designers", + "node_id": "T_kwDOCaaRBM4A1usc", + "parent_team_id": "", + "parent_team_read_id": "", + "parent_team_read_slug": "", + "privacy": "closed", + "slug": "designers" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==" + } + ] + }, + { + "mode": "managed", + "type": "github_team", + "name": "org_teams", + "provider": "provider[\"registry.terraform.io/integrations/github\"]", + "instances": [ + { + "index_key": "Admins", + "schema_version": 0, + "attributes": { + "create_default_maintainer": false, + "description": "django-commons administrators", + "etag": "W/\"5f69695e20abebe020e6c81b6e8964fa94fa8813fa3ab99a4bb84e97661fb6cb\"", + "id": "9763562", + "ldap_dn": "", + "members_count": 5, + "name": "Admins", + "node_id": "T_kwDOCaaRBM4AlPrq", + "parent_team_id": "", + "parent_team_read_id": "", + "parent_team_read_slug": "", + "privacy": "closed", + "slug": "admins" + }, "sensitive_attributes": [], - "identity_schema_version": 0 + "identity_schema_version": 0, + "private": "eyJzY2hlbWFfdmVyc2lvbiI6IjAifQ==" } ] }, @@ -423,7 +596,6 @@ "username": "2ykwang" }, "sensitive_attributes": [], - "identity_schema_version": 0, "private": "bnVsbA==", "dependencies": [ "data.github_users.users" @@ -440,7 +612,6 @@ "username": "Chiemezuo" }, "sensitive_attributes": [], - "identity_schema_version": 0, "private": "bnVsbA==", "dependencies": [ "data.github_users.users" @@ -457,7 +628,6 @@ "username": "DhavalGojiya" }, "sensitive_attributes": [], - "identity_schema_version": 0, "private": "bnVsbA==", "dependencies": [ "data.github_users.users" @@ -474,7 +644,6 @@ "username": "FlipperPA" }, "sensitive_attributes": [], - "identity_schema_version": 0, "private": "bnVsbA==", "dependencies": [ "data.github_users.users" @@ -491,7 +660,6 @@ "username": "GaretJax" }, "sensitive_attributes": [], - "identity_schema_version": 0, "private": "bnVsbA==", "dependencies": [ "data.github_users.users" @@ -508,7 +676,6 @@ "username": "JaeHyuckSa" }, "sensitive_attributes": [], - "identity_schema_version": 0, "private": "bnVsbA==", "dependencies": [ "data.github_users.users" @@ -525,7 +692,6 @@ "username": "JohananOppongAmoateng" }, "sensitive_attributes": [], - "identity_schema_version": 0, "private": "bnVsbA==", "dependencies": [ "data.github_users.users" @@ -542,7 +708,6 @@ "username": "Josephchinedu" }, "sensitive_attributes": [], - "identity_schema_version": 0, "private": "bnVsbA==", "dependencies": [ "data.github_users.users" @@ -559,7 +724,6 @@ "username": "Mogost" }, "sensitive_attributes": [], - "identity_schema_version": 0, "private": "bnVsbA==", "dependencies": [ "data.github_users.users" @@ -576,7 +740,6 @@ "username": "MrCordeiro" }, "sensitive_attributes": [], - "identity_schema_version": 0, "private": "bnVsbA==", "dependencies": [ "data.github_users.users" @@ -593,7 +756,6 @@ "username": "Natim" }, "sensitive_attributes": [], - "identity_schema_version": 0, "private": "eyJzY2hlbWFfdmVyc2lvbiI6IjAifQ==", "dependencies": [ "data.github_users.users" @@ -610,7 +772,6 @@ "username": "RealOrangeOne" }, "sensitive_attributes": [], - "identity_schema_version": 0, "private": "bnVsbA==", "dependencies": [ "data.github_users.users" @@ -627,7 +788,6 @@ "username": "Shrikantgiri25" }, "sensitive_attributes": [], - "identity_schema_version": 0, "private": "bnVsbA==", "dependencies": [ "data.github_users.users" @@ -644,7 +804,6 @@ "username": "SinkuKumar" }, "sensitive_attributes": [], - "identity_schema_version": 0, "private": "bnVsbA==", "dependencies": [ "data.github_users.users" @@ -661,7 +820,6 @@ "username": "Stormheg" }, "sensitive_attributes": [], - "identity_schema_version": 0, "private": "eyJzY2hlbWFfdmVyc2lvbiI6IjAifQ==", "dependencies": [ "data.github_users.users" @@ -678,7 +836,6 @@ "username": "TimothyMalahy" }, "sensitive_attributes": [], - "identity_schema_version": 0, "private": "bnVsbA==", "dependencies": [ "data.github_users.users" @@ -695,7 +852,6 @@ "username": "VeldaKiara" }, "sensitive_attributes": [], - "identity_schema_version": 0, "private": "bnVsbA==", "dependencies": [ "data.github_users.users" @@ -712,7 +868,6 @@ "username": "Violette-Allotey" }, "sensitive_attributes": [], - "identity_schema_version": 0, "private": "bnVsbA==", "dependencies": [ "data.github_users.users" @@ -729,7 +884,6 @@ "username": "Zakui" }, "sensitive_attributes": [], - "identity_schema_version": 0, "private": "bnVsbA==", "dependencies": [ "data.github_users.users" @@ -746,7 +900,6 @@ "username": "adRn-s" }, "sensitive_attributes": [], - "identity_schema_version": 0, "private": "bnVsbA==", "dependencies": [ "data.github_users.users" @@ -763,7 +916,6 @@ "username": "adamghill" }, "sensitive_attributes": [], - "identity_schema_version": 0, "private": "bnVsbA==", "dependencies": [ "data.github_users.users" @@ -780,7 +932,6 @@ "username": "akshayvinchurkar" }, "sensitive_attributes": [], - "identity_schema_version": 0, "private": "bnVsbA==", "dependencies": [ "data.github_users.users" @@ -797,7 +948,6 @@ "username": "amirreza8002" }, "sensitive_attributes": [], - "identity_schema_version": 0, "private": "bnVsbA==", "dependencies": [ "data.github_users.users" @@ -814,7 +964,6 @@ "username": "andoriyaprashant" }, "sensitive_attributes": [], - "identity_schema_version": 0, "private": "bnVsbA==", "dependencies": [ "data.github_users.users" @@ -831,7 +980,6 @@ "username": "asherf" }, "sensitive_attributes": [], - "identity_schema_version": 0, "private": "bnVsbA==", "dependencies": [ "data.github_users.users" @@ -848,7 +996,6 @@ "username": "ayimdomnic" }, "sensitive_attributes": [], - "identity_schema_version": 0, "private": "bnVsbA==", "dependencies": [ "data.github_users.users" @@ -865,7 +1012,6 @@ "username": "bahoo" }, "sensitive_attributes": [], - "identity_schema_version": 0, "private": "bnVsbA==", "dependencies": [ "data.github_users.users" @@ -882,7 +1028,6 @@ "username": "bckohan" }, "sensitive_attributes": [], - "identity_schema_version": 0, "private": "bnVsbA==", "dependencies": [ "data.github_users.users" @@ -899,7 +1044,6 @@ "username": "blingblin-g" }, "sensitive_attributes": [], - "identity_schema_version": 0, "private": "bnVsbA==", "dependencies": [ "data.github_users.users" @@ -916,7 +1060,6 @@ "username": "browniebroke" }, "sensitive_attributes": [], - "identity_schema_version": 0, "private": "bnVsbA==", "dependencies": [ "data.github_users.users" @@ -933,7 +1076,6 @@ "username": "carltongibson" }, "sensitive_attributes": [], - "identity_schema_version": 0, "private": "bnVsbA==", "dependencies": [ "data.github_users.users" @@ -950,7 +1092,6 @@ "username": "cgl" }, "sensitive_attributes": [], - "identity_schema_version": 0, "private": "bnVsbA==", "dependencies": [ "data.github_users.users" @@ -967,7 +1108,6 @@ "username": "clintonb" }, "sensitive_attributes": [], - "identity_schema_version": 0, "private": "bnVsbA==", "dependencies": [ "data.github_users.users" @@ -984,7 +1124,6 @@ "username": "cunla" }, "sensitive_attributes": [], - "identity_schema_version": 0, "private": "eyJzY2hlbWFfdmVyc2lvbiI6IjAifQ==", "dependencies": [ "data.github_users.users" @@ -1001,7 +1140,6 @@ "username": "ddabble" }, "sensitive_attributes": [], - "identity_schema_version": 0, "private": "bnVsbA==", "dependencies": [ "data.github_users.users" @@ -1018,7 +1156,6 @@ "username": "deronnax" }, "sensitive_attributes": [], - "identity_schema_version": 0, "private": "bnVsbA==", "dependencies": [ "data.github_users.users" @@ -1035,7 +1172,6 @@ "username": "devatbosch" }, "sensitive_attributes": [], - "identity_schema_version": 0, "private": "bnVsbA==", "dependencies": [ "data.github_users.users" @@ -1052,7 +1188,6 @@ "username": "dmpayton" }, "sensitive_attributes": [], - "identity_schema_version": 0, "private": "bnVsbA==", "dependencies": [ "data.github_users.users" @@ -1069,7 +1204,6 @@ "username": "dr-rompecabezas" }, "sensitive_attributes": [], - "identity_schema_version": 0, "private": "bnVsbA==", "dependencies": [ "data.github_users.users" @@ -1086,7 +1220,6 @@ "username": "elineda" }, "sensitive_attributes": [], - "identity_schema_version": 0, "private": "bnVsbA==", "dependencies": [ "data.github_users.users" @@ -1103,7 +1236,6 @@ "username": "federicobond" }, "sensitive_attributes": [], - "identity_schema_version": 0, "private": "bnVsbA==", "dependencies": [ "data.github_users.users" @@ -1120,7 +1252,6 @@ "username": "fsbraun" }, "sensitive_attributes": [], - "identity_schema_version": 0, "private": "bnVsbA==", "dependencies": [ "data.github_users.users" @@ -1137,7 +1268,6 @@ "username": "g-nie" }, "sensitive_attributes": [], - "identity_schema_version": 0, "private": "bnVsbA==", "dependencies": [ "data.github_users.users" @@ -1154,7 +1284,6 @@ "username": "gav-fyi" }, "sensitive_attributes": [], - "identity_schema_version": 0, "private": "eyJzY2hlbWFfdmVyc2lvbiI6IjAifQ==", "dependencies": [ "data.github_users.users" @@ -1171,7 +1300,6 @@ "username": "giovannicimolin" }, "sensitive_attributes": [], - "identity_schema_version": 0, "private": "bnVsbA==", "dependencies": [ "data.github_users.users" @@ -1188,7 +1316,6 @@ "username": "input" }, "sensitive_attributes": [], - "identity_schema_version": 0, "private": "bnVsbA==", "dependencies": [ "data.github_users.users" @@ -1205,7 +1332,6 @@ "username": "jacklinke" }, "sensitive_attributes": [], - "identity_schema_version": 0, "private": "bnVsbA==", "dependencies": [ "data.github_users.users" @@ -1222,7 +1348,6 @@ "username": "jburns6789" }, "sensitive_attributes": [], - "identity_schema_version": 0, "private": "bnVsbA==", "dependencies": [ "data.github_users.users" @@ -1239,7 +1364,6 @@ "username": "jcjudkins" }, "sensitive_attributes": [], - "identity_schema_version": 0, "private": "eyJzY2hlbWFfdmVyc2lvbiI6IjAifQ==", "dependencies": [ "data.github_users.users" @@ -1256,7 +1380,6 @@ "username": "jezdez" }, "sensitive_attributes": [], - "identity_schema_version": 0, "private": "bnVsbA==", "dependencies": [ "data.github_users.users" @@ -1273,7 +1396,6 @@ "username": "jmgutu" }, "sensitive_attributes": [], - "identity_schema_version": 0, "private": "bnVsbA==", "dependencies": [ "data.github_users.users" @@ -1290,7 +1412,6 @@ "username": "jnovinger" }, "sensitive_attributes": [], - "identity_schema_version": 0, "private": "bnVsbA==", "dependencies": [ "data.github_users.users" @@ -1307,7 +1428,6 @@ "username": "johnatanmoran" }, "sensitive_attributes": [], - "identity_schema_version": 0, "private": "bnVsbA==", "dependencies": [ "data.github_users.users" @@ -1324,7 +1444,6 @@ "username": "johnfraney" }, "sensitive_attributes": [], - "identity_schema_version": 0, "private": "bnVsbA==", "dependencies": [ "data.github_users.users" @@ -1341,7 +1460,6 @@ "username": "joshuadavidthomas" }, "sensitive_attributes": [], - "identity_schema_version": 0, "private": "eyJzY2hlbWFfdmVyc2lvbiI6IjAifQ==", "dependencies": [ "data.github_users.users" @@ -1358,7 +1476,6 @@ "username": "justbackend" }, "sensitive_attributes": [], - "identity_schema_version": 0, "private": "bnVsbA==", "dependencies": [ "data.github_users.users" @@ -1375,7 +1492,6 @@ "username": "kevin-brown" }, "sensitive_attributes": [], - "identity_schema_version": 0, "private": "bnVsbA==", "dependencies": [ "data.github_users.users" @@ -1392,7 +1508,6 @@ "username": "knyghty" }, "sensitive_attributes": [], - "identity_schema_version": 0, "private": "bnVsbA==", "dependencies": [ "data.github_users.users" @@ -1409,7 +1524,6 @@ "username": "korfuri" }, "sensitive_attributes": [], - "identity_schema_version": 0, "private": "bnVsbA==", "dependencies": [ "data.github_users.users" @@ -1426,7 +1540,6 @@ "username": "kytta" }, "sensitive_attributes": [], - "identity_schema_version": 0, "private": "bnVsbA==", "dependencies": [ "data.github_users.users" @@ -1443,7 +1556,6 @@ "username": "leogregianin" }, "sensitive_attributes": [], - "identity_schema_version": 0, "private": "bnVsbA==", "dependencies": [ "data.github_users.users" @@ -1460,7 +1572,6 @@ "username": "manelclos" }, "sensitive_attributes": [], - "identity_schema_version": 0, "private": "bnVsbA==", "dependencies": [ "data.github_users.users" @@ -1477,7 +1588,6 @@ "username": "matthiask" }, "sensitive_attributes": [], - "identity_schema_version": 0, "private": "eyJzY2hlbWFfdmVyc2lvbiI6IjAifQ==", "dependencies": [ "data.github_users.users" @@ -1494,7 +1604,6 @@ "username": "mihrab34" }, "sensitive_attributes": [], - "identity_schema_version": 0, "private": "bnVsbA==", "dependencies": [ "data.github_users.users" @@ -1511,7 +1620,6 @@ "username": "mkalioby" }, "sensitive_attributes": [], - "identity_schema_version": 0, "private": "bnVsbA==", "dependencies": [ "data.github_users.users" @@ -1528,7 +1636,6 @@ "username": "mnislam01" }, "sensitive_attributes": [], - "identity_schema_version": 0, "private": "bnVsbA==", "dependencies": [ "data.github_users.users" @@ -1545,7 +1652,6 @@ "username": "mzemlickis" }, "sensitive_attributes": [], - "identity_schema_version": 0, "private": "bnVsbA==", "dependencies": [ "data.github_users.users" @@ -1562,7 +1668,6 @@ "username": "nanorepublica" }, "sensitive_attributes": [], - "identity_schema_version": 0, "private": "eyJzY2hlbWFfdmVyc2lvbiI6IjAifQ==", "dependencies": [ "data.github_users.users" @@ -1579,7 +1684,6 @@ "username": "niltonpimentel02" }, "sensitive_attributes": [], - "identity_schema_version": 0, "private": "bnVsbA==", "dependencies": [ "data.github_users.users" @@ -1596,7 +1700,6 @@ "username": "okotdaniel" }, "sensitive_attributes": [], - "identity_schema_version": 0, "private": "bnVsbA==", "dependencies": [ "data.github_users.users" @@ -1613,7 +1716,6 @@ "username": "oliverandrich" }, "sensitive_attributes": [], - "identity_schema_version": 0, "private": "bnVsbA==", "dependencies": [ "data.github_users.users" @@ -1630,7 +1732,6 @@ "username": "ontowhee" }, "sensitive_attributes": [], - "identity_schema_version": 0, "private": "bnVsbA==", "dependencies": [ "data.github_users.users" @@ -1647,7 +1748,6 @@ "username": "p-r-a-v-i-n" }, "sensitive_attributes": [], - "identity_schema_version": 0, "private": "bnVsbA==", "dependencies": [ "data.github_users.users" @@ -1664,7 +1764,6 @@ "username": "pauloxnet" }, "sensitive_attributes": [], - "identity_schema_version": 0, "private": "bnVsbA==", "dependencies": [ "data.github_users.users" @@ -1681,7 +1780,6 @@ "username": "peterthomassen" }, "sensitive_attributes": [], - "identity_schema_version": 0, "private": "bnVsbA==", "dependencies": [ "data.github_users.users" @@ -1698,7 +1796,6 @@ "username": "pfouque" }, "sensitive_attributes": [], - "identity_schema_version": 0, "private": "eyJzY2hlbWFfdmVyc2lvbiI6IjAifQ==", "dependencies": [ "data.github_users.users" @@ -1715,7 +1812,6 @@ "username": "priyapahwa" }, "sensitive_attributes": [], - "identity_schema_version": 0, "private": "eyJzY2hlbWFfdmVyc2lvbiI6IjAifQ==", "dependencies": [ "data.github_users.users" @@ -1732,7 +1828,6 @@ "username": "rptmat57" }, "sensitive_attributes": [], - "identity_schema_version": 0, "private": "bnVsbA==", "dependencies": [ "data.github_users.users" @@ -1749,7 +1844,6 @@ "username": "ryancheley" }, "sensitive_attributes": [], - "identity_schema_version": 0, "private": "eyJzY2hlbWFfdmVyc2lvbiI6IjAifQ==", "dependencies": [ "data.github_users.users" @@ -1766,7 +1860,6 @@ "username": "salty-ivy" }, "sensitive_attributes": [], - "identity_schema_version": 0, "private": "bnVsbA==", "dependencies": [ "data.github_users.users" @@ -1783,7 +1876,6 @@ "username": "sergei-maertens" }, "sensitive_attributes": [], - "identity_schema_version": 0, "private": "bnVsbA==", "dependencies": [ "data.github_users.users" @@ -1800,7 +1892,6 @@ "username": "sobolevn" }, "sensitive_attributes": [], - "identity_schema_version": 0, "private": "bnVsbA==", "dependencies": [ "data.github_users.users" @@ -1817,7 +1908,6 @@ "username": "testSchilling" }, "sensitive_attributes": [], - "identity_schema_version": 0, "private": "eyJzY2hlbWFfdmVyc2lvbiI6IjAifQ==", "dependencies": [ "data.github_users.users" @@ -1834,7 +1924,6 @@ "username": "thibaudcolas" }, "sensitive_attributes": [], - "identity_schema_version": 0, "private": "bnVsbA==", "dependencies": [ "data.github_users.users" @@ -1851,7 +1940,6 @@ "username": "tim-schilling" }, "sensitive_attributes": [], - "identity_schema_version": 0, "private": "eyJzY2hlbWFfdmVyc2lvbiI6IjAifQ==", "dependencies": [ "data.github_users.users" @@ -1868,7 +1956,6 @@ "username": "ulgens" }, "sensitive_attributes": [], - "identity_schema_version": 0, "private": "bnVsbA==", "dependencies": [ "data.github_users.users" @@ -1885,7 +1972,6 @@ "username": "unmonoqueteclea" }, "sensitive_attributes": [], - "identity_schema_version": 0, "private": "bnVsbA==", "dependencies": [ "data.github_users.users" @@ -1902,7 +1988,6 @@ "username": "vacarme" }, "sensitive_attributes": [], - "identity_schema_version": 0, "private": "bnVsbA==", "dependencies": [ "data.github_users.users" @@ -1919,7 +2004,6 @@ "username": "vinlawz" }, "sensitive_attributes": [], - "identity_schema_version": 0, "private": "bnVsbA==", "dependencies": [ "data.github_users.users" @@ -1936,7 +2020,6 @@ "username": "viscofuse" }, "sensitive_attributes": [], - "identity_schema_version": 0, "private": "bnVsbA==", "dependencies": [ "data.github_users.users" @@ -1953,7 +2036,6 @@ "username": "williln" }, "sensitive_attributes": [], - "identity_schema_version": 0, "private": "eyJzY2hlbWFfdmVyc2lvbiI6IjAifQ==", "dependencies": [ "data.github_users.users" @@ -1975,5751 +2057,12 @@ "team_slug": "admins" }, "sensitive_attributes": [], - "identity_schema_version": 0, "private": "bnVsbA==", "dependencies": [ "github_team.org_teams" ] } ] - }, - { - "mode": "managed", - "type": "github_repository", - "name": "this", - "provider": "provider[\"registry.terraform.io/integrations/github\"]", - "instances": [ - { - "index_key": ".github", - "schema_version": 1, - "attributes": { - "allow_auto_merge": false, - "allow_merge_commit": false, - "allow_rebase_merge": false, - "allow_squash_merge": true, - "allow_update_branch": true, - "archive_on_destroy": true, - "archived": false, - "auto_init": false, - "default_branch": "main", - "delete_branch_on_merge": true, - "description": "A Special Repository.", - "etag": "W/\"ac350a50d35e38f6a30f8304696ffd37ab0e4fd4e2fe00dfe935644fe8e9633d\"", - "fork": "false", - "full_name": "django-commons/.github", - "git_clone_url": "git://github.com/django-commons/.github.git", - "gitignore_template": null, - "has_discussions": true, - "has_downloads": true, - "has_issues": true, - "has_projects": true, - "has_wiki": false, - "homepage_url": "", - "html_url": "https://github.com/django-commons/.github", - "http_clone_url": "https://github.com/django-commons/.github.git", - "id": ".github", - "ignore_vulnerability_alerts_during_read": null, - "is_template": false, - "license_template": null, - "merge_commit_message": "PR_TITLE", - "merge_commit_title": "MERGE_MESSAGE", - "name": ".github", - "node_id": "R_kgDOLkyRSQ", - "pages": [], - "primary_language": "", - "private": false, - "repo_id": 776769865, - "security_and_analysis": [ - { - "advanced_security": [], - "code_security": [], - "secret_scanning": [ - { - "status": "disabled" - } - ], - "secret_scanning_ai_detection": [], - "secret_scanning_non_provider_patterns": [], - "secret_scanning_push_protection": [ - { - "status": "disabled" - } - ] - } - ], - "source_owner": "", - "source_repo": "", - "squash_merge_commit_message": "COMMIT_MESSAGES", - "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", - "ssh_clone_url": "git@github.com:django-commons/.github.git", - "svn_url": "https://github.com/django-commons/.github", - "template": [], - "topics": [], - "visibility": "public", - "vulnerability_alerts": true, - "web_commit_signoff_required": false - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "eyJzY2hlbWFfdmVyc2lvbiI6IjEifQ==" - }, - { - "index_key": "axe-selenium-python", - "schema_version": 1, - "attributes": { - "allow_auto_merge": false, - "allow_merge_commit": false, - "allow_rebase_merge": true, - "allow_squash_merge": true, - "allow_update_branch": true, - "archive_on_destroy": true, - "archived": false, - "auto_init": false, - "default_branch": "main", - "delete_branch_on_merge": true, - "description": "Automated web accessibility testing with Axe and Selenium", - "etag": "W/\"5f5751e289969fc1b5b5277a03c7a06cb542aeb68a73339b5917c38701545b6d\"", - "fork": "false", - "full_name": "django-commons/axe-selenium-python", - "git_clone_url": "git://github.com/django-commons/axe-selenium-python.git", - "gitignore_template": null, - "has_discussions": true, - "has_downloads": true, - "has_issues": true, - "has_projects": true, - "has_wiki": false, - "homepage_url": "", - "html_url": "https://github.com/django-commons/axe-selenium-python", - "http_clone_url": "https://github.com/django-commons/axe-selenium-python.git", - "id": "axe-selenium-python", - "ignore_vulnerability_alerts_during_read": null, - "is_template": false, - "license_template": null, - "merge_commit_message": "PR_TITLE", - "merge_commit_title": "MERGE_MESSAGE", - "name": "axe-selenium-python", - "node_id": "MDEwOlJlcG9zaXRvcnk5NDEyOTM2NA==", - "pages": [], - "primary_language": "Python", - "private": false, - "repo_id": 94129364, - "security_and_analysis": [ - { - "advanced_security": [], - "code_security": [], - "secret_scanning": [ - { - "status": "disabled" - } - ], - "secret_scanning_ai_detection": [], - "secret_scanning_non_provider_patterns": [], - "secret_scanning_push_protection": [ - { - "status": "disabled" - } - ] - } - ], - "source_owner": "", - "source_repo": "", - "squash_merge_commit_message": "COMMIT_MESSAGES", - "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", - "ssh_clone_url": "git@github.com:django-commons/axe-selenium-python.git", - "svn_url": "https://github.com/django-commons/axe-selenium-python", - "template": [], - "topics": [], - "visibility": "public", - "vulnerability_alerts": true, - "web_commit_signoff_required": false - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "eyJzY2hlbWFfdmVyc2lvbiI6IjEifQ==" - }, - { - "index_key": "best-practices", - "schema_version": 1, - "attributes": { - "allow_auto_merge": false, - "allow_merge_commit": false, - "allow_rebase_merge": false, - "allow_squash_merge": true, - "allow_update_branch": true, - "archive_on_destroy": true, - "archived": false, - "auto_init": false, - "default_branch": "main", - "delete_branch_on_merge": true, - "description": "A sample project with best practices for Django Commons projects.", - "etag": "W/\"9214c62d209a20c93aa33adb10c9ce6d50e1ff3b9d9adcc0dc4eb21bef311f6a\"", - "fork": "false", - "full_name": "django-commons/best-practices", - "git_clone_url": "git://github.com/django-commons/best-practices.git", - "gitignore_template": null, - "has_discussions": true, - "has_downloads": true, - "has_issues": true, - "has_projects": true, - "has_wiki": false, - "homepage_url": "", - "html_url": "https://github.com/django-commons/best-practices", - "http_clone_url": "https://github.com/django-commons/best-practices.git", - "id": "best-practices", - "ignore_vulnerability_alerts_during_read": null, - "is_template": false, - "license_template": null, - "merge_commit_message": "PR_TITLE", - "merge_commit_title": "MERGE_MESSAGE", - "name": "best-practices", - "node_id": "R_kgDOLkANrg", - "pages": [], - "primary_language": "Python", - "private": false, - "repo_id": 775949742, - "security_and_analysis": [ - { - "advanced_security": [], - "code_security": [], - "secret_scanning": [ - { - "status": "enabled" - } - ], - "secret_scanning_ai_detection": [], - "secret_scanning_non_provider_patterns": [], - "secret_scanning_push_protection": [ - { - "status": "disabled" - } - ] - } - ], - "source_owner": "", - "source_repo": "", - "squash_merge_commit_message": "COMMIT_MESSAGES", - "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", - "ssh_clone_url": "git@github.com:django-commons/best-practices.git", - "svn_url": "https://github.com/django-commons/best-practices", - "template": [], - "topics": [ - "django", - "python", - "template" - ], - "visibility": "public", - "vulnerability_alerts": true, - "web_commit_signoff_required": false - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "eyJzY2hlbWFfdmVyc2lvbiI6IjEifQ==" - }, - { - "index_key": "controls", - "schema_version": 1, - "attributes": { - "allow_auto_merge": false, - "allow_merge_commit": true, - "allow_rebase_merge": true, - "allow_squash_merge": true, - "allow_update_branch": true, - "archive_on_destroy": true, - "archived": false, - "auto_init": false, - "default_branch": "main", - "delete_branch_on_merge": true, - "description": "The controls for managing Django Commons projects", - "etag": "W/\"f084475c86efee52b3ea6b4a718a753d81a2b481a6d5c14570c6b7c58391d2c5\"", - "fork": "false", - "full_name": "django-commons/controls", - "git_clone_url": "git://github.com/django-commons/controls.git", - "gitignore_template": null, - "has_discussions": true, - "has_downloads": true, - "has_issues": true, - "has_projects": true, - "has_wiki": false, - "homepage_url": "", - "html_url": "https://github.com/django-commons/controls", - "http_clone_url": "https://github.com/django-commons/controls.git", - "id": "controls", - "ignore_vulnerability_alerts_during_read": null, - "is_template": false, - "license_template": null, - "merge_commit_message": "PR_TITLE", - "merge_commit_title": "MERGE_MESSAGE", - "name": "controls", - "node_id": "R_kgDOLkDK8g", - "pages": [], - "primary_language": "", - "private": false, - "repo_id": 775998194, - "security_and_analysis": [ - { - "advanced_security": [], - "code_security": [], - "secret_scanning": [ - { - "status": "disabled" - } - ], - "secret_scanning_ai_detection": [], - "secret_scanning_non_provider_patterns": [], - "secret_scanning_push_protection": [ - { - "status": "disabled" - } - ] - } - ], - "source_owner": "", - "source_repo": "", - "squash_merge_commit_message": "COMMIT_MESSAGES", - "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", - "ssh_clone_url": "git@github.com:django-commons/controls.git", - "svn_url": "https://github.com/django-commons/controls", - "template": [], - "topics": [], - "visibility": "public", - "vulnerability_alerts": true, - "web_commit_signoff_required": false - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "eyJzY2hlbWFfdmVyc2lvbiI6IjEifQ==" - }, - { - "index_key": "django-click", - "schema_version": 1, - "attributes": { - "allow_auto_merge": false, - "allow_merge_commit": true, - "allow_rebase_merge": true, - "allow_squash_merge": false, - "allow_update_branch": true, - "archive_on_destroy": true, - "archived": false, - "auto_init": false, - "default_branch": "master", - "delete_branch_on_merge": true, - "description": "Write Django management command using the click CLI library", - "etag": "W/\"da6efb4ed0899a0ace255869c36de0a6d7ae4c5ca6aaa52468825ccbc63e28c5\"", - "fork": "false", - "full_name": "django-commons/django-click", - "git_clone_url": "git://github.com/django-commons/django-click.git", - "gitignore_template": null, - "has_discussions": false, - "has_downloads": true, - "has_issues": true, - "has_projects": true, - "has_wiki": false, - "homepage_url": "", - "html_url": "https://github.com/django-commons/django-click", - "http_clone_url": "https://github.com/django-commons/django-click.git", - "id": "django-click", - "ignore_vulnerability_alerts_during_read": null, - "is_template": false, - "license_template": null, - "merge_commit_message": "PR_TITLE", - "merge_commit_title": "MERGE_MESSAGE", - "name": "django-click", - "node_id": "MDEwOlJlcG9zaXRvcnk0MjI3NDc5Nw==", - "pages": [], - "primary_language": "Python", - "private": false, - "repo_id": 42274797, - "security_and_analysis": [ - { - "advanced_security": [], - "code_security": [], - "secret_scanning": [ - { - "status": "disabled" - } - ], - "secret_scanning_ai_detection": [], - "secret_scanning_non_provider_patterns": [], - "secret_scanning_push_protection": [ - { - "status": "disabled" - } - ] - } - ], - "source_owner": "", - "source_repo": "", - "squash_merge_commit_message": "COMMIT_MESSAGES", - "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", - "ssh_clone_url": "git@github.com:django-commons/django-click.git", - "svn_url": "https://github.com/django-commons/django-click", - "template": [], - "topics": [], - "visibility": "public", - "vulnerability_alerts": true, - "web_commit_signoff_required": false - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "eyJzY2hlbWFfdmVyc2lvbiI6IjEifQ==" - }, - { - "index_key": "django-cookie-consent", - "schema_version": 1, - "attributes": { - "allow_auto_merge": false, - "allow_merge_commit": true, - "allow_rebase_merge": false, - "allow_squash_merge": true, - "allow_update_branch": true, - "archive_on_destroy": true, - "archived": false, - "auto_init": false, - "default_branch": "master", - "delete_branch_on_merge": true, - "description": "Reusable application for managing various cookies and visitors consent for their use in Django project.", - "etag": "W/\"173aa1aa4b557aaf0df43a904e869e9ca939199b50a6297b2d882dc9f0047c9c\"", - "fork": "false", - "full_name": "django-commons/django-cookie-consent", - "git_clone_url": "git://github.com/django-commons/django-cookie-consent.git", - "gitignore_template": null, - "has_discussions": false, - "has_downloads": true, - "has_issues": true, - "has_projects": true, - "has_wiki": false, - "homepage_url": "https://django-cookie-consent.readthedocs.org/en/latest/", - "html_url": "https://github.com/django-commons/django-cookie-consent", - "http_clone_url": "https://github.com/django-commons/django-cookie-consent.git", - "id": "django-cookie-consent", - "ignore_vulnerability_alerts_during_read": null, - "is_template": false, - "license_template": null, - "merge_commit_message": "PR_TITLE", - "merge_commit_title": "MERGE_MESSAGE", - "name": "django-cookie-consent", - "node_id": "MDEwOlJlcG9zaXRvcnkxMDU1NDY2Ng==", - "pages": [], - "primary_language": "Python", - "private": false, - "repo_id": 10554666, - "security_and_analysis": [ - { - "advanced_security": [], - "code_security": [], - "secret_scanning": [ - { - "status": "disabled" - } - ], - "secret_scanning_ai_detection": [], - "secret_scanning_non_provider_patterns": [], - "secret_scanning_push_protection": [ - { - "status": "disabled" - } - ] - } - ], - "source_owner": "", - "source_repo": "", - "squash_merge_commit_message": "COMMIT_MESSAGES", - "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", - "ssh_clone_url": "git@github.com:django-commons/django-cookie-consent.git", - "svn_url": "https://github.com/django-commons/django-cookie-consent", - "template": [], - "topics": [], - "visibility": "public", - "vulnerability_alerts": true, - "web_commit_signoff_required": false - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "eyJzY2hlbWFfdmVyc2lvbiI6IjEifQ==" - }, - { - "index_key": "django-debug-toolbar", - "schema_version": 1, - "attributes": { - "allow_auto_merge": true, - "allow_merge_commit": true, - "allow_rebase_merge": true, - "allow_squash_merge": true, - "allow_update_branch": true, - "archive_on_destroy": true, - "archived": false, - "auto_init": false, - "default_branch": "main", - "delete_branch_on_merge": true, - "description": "A configurable set of panels that display various debug information about the current request/response.", - "etag": "W/\"512845b0e7d9989cb568d0184d5a6a357e17fc929ae4a7d52386073745c6537f\"", - "fork": "false", - "full_name": "django-commons/django-debug-toolbar", - "git_clone_url": "git://github.com/django-commons/django-debug-toolbar.git", - "gitignore_template": null, - "has_discussions": true, - "has_downloads": true, - "has_issues": true, - "has_projects": true, - "has_wiki": true, - "homepage_url": "https://django-debug-toolbar.readthedocs.io", - "html_url": "https://github.com/django-commons/django-debug-toolbar", - "http_clone_url": "https://github.com/django-commons/django-debug-toolbar.git", - "id": "django-debug-toolbar", - "ignore_vulnerability_alerts_during_read": null, - "is_template": false, - "license_template": null, - "merge_commit_message": "PR_TITLE", - "merge_commit_title": "MERGE_MESSAGE", - "name": "django-debug-toolbar", - "node_id": "MDEwOlJlcG9zaXRvcnk0NjkzOQ==", - "pages": [], - "primary_language": "Python", - "private": false, - "repo_id": 46939, - "security_and_analysis": [ - { - "advanced_security": [], - "code_security": [], - "secret_scanning": [ - { - "status": "enabled" - } - ], - "secret_scanning_ai_detection": [], - "secret_scanning_non_provider_patterns": [], - "secret_scanning_push_protection": [ - { - "status": "enabled" - } - ] - } - ], - "source_owner": "", - "source_repo": "", - "squash_merge_commit_message": "COMMIT_MESSAGES", - "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", - "ssh_clone_url": "git@github.com:django-commons/django-debug-toolbar.git", - "svn_url": "https://github.com/django-commons/django-debug-toolbar", - "template": [], - "topics": [], - "visibility": "public", - "vulnerability_alerts": true, - "web_commit_signoff_required": false - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "eyJzY2hlbWFfdmVyc2lvbiI6IjEifQ==" - }, - { - "index_key": "django-enum", - "schema_version": 1, - "attributes": { - "allow_auto_merge": false, - "allow_merge_commit": true, - "allow_rebase_merge": true, - "allow_squash_merge": true, - "allow_update_branch": true, - "archive_on_destroy": true, - "archived": false, - "auto_init": false, - "default_branch": "main", - "delete_branch_on_merge": true, - "description": "Full and natural support for enumerations as Django model fields.", - "etag": "W/\"9ecb31a9c857c9db01f236ed860ebfc448e480a5375423f6557fc8a04198a174\"", - "fork": "false", - "full_name": "django-commons/django-enum", - "git_clone_url": "git://github.com/django-commons/django-enum.git", - "gitignore_template": null, - "has_discussions": true, - "has_downloads": true, - "has_issues": true, - "has_projects": true, - "has_wiki": false, - "homepage_url": "https://django-enum.rtfd.io", - "html_url": "https://github.com/django-commons/django-enum", - "http_clone_url": "https://github.com/django-commons/django-enum.git", - "id": "django-enum", - "ignore_vulnerability_alerts_during_read": null, - "is_template": false, - "license_template": null, - "merge_commit_message": "PR_TITLE", - "merge_commit_title": "MERGE_MESSAGE", - "name": "django-enum", - "node_id": "R_kgDOHrCyiQ", - "pages": [], - "primary_language": "Python", - "private": false, - "repo_id": 514896521, - "security_and_analysis": [ - { - "advanced_security": [], - "code_security": [], - "secret_scanning": [ - { - "status": "disabled" - } - ], - "secret_scanning_ai_detection": [], - "secret_scanning_non_provider_patterns": [], - "secret_scanning_push_protection": [ - { - "status": "disabled" - } - ] - } - ], - "source_owner": "", - "source_repo": "", - "squash_merge_commit_message": "COMMIT_MESSAGES", - "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", - "ssh_clone_url": "git@github.com:django-commons/django-enum.git", - "svn_url": "https://github.com/django-commons/django-enum", - "template": [], - "topics": [ - "bitfield", - "bitfields", - "bitmask", - "database", - "databases", - "defines", - "django", - "enum", - "enumeration", - "enums", - "fields", - "flag", - "flags", - "mask", - "modelfields" - ], - "visibility": "public", - "vulnerability_alerts": true, - "web_commit_signoff_required": false - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "eyJzY2hlbWFfdmVyc2lvbiI6IjEifQ==" - }, - { - "index_key": "django-fsm-2", - "schema_version": 1, - "attributes": { - "allow_auto_merge": false, - "allow_merge_commit": false, - "allow_rebase_merge": true, - "allow_squash_merge": true, - "allow_update_branch": true, - "archive_on_destroy": true, - "archived": false, - "auto_init": false, - "default_branch": "main", - "delete_branch_on_merge": true, - "description": "Django friendly finite state machine support", - "etag": "W/\"ed335fedfda99c81029ffc7d929caf724136fb8efde6b001c68ef46450cb555b\"", - "fork": "false", - "full_name": "django-commons/django-fsm-2", - "git_clone_url": "git://github.com/django-commons/django-fsm-2.git", - "gitignore_template": null, - "has_discussions": true, - "has_downloads": true, - "has_issues": true, - "has_projects": true, - "has_wiki": false, - "homepage_url": "https://github.com/django-commons/django-fsm-2", - "html_url": "https://github.com/django-commons/django-fsm-2", - "http_clone_url": "https://github.com/django-commons/django-fsm-2.git", - "id": "django-fsm-2", - "ignore_vulnerability_alerts_during_read": null, - "is_template": false, - "license_template": null, - "merge_commit_message": "BLANK", - "merge_commit_title": "PR_TITLE", - "name": "django-fsm-2", - "node_id": "R_kgDOIRc3Iw", - "pages": [], - "primary_language": "Python", - "private": false, - "repo_id": 555169571, - "security_and_analysis": [ - { - "advanced_security": [], - "code_security": [], - "secret_scanning": [ - { - "status": "disabled" - } - ], - "secret_scanning_ai_detection": [], - "secret_scanning_non_provider_patterns": [], - "secret_scanning_push_protection": [ - { - "status": "disabled" - } - ] - } - ], - "source_owner": "", - "source_repo": "", - "squash_merge_commit_message": "COMMIT_MESSAGES", - "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", - "ssh_clone_url": "git@github.com:django-commons/django-fsm-2.git", - "svn_url": "https://github.com/django-commons/django-fsm-2", - "template": [], - "topics": [], - "visibility": "public", - "vulnerability_alerts": true, - "web_commit_signoff_required": false - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "eyJzY2hlbWFfdmVyc2lvbiI6IjEifQ==" - }, - { - "index_key": "django-prometheus", - "schema_version": 1, - "attributes": { - "allow_auto_merge": false, - "allow_merge_commit": true, - "allow_rebase_merge": true, - "allow_squash_merge": true, - "allow_update_branch": true, - "archive_on_destroy": true, - "archived": false, - "auto_init": false, - "default_branch": "master", - "delete_branch_on_merge": true, - "description": "Export Django monitoring metrics for Prometheus.io", - "etag": "W/\"a65db355096d3b5a8aba2f7ef345a015ab649a6ec372ff31266ecc368534a210\"", - "fork": "false", - "full_name": "django-commons/django-prometheus", - "git_clone_url": "git://github.com/django-commons/django-prometheus.git", - "gitignore_template": null, - "has_discussions": false, - "has_downloads": true, - "has_issues": true, - "has_projects": true, - "has_wiki": false, - "homepage_url": "", - "html_url": "https://github.com/django-commons/django-prometheus", - "http_clone_url": "https://github.com/django-commons/django-prometheus.git", - "id": "django-prometheus", - "ignore_vulnerability_alerts_during_read": null, - "is_template": false, - "license_template": null, - "merge_commit_message": "PR_TITLE", - "merge_commit_title": "MERGE_MESSAGE", - "name": "django-prometheus", - "node_id": "MDEwOlJlcG9zaXRvcnkzMzQzMzA5Mg==", - "pages": [], - "primary_language": "Python", - "private": false, - "repo_id": 33433092, - "security_and_analysis": [ - { - "advanced_security": [], - "code_security": [], - "secret_scanning": [ - { - "status": "disabled" - } - ], - "secret_scanning_ai_detection": [], - "secret_scanning_non_provider_patterns": [], - "secret_scanning_push_protection": [ - { - "status": "disabled" - } - ] - } - ], - "source_owner": "", - "source_repo": "", - "squash_merge_commit_message": "COMMIT_MESSAGES", - "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", - "ssh_clone_url": "git@github.com:django-commons/django-prometheus.git", - "svn_url": "https://github.com/django-commons/django-prometheus", - "template": [], - "topics": [ - "django", - "django-prometheus", - "exported-metrics", - "metrics", - "monitoring", - "prometheus", - "prometheus-client", - "python" - ], - "visibility": "public", - "vulnerability_alerts": true, - "web_commit_signoff_required": false - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "eyJzY2hlbWFfdmVyc2lvbiI6IjEifQ==" - }, - { - "index_key": "django-simple-history", - "schema_version": 1, - "attributes": { - "allow_auto_merge": false, - "allow_merge_commit": true, - "allow_rebase_merge": false, - "allow_squash_merge": true, - "allow_update_branch": true, - "archive_on_destroy": true, - "archived": false, - "auto_init": false, - "default_branch": "master", - "delete_branch_on_merge": true, - "description": "Store model history and view/revert changes from admin site.", - "etag": "W/\"c38a59315e43a0cd63abcf8311fef8e2c3f41dd754b3c9ed4afc52e20f8cc747\"", - "fork": "false", - "full_name": "django-commons/django-simple-history", - "git_clone_url": "git://github.com/django-commons/django-simple-history.git", - "gitignore_template": null, - "has_discussions": true, - "has_downloads": true, - "has_issues": true, - "has_projects": true, - "has_wiki": true, - "homepage_url": "https://django-simple-history.readthedocs.org", - "html_url": "https://github.com/django-commons/django-simple-history", - "http_clone_url": "https://github.com/django-commons/django-simple-history.git", - "id": "django-simple-history", - "ignore_vulnerability_alerts_during_read": null, - "is_template": false, - "license_template": null, - "merge_commit_message": "PR_TITLE", - "merge_commit_title": "MERGE_MESSAGE", - "name": "django-simple-history", - "node_id": "MDEwOlJlcG9zaXRvcnkxNDQ3ODgy", - "pages": [], - "primary_language": "Python", - "private": false, - "repo_id": 1447882, - "security_and_analysis": [ - { - "advanced_security": [], - "code_security": [], - "secret_scanning": [ - { - "status": "enabled" - } - ], - "secret_scanning_ai_detection": [], - "secret_scanning_non_provider_patterns": [], - "secret_scanning_push_protection": [ - { - "status": "enabled" - } - ] - } - ], - "source_owner": "", - "source_repo": "", - "squash_merge_commit_message": "COMMIT_MESSAGES", - "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", - "ssh_clone_url": "git@github.com:django-commons/django-simple-history.git", - "svn_url": "https://github.com/django-commons/django-simple-history", - "template": [], - "topics": [], - "visibility": "public", - "vulnerability_alerts": true, - "web_commit_signoff_required": false - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "eyJzY2hlbWFfdmVyc2lvbiI6IjEifQ==" - }, - { - "index_key": "django-tailwind-cli", - "schema_version": 1, - "attributes": { - "allow_auto_merge": false, - "allow_merge_commit": false, - "allow_rebase_merge": false, - "allow_squash_merge": true, - "allow_update_branch": true, - "archive_on_destroy": true, - "archived": false, - "auto_init": false, - "default_branch": "main", - "delete_branch_on_merge": true, - "description": "Django and Tailwind integration based on the prebuilt Tailwind CSS CLI.", - "etag": "W/\"9ef828fcf454a0388b78ae41a780fc5462526844acbedfe8011b9fc2dae31eaf\"", - "fork": "false", - "full_name": "django-commons/django-tailwind-cli", - "git_clone_url": "git://github.com/django-commons/django-tailwind-cli.git", - "gitignore_template": null, - "has_discussions": true, - "has_downloads": true, - "has_issues": true, - "has_projects": true, - "has_wiki": false, - "homepage_url": "https://django-tailwind-cli.rtfd.io/", - "html_url": "https://github.com/django-commons/django-tailwind-cli", - "http_clone_url": "https://github.com/django-commons/django-tailwind-cli.git", - "id": "django-tailwind-cli", - "ignore_vulnerability_alerts_during_read": null, - "is_template": false, - "license_template": null, - "merge_commit_message": "PR_TITLE", - "merge_commit_title": "MERGE_MESSAGE", - "name": "django-tailwind-cli", - "node_id": "R_kgDOISkAkA", - "pages": [], - "primary_language": "Python", - "private": false, - "repo_id": 556335248, - "security_and_analysis": [ - { - "advanced_security": [], - "code_security": [], - "secret_scanning": [ - { - "status": "disabled" - } - ], - "secret_scanning_ai_detection": [], - "secret_scanning_non_provider_patterns": [], - "secret_scanning_push_protection": [ - { - "status": "disabled" - } - ] - } - ], - "source_owner": "", - "source_repo": "", - "squash_merge_commit_message": "COMMIT_MESSAGES", - "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", - "ssh_clone_url": "git@github.com:django-commons/django-tailwind-cli.git", - "svn_url": "https://github.com/django-commons/django-tailwind-cli", - "template": [], - "topics": [ - "django", - "django-application", - "python", - "tailwind", - "tailwind-css", - "tailwindcss" - ], - "visibility": "public", - "vulnerability_alerts": true, - "web_commit_signoff_required": false - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "eyJzY2hlbWFfdmVyc2lvbiI6IjEifQ==" - }, - { - "index_key": "django-tasks-scheduler", - "schema_version": 1, - "attributes": { - "allow_auto_merge": false, - "allow_merge_commit": true, - "allow_rebase_merge": false, - "allow_squash_merge": true, - "allow_update_branch": true, - "archive_on_destroy": true, - "archived": false, - "auto_init": false, - "default_branch": "master", - "delete_branch_on_merge": true, - "description": "Schedule async tasks using redis protocol. Redis/ValKey/Dragonfly or any broker using the redis protocol can be used.", - "etag": "W/\"b5bd59ac3c52adf18f6a08254529fcd527478b8f802ba77609409b8fa9073746\"", - "fork": "false", - "full_name": "django-commons/django-tasks-scheduler", - "git_clone_url": "git://github.com/django-commons/django-tasks-scheduler.git", - "gitignore_template": null, - "has_discussions": true, - "has_downloads": true, - "has_issues": true, - "has_projects": true, - "has_wiki": false, - "homepage_url": "https://django-tasks-scheduler.readthedocs.io/", - "html_url": "https://github.com/django-commons/django-tasks-scheduler", - "http_clone_url": "https://github.com/django-commons/django-tasks-scheduler.git", - "id": "django-tasks-scheduler", - "ignore_vulnerability_alerts_during_read": null, - "is_template": false, - "license_template": null, - "merge_commit_message": "PR_TITLE", - "merge_commit_title": "MERGE_MESSAGE", - "name": "django-tasks-scheduler", - "node_id": "R_kgDOJzK5Kg", - "pages": [], - "primary_language": "Python", - "private": false, - "repo_id": 657635626, - "security_and_analysis": [ - { - "advanced_security": [], - "code_security": [], - "secret_scanning": [ - { - "status": "disabled" - } - ], - "secret_scanning_ai_detection": [], - "secret_scanning_non_provider_patterns": [], - "secret_scanning_push_protection": [ - { - "status": "disabled" - } - ] - } - ], - "source_owner": "", - "source_repo": "", - "squash_merge_commit_message": "COMMIT_MESSAGES", - "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", - "ssh_clone_url": "git@github.com:django-commons/django-tasks-scheduler.git", - "svn_url": "https://github.com/django-commons/django-tasks-scheduler", - "template": [], - "topics": [ - "background-jobs", - "django", - "django-application", - "job-queue", - "python", - "redis", - "scheduled-jobs", - "scheduled-tasks", - "task-queue", - "valkey" - ], - "visibility": "public", - "vulnerability_alerts": true, - "web_commit_signoff_required": false - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "eyJzY2hlbWFfdmVyc2lvbiI6IjEifQ==" - }, - { - "index_key": "django-typer", - "schema_version": 1, - "attributes": { - "allow_auto_merge": false, - "allow_merge_commit": true, - "allow_rebase_merge": true, - "allow_squash_merge": true, - "allow_update_branch": true, - "archive_on_destroy": true, - "archived": false, - "auto_init": false, - "default_branch": "main", - "delete_branch_on_merge": true, - "description": "Use Typer (type hints) to define the interface for your Django management commands.", - "etag": "W/\"c8018a77dc281c8eb7be7de3e9a81f0127b45718dc019ac878c5ea242b04b0f6\"", - "fork": "false", - "full_name": "django-commons/django-typer", - "git_clone_url": "git://github.com/django-commons/django-typer.git", - "gitignore_template": null, - "has_discussions": true, - "has_downloads": true, - "has_issues": true, - "has_projects": true, - "has_wiki": true, - "homepage_url": "https://django-typer.rtfd.io", - "html_url": "https://github.com/django-commons/django-typer", - "http_clone_url": "https://github.com/django-commons/django-typer.git", - "id": "django-typer", - "ignore_vulnerability_alerts_during_read": null, - "is_template": false, - "license_template": null, - "merge_commit_message": "PR_TITLE", - "merge_commit_title": "MERGE_MESSAGE", - "name": "django-typer", - "node_id": "R_kgDOKkMk_Q", - "pages": [], - "primary_language": "Python", - "private": false, - "repo_id": 709043453, - "security_and_analysis": [ - { - "advanced_security": [], - "code_security": [], - "secret_scanning": [ - { - "status": "enabled" - } - ], - "secret_scanning_ai_detection": [], - "secret_scanning_non_provider_patterns": [], - "secret_scanning_push_protection": [ - { - "status": "enabled" - } - ] - } - ], - "source_owner": "", - "source_repo": "", - "squash_merge_commit_message": "COMMIT_MESSAGES", - "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", - "ssh_clone_url": "git@github.com:django-commons/django-typer.git", - "svn_url": "https://github.com/django-commons/django-typer", - "template": [], - "topics": [ - "admin", - "cli", - "click", - "command-line", - "commands", - "django", - "management", - "python", - "python3", - "shell", - "terminal", - "typehints", - "typer" - ], - "visibility": "public", - "vulnerability_alerts": true, - "web_commit_signoff_required": false - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "eyJzY2hlbWFfdmVyc2lvbiI6IjEifQ==" - }, - { - "index_key": "django-valkey", - "schema_version": 1, - "attributes": { - "allow_auto_merge": true, - "allow_merge_commit": true, - "allow_rebase_merge": true, - "allow_squash_merge": true, - "allow_update_branch": true, - "archive_on_destroy": true, - "archived": false, - "auto_init": false, - "default_branch": "main", - "delete_branch_on_merge": false, - "description": "a Valkey backend for django", - "etag": "W/\"900ab9cde0911515bc590810cc86f2ed47fdf3beb8b64cd1b557e7447f1e1c18\"", - "fork": "false", - "full_name": "django-commons/django-valkey", - "git_clone_url": "git://github.com/django-commons/django-valkey.git", - "gitignore_template": null, - "has_discussions": false, - "has_downloads": true, - "has_issues": true, - "has_projects": true, - "has_wiki": false, - "homepage_url": "https://django-valkey.readthedocs.io/en/latest/", - "html_url": "https://github.com/django-commons/django-valkey", - "http_clone_url": "https://github.com/django-commons/django-valkey.git", - "id": "django-valkey", - "ignore_vulnerability_alerts_during_read": null, - "is_template": false, - "license_template": null, - "merge_commit_message": "PR_TITLE", - "merge_commit_title": "MERGE_MESSAGE", - "name": "django-valkey", - "node_id": "R_kgDOMsI4lw", - "pages": [], - "primary_language": "Python", - "private": false, - "repo_id": 851589271, - "security_and_analysis": [ - { - "advanced_security": [], - "code_security": [], - "secret_scanning": [ - { - "status": "disabled" - } - ], - "secret_scanning_ai_detection": [], - "secret_scanning_non_provider_patterns": [], - "secret_scanning_push_protection": [ - { - "status": "disabled" - } - ] - } - ], - "source_owner": "", - "source_repo": "", - "squash_merge_commit_message": "COMMIT_MESSAGES", - "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", - "ssh_clone_url": "git@github.com:django-commons/django-valkey.git", - "svn_url": "https://github.com/django-commons/django-valkey", - "template": [], - "topics": [ - "backend", - "cache", - "database", - "django", - "python", - "session", - "valkey", - "valkey-client" - ], - "visibility": "public", - "vulnerability_alerts": true, - "web_commit_signoff_required": false - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "eyJzY2hlbWFfdmVyc2lvbiI6IjEifQ==" - }, - { - "index_key": "drf-excel", - "schema_version": 1, - "attributes": { - "allow_auto_merge": false, - "allow_merge_commit": true, - "allow_rebase_merge": true, - "allow_squash_merge": true, - "allow_update_branch": true, - "archive_on_destroy": true, - "archived": false, - "auto_init": false, - "default_branch": "main", - "delete_branch_on_merge": true, - "description": "An XLSX spreadsheet renderer for Django REST Framework.", - "etag": "W/\"0a684b721c621ee7ab85891c12177aba97464c7462ba6b0aaccbdbd33ab98289\"", - "fork": "false", - "full_name": "django-commons/drf-excel", - "git_clone_url": "git://github.com/django-commons/drf-excel.git", - "gitignore_template": null, - "has_discussions": false, - "has_downloads": true, - "has_issues": true, - "has_projects": true, - "has_wiki": false, - "homepage_url": "", - "html_url": "https://github.com/django-commons/drf-excel", - "http_clone_url": "https://github.com/django-commons/drf-excel.git", - "id": "drf-excel", - "ignore_vulnerability_alerts_during_read": null, - "is_template": false, - "license_template": null, - "merge_commit_message": "PR_TITLE", - "merge_commit_title": "MERGE_MESSAGE", - "name": "drf-excel", - "node_id": "MDEwOlJlcG9zaXRvcnkxMDU2ODYwODA=", - "pages": [], - "primary_language": "Python", - "private": false, - "repo_id": 105686080, - "security_and_analysis": [ - { - "advanced_security": [], - "code_security": [], - "secret_scanning": [ - { - "status": "disabled" - } - ], - "secret_scanning_ai_detection": [], - "secret_scanning_non_provider_patterns": [], - "secret_scanning_push_protection": [ - { - "status": "disabled" - } - ] - } - ], - "source_owner": "", - "source_repo": "", - "squash_merge_commit_message": "COMMIT_MESSAGES", - "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", - "ssh_clone_url": "git@github.com:django-commons/drf-excel.git", - "svn_url": "https://github.com/django-commons/drf-excel", - "template": [], - "topics": [], - "visibility": "public", - "vulnerability_alerts": true, - "web_commit_signoff_required": false - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "eyJzY2hlbWFfdmVyc2lvbiI6IjEifQ==" - }, - { - "index_key": "membership", - "schema_version": 1, - "attributes": { - "allow_auto_merge": false, - "allow_merge_commit": false, - "allow_rebase_merge": true, - "allow_squash_merge": true, - "allow_update_branch": true, - "archive_on_destroy": true, - "archived": false, - "auto_init": false, - "default_branch": "main", - "delete_branch_on_merge": true, - "description": "Membership repository for the django-commons organization.", - "etag": "W/\"9c5c270c4dfc9aa051791ba5dce9d16200a0f1baba4390ebb7d0693fa0f641ae\"", - "fork": "false", - "full_name": "django-commons/membership", - "git_clone_url": "git://github.com/django-commons/membership.git", - "gitignore_template": null, - "has_discussions": true, - "has_downloads": true, - "has_issues": true, - "has_projects": true, - "has_wiki": false, - "homepage_url": "", - "html_url": "https://github.com/django-commons/membership", - "http_clone_url": "https://github.com/django-commons/membership.git", - "id": "membership", - "ignore_vulnerability_alerts_during_read": null, - "is_template": false, - "license_template": null, - "merge_commit_message": "PR_TITLE", - "merge_commit_title": "MERGE_MESSAGE", - "name": "membership", - "node_id": "R_kgDOLklIpA", - "pages": [], - "primary_language": "HCL", - "private": false, - "repo_id": 776554660, - "security_and_analysis": [ - { - "advanced_security": [], - "code_security": [], - "secret_scanning": [ - { - "status": "disabled" - } - ], - "secret_scanning_ai_detection": [], - "secret_scanning_non_provider_patterns": [], - "secret_scanning_push_protection": [ - { - "status": "disabled" - } - ] - } - ], - "source_owner": "", - "source_repo": "", - "squash_merge_commit_message": "COMMIT_MESSAGES", - "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", - "ssh_clone_url": "git@github.com:django-commons/membership.git", - "svn_url": "https://github.com/django-commons/membership", - "template": [], - "topics": [], - "visibility": "public", - "vulnerability_alerts": true, - "web_commit_signoff_required": false - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "eyJzY2hlbWFfdmVyc2lvbiI6IjEifQ==" - } - ] - }, - { - "mode": "managed", - "type": "github_repository_collaborators", - "name": "this", - "provider": "provider[\"registry.terraform.io/integrations/github\"]", - "instances": [ - { - "index_key": "axe-selenium-python", - "schema_version": 0, - "attributes": { - "id": "axe-selenium-python", - "ignore_team": [ - { - "team_id": "admins" - } - ], - "invitation_ids": {}, - "repository": "axe-selenium-python", - "team": [ - { - "permission": "admin", - "team_id": "axe-selenium-python-admins" - }, - { - "permission": "maintain", - "team_id": "axe-selenium-python-committers" - }, - { - "permission": "triage", - "team_id": "axe-selenium-python" - } - ], - "user": [] - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_repository.this", - "github_team.org_teams", - "github_team.repo_admin_team", - "github_team.repo_committer_team", - "github_team.repo_team" - ] - }, - { - "index_key": "best-practices", - "schema_version": 0, - "attributes": { - "id": "best-practices", - "ignore_team": [ - { - "team_id": "admins" - } - ], - "invitation_ids": {}, - "repository": "best-practices", - "team": [ - { - "permission": "admin", - "team_id": "best-practices-admins" - }, - { - "permission": "maintain", - "team_id": "best-practices-committers" - }, - { - "permission": "triage", - "team_id": "best-practices" - } - ], - "user": [] - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_repository.this", - "github_team.org_teams", - "github_team.repo_admin_team", - "github_team.repo_committer_team", - "github_team.repo_team" - ] - }, - { - "index_key": "django-click", - "schema_version": 0, - "attributes": { - "id": "django-click", - "ignore_team": [ - { - "team_id": "admins" - } - ], - "invitation_ids": {}, - "repository": "django-click", - "team": [ - { - "permission": "admin", - "team_id": "django-click-admins" - }, - { - "permission": "maintain", - "team_id": "django-click-committers" - }, - { - "permission": "triage", - "team_id": "django-click" - } - ], - "user": [] - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_repository.this", - "github_team.org_teams", - "github_team.repo_admin_team", - "github_team.repo_committer_team", - "github_team.repo_team" - ] - }, - { - "index_key": "django-cookie-consent", - "schema_version": 0, - "attributes": { - "id": "django-cookie-consent", - "ignore_team": [ - { - "team_id": "admins" - } - ], - "invitation_ids": {}, - "repository": "django-cookie-consent", - "team": [ - { - "permission": "admin", - "team_id": "django-cookie-consent-admins" - }, - { - "permission": "maintain", - "team_id": "django-cookie-consent-committers" - }, - { - "permission": "triage", - "team_id": "django-cookie-consent" - } - ], - "user": [] - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_repository.this", - "github_team.org_teams", - "github_team.repo_admin_team", - "github_team.repo_committer_team", - "github_team.repo_team" - ] - }, - { - "index_key": "django-debug-toolbar", - "schema_version": 0, - "attributes": { - "id": "django-debug-toolbar", - "ignore_team": [ - { - "team_id": "admins" - } - ], - "invitation_ids": {}, - "repository": "django-debug-toolbar", - "team": [ - { - "permission": "admin", - "team_id": "django-debug-toolbar-admins" - }, - { - "permission": "maintain", - "team_id": "django-debug-toolbar-committers" - }, - { - "permission": "triage", - "team_id": "django-debug-toolbar" - } - ], - "user": [] - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_repository.this", - "github_team.org_teams", - "github_team.repo_admin_team", - "github_team.repo_committer_team", - "github_team.repo_team" - ] - }, - { - "index_key": "django-enum", - "schema_version": 0, - "attributes": { - "id": "django-enum", - "ignore_team": [ - { - "team_id": "admins" - } - ], - "invitation_ids": {}, - "repository": "django-enum", - "team": [ - { - "permission": "admin", - "team_id": "django-enum-admins" - }, - { - "permission": "maintain", - "team_id": "django-enum-committers" - }, - { - "permission": "triage", - "team_id": "django-enum" - } - ], - "user": [] - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_repository.this", - "github_team.org_teams", - "github_team.repo_admin_team", - "github_team.repo_committer_team", - "github_team.repo_team" - ] - }, - { - "index_key": "django-fsm-2", - "schema_version": 0, - "attributes": { - "id": "django-fsm-2", - "ignore_team": [ - { - "team_id": "admins" - } - ], - "invitation_ids": {}, - "repository": "django-fsm-2", - "team": [ - { - "permission": "admin", - "team_id": "django-fsm-2-admins" - }, - { - "permission": "maintain", - "team_id": "django-fsm-2-committers" - }, - { - "permission": "triage", - "team_id": "django-fsm-2" - } - ], - "user": [] - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_repository.this", - "github_team.org_teams", - "github_team.repo_admin_team", - "github_team.repo_committer_team", - "github_team.repo_team" - ] - }, - { - "index_key": "django-prometheus", - "schema_version": 0, - "attributes": { - "id": "django-prometheus", - "ignore_team": [ - { - "team_id": "admins" - } - ], - "invitation_ids": {}, - "repository": "django-prometheus", - "team": [ - { - "permission": "admin", - "team_id": "django-prometheus-admins" - }, - { - "permission": "maintain", - "team_id": "django-prometheus-committers" - }, - { - "permission": "triage", - "team_id": "django-prometheus" - } - ], - "user": [] - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_repository.this", - "github_team.org_teams", - "github_team.repo_admin_team", - "github_team.repo_committer_team", - "github_team.repo_team" - ] - }, - { - "index_key": "django-simple-history", - "schema_version": 0, - "attributes": { - "id": "django-simple-history", - "ignore_team": [ - { - "team_id": "admins" - } - ], - "invitation_ids": {}, - "repository": "django-simple-history", - "team": [ - { - "permission": "admin", - "team_id": "django-simple-history-admins" - }, - { - "permission": "maintain", - "team_id": "django-simple-history-committers" - }, - { - "permission": "triage", - "team_id": "django-simple-history" - } - ], - "user": [] - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_repository.this", - "github_team.org_teams", - "github_team.repo_admin_team", - "github_team.repo_committer_team", - "github_team.repo_team" - ] - }, - { - "index_key": "django-tailwind-cli", - "schema_version": 0, - "attributes": { - "id": "django-tailwind-cli", - "ignore_team": [ - { - "team_id": "admins" - } - ], - "invitation_ids": {}, - "repository": "django-tailwind-cli", - "team": [ - { - "permission": "admin", - "team_id": "django-tailwind-cli-admins" - }, - { - "permission": "maintain", - "team_id": "django-tailwind-cli-committers" - }, - { - "permission": "triage", - "team_id": "django-tailwind-cli" - } - ], - "user": [] - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_repository.this", - "github_team.org_teams", - "github_team.repo_admin_team", - "github_team.repo_committer_team", - "github_team.repo_team" - ] - }, - { - "index_key": "django-tasks-scheduler", - "schema_version": 0, - "attributes": { - "id": "django-tasks-scheduler", - "ignore_team": [ - { - "team_id": "admins" - } - ], - "invitation_ids": {}, - "repository": "django-tasks-scheduler", - "team": [ - { - "permission": "admin", - "team_id": "django-tasks-scheduler-admins" - }, - { - "permission": "maintain", - "team_id": "django-tasks-scheduler-committers" - }, - { - "permission": "triage", - "team_id": "django-tasks-scheduler" - } - ], - "user": [] - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_repository.this", - "github_team.org_teams", - "github_team.repo_admin_team", - "github_team.repo_committer_team", - "github_team.repo_team" - ] - }, - { - "index_key": "django-typer", - "schema_version": 0, - "attributes": { - "id": "django-typer", - "ignore_team": [ - { - "team_id": "admins" - } - ], - "invitation_ids": {}, - "repository": "django-typer", - "team": [ - { - "permission": "admin", - "team_id": "django-typer-admins" - }, - { - "permission": "maintain", - "team_id": "django-typer-committers" - }, - { - "permission": "triage", - "team_id": "django-typer" - } - ], - "user": [] - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_repository.this", - "github_team.org_teams", - "github_team.repo_admin_team", - "github_team.repo_committer_team", - "github_team.repo_team" - ] - }, - { - "index_key": "django-valkey", - "schema_version": 0, - "attributes": { - "id": "django-valkey", - "ignore_team": [ - { - "team_id": "admins" - } - ], - "invitation_ids": {}, - "repository": "django-valkey", - "team": [ - { - "permission": "admin", - "team_id": "django-valkey-admins" - }, - { - "permission": "maintain", - "team_id": "django-valkey-committers" - }, - { - "permission": "triage", - "team_id": "django-valkey" - } - ], - "user": [] - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_repository.this", - "github_team.org_teams", - "github_team.repo_admin_team", - "github_team.repo_committer_team", - "github_team.repo_team" - ] - }, - { - "index_key": "drf-excel", - "schema_version": 0, - "attributes": { - "id": "drf-excel", - "ignore_team": [ - { - "team_id": "admins" - } - ], - "invitation_ids": {}, - "repository": "drf-excel", - "team": [ - { - "permission": "admin", - "team_id": "drf-excel-admins" - }, - { - "permission": "maintain", - "team_id": "drf-excel-committers" - }, - { - "permission": "triage", - "team_id": "drf-excel" - } - ], - "user": [] - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_repository.this", - "github_team.org_teams", - "github_team.repo_admin_team", - "github_team.repo_committer_team", - "github_team.repo_team" - ] - } - ] - }, - { - "mode": "managed", - "type": "github_repository_environment", - "name": "pypi", - "provider": "provider[\"registry.terraform.io/integrations/github\"]", - "instances": [ - { - "index_key": "axe-selenium-python", - "schema_version": 0, - "attributes": { - "can_admins_bypass": true, - "deployment_branch_policy": [], - "environment": "pypi", - "id": "axe-selenium-python:pypi", - "prevent_self_review": false, - "repository": "axe-selenium-python", - "reviewers": [ - { - "teams": [ - 14236311 - ], - "users": [] - } - ], - "wait_timer": 0 - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_admin_team", - "github_team.repo_team" - ] - }, - { - "index_key": "best-practices", - "schema_version": 0, - "attributes": { - "can_admins_bypass": true, - "deployment_branch_policy": [], - "environment": "pypi", - "id": "best-practices:pypi", - "prevent_self_review": false, - "repository": "best-practices", - "reviewers": [ - { - "teams": [ - 9757650 - ], - "users": [] - } - ], - "wait_timer": 0 - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "eyJzY2hlbWFfdmVyc2lvbiI6IjAifQ==", - "dependencies": [ - "github_team.repo_admin_team", - "github_team.repo_team" - ] - }, - { - "index_key": "django-click", - "schema_version": 0, - "attributes": { - "can_admins_bypass": true, - "deployment_branch_policy": [], - "environment": "pypi", - "id": "django-click:pypi", - "prevent_self_review": false, - "repository": "django-click", - "reviewers": [ - { - "teams": [ - 12315701 - ], - "users": [] - } - ], - "wait_timer": 0 - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_admin_team", - "github_team.repo_team" - ] - }, - { - "index_key": "django-cookie-consent", - "schema_version": 0, - "attributes": { - "can_admins_bypass": true, - "deployment_branch_policy": [], - "environment": "pypi", - "id": "django-cookie-consent:pypi", - "prevent_self_review": false, - "repository": "django-cookie-consent", - "reviewers": [ - { - "teams": [ - 13287527 - ], - "users": [] - } - ], - "wait_timer": 0 - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_admin_team", - "github_team.repo_team" - ] - }, - { - "index_key": "django-debug-toolbar", - "schema_version": 0, - "attributes": { - "can_admins_bypass": true, - "deployment_branch_policy": [], - "environment": "pypi", - "id": "django-debug-toolbar:pypi", - "prevent_self_review": false, - "repository": "django-debug-toolbar", - "reviewers": [ - { - "teams": [ - 11354341 - ], - "users": [] - } - ], - "wait_timer": 0 - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_admin_team", - "github_team.repo_team" - ] - }, - { - "index_key": "django-enum", - "schema_version": 0, - "attributes": { - "can_admins_bypass": true, - "deployment_branch_policy": [], - "environment": "pypi", - "id": "django-enum:pypi", - "prevent_self_review": false, - "repository": "django-enum", - "reviewers": [ - { - "teams": [ - 12828751 - ], - "users": [] - } - ], - "wait_timer": 0 - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_admin_team", - "github_team.repo_team" - ] - }, - { - "index_key": "django-fsm-2", - "schema_version": 0, - "attributes": { - "can_admins_bypass": true, - "deployment_branch_policy": [], - "environment": "pypi", - "id": "django-fsm-2:pypi", - "prevent_self_review": false, - "repository": "django-fsm-2", - "reviewers": [ - { - "teams": [ - 10870432 - ], - "users": [] - } - ], - "wait_timer": 0 - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "eyJzY2hlbWFfdmVyc2lvbiI6IjAifQ==", - "dependencies": [ - "github_team.repo_admin_team", - "github_team.repo_team" - ] - }, - { - "index_key": "django-prometheus", - "schema_version": 0, - "attributes": { - "can_admins_bypass": true, - "deployment_branch_policy": [], - "environment": "pypi", - "id": "django-prometheus:pypi", - "prevent_self_review": false, - "repository": "django-prometheus", - "reviewers": [ - { - "teams": [ - 13333849 - ], - "users": [] - } - ], - "wait_timer": 0 - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_admin_team", - "github_team.repo_team" - ] - }, - { - "index_key": "django-simple-history", - "schema_version": 0, - "attributes": { - "can_admins_bypass": true, - "deployment_branch_policy": [], - "environment": "pypi", - "id": "django-simple-history:pypi", - "prevent_self_review": false, - "repository": "django-simple-history", - "reviewers": [ - { - "teams": [ - 13286901 - ], - "users": [] - } - ], - "wait_timer": 0 - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "eyJzY2hlbWFfdmVyc2lvbiI6IjAifQ==", - "dependencies": [ - "github_team.repo_admin_team", - "github_team.repo_team" - ] - }, - { - "index_key": "django-tailwind-cli", - "schema_version": 0, - "attributes": { - "can_admins_bypass": true, - "deployment_branch_policy": [], - "environment": "pypi", - "id": "django-tailwind-cli:pypi", - "prevent_self_review": false, - "repository": "django-tailwind-cli", - "reviewers": [ - { - "teams": [ - 11394000 - ], - "users": [] - } - ], - "wait_timer": 0 - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_admin_team", - "github_team.repo_team" - ] - }, - { - "index_key": "django-tasks-scheduler", - "schema_version": 0, - "attributes": { - "can_admins_bypass": true, - "deployment_branch_policy": [], - "environment": "pypi", - "id": "django-tasks-scheduler:pypi", - "prevent_self_review": false, - "repository": "django-tasks-scheduler", - "reviewers": [ - { - "teams": [ - 10707221 - ], - "users": [] - } - ], - "wait_timer": 0 - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_admin_team", - "github_team.repo_team" - ] - }, - { - "index_key": "django-typer", - "schema_version": 0, - "attributes": { - "can_admins_bypass": true, - "deployment_branch_policy": [], - "environment": "pypi", - "id": "django-typer:pypi", - "prevent_self_review": false, - "repository": "django-typer", - "reviewers": [ - { - "teams": [ - 11217214 - ], - "users": [] - } - ], - "wait_timer": 0 - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_admin_team", - "github_team.repo_team" - ] - }, - { - "index_key": "django-valkey", - "schema_version": 0, - "attributes": { - "can_admins_bypass": true, - "deployment_branch_policy": [], - "environment": "pypi", - "id": "django-valkey:pypi", - "prevent_self_review": false, - "repository": "django-valkey", - "reviewers": [ - { - "teams": [ - 13334520 - ], - "users": [] - } - ], - "wait_timer": 0 - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_admin_team", - "github_team.repo_team" - ] - }, - { - "index_key": "drf-excel", - "schema_version": 0, - "attributes": { - "can_admins_bypass": true, - "deployment_branch_policy": [], - "environment": "pypi", - "id": "drf-excel:pypi", - "prevent_self_review": false, - "repository": "drf-excel", - "reviewers": [ - { - "teams": [ - 11341702 - ], - "users": [] - } - ], - "wait_timer": 0 - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_admin_team", - "github_team.repo_team" - ] - } - ] - }, - { - "mode": "managed", - "type": "github_repository_environment", - "name": "testpypi", - "provider": "provider[\"registry.terraform.io/integrations/github\"]", - "instances": [ - { - "index_key": "axe-selenium-python", - "schema_version": 0, - "attributes": { - "can_admins_bypass": true, - "deployment_branch_policy": [], - "environment": "testpypi", - "id": "axe-selenium-python:testpypi", - "prevent_self_review": false, - "repository": "axe-selenium-python", - "reviewers": [], - "wait_timer": 0 - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==" - }, - { - "index_key": "best-practices", - "schema_version": 0, - "attributes": { - "can_admins_bypass": true, - "deployment_branch_policy": [], - "environment": "testpypi", - "id": "best-practices:testpypi", - "prevent_self_review": null, - "repository": "best-practices", - "reviewers": [], - "wait_timer": 0 - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "eyJzY2hlbWFfdmVyc2lvbiI6IjAifQ==" - }, - { - "index_key": "django-click", - "schema_version": 0, - "attributes": { - "can_admins_bypass": true, - "deployment_branch_policy": [], - "environment": "testpypi", - "id": "django-click:testpypi", - "prevent_self_review": false, - "repository": "django-click", - "reviewers": [], - "wait_timer": 0 - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==" - }, - { - "index_key": "django-cookie-consent", - "schema_version": 0, - "attributes": { - "can_admins_bypass": true, - "deployment_branch_policy": [], - "environment": "testpypi", - "id": "django-cookie-consent:testpypi", - "prevent_self_review": false, - "repository": "django-cookie-consent", - "reviewers": [], - "wait_timer": 0 - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==" - }, - { - "index_key": "django-debug-toolbar", - "schema_version": 0, - "attributes": { - "can_admins_bypass": true, - "deployment_branch_policy": [], - "environment": "testpypi", - "id": "django-debug-toolbar:testpypi", - "prevent_self_review": false, - "repository": "django-debug-toolbar", - "reviewers": [], - "wait_timer": 0 - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==" - }, - { - "index_key": "django-enum", - "schema_version": 0, - "attributes": { - "can_admins_bypass": true, - "deployment_branch_policy": [], - "environment": "testpypi", - "id": "django-enum:testpypi", - "prevent_self_review": false, - "repository": "django-enum", - "reviewers": [], - "wait_timer": 0 - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==" - }, - { - "index_key": "django-fsm-2", - "schema_version": 0, - "attributes": { - "can_admins_bypass": true, - "deployment_branch_policy": [], - "environment": "testpypi", - "id": "django-fsm-2:testpypi", - "prevent_self_review": null, - "repository": "django-fsm-2", - "reviewers": [], - "wait_timer": 0 - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "eyJzY2hlbWFfdmVyc2lvbiI6IjAifQ==" - }, - { - "index_key": "django-prometheus", - "schema_version": 0, - "attributes": { - "can_admins_bypass": true, - "deployment_branch_policy": [], - "environment": "testpypi", - "id": "django-prometheus:testpypi", - "prevent_self_review": false, - "repository": "django-prometheus", - "reviewers": [], - "wait_timer": 0 - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==" - }, - { - "index_key": "django-simple-history", - "schema_version": 0, - "attributes": { - "can_admins_bypass": true, - "deployment_branch_policy": [], - "environment": "testpypi", - "id": "django-simple-history:testpypi", - "prevent_self_review": null, - "repository": "django-simple-history", - "reviewers": [], - "wait_timer": 0 - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "eyJzY2hlbWFfdmVyc2lvbiI6IjAifQ==" - }, - { - "index_key": "django-tailwind-cli", - "schema_version": 0, - "attributes": { - "can_admins_bypass": true, - "deployment_branch_policy": [], - "environment": "testpypi", - "id": "django-tailwind-cli:testpypi", - "prevent_self_review": false, - "repository": "django-tailwind-cli", - "reviewers": [], - "wait_timer": 0 - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==" - }, - { - "index_key": "django-tasks-scheduler", - "schema_version": 0, - "attributes": { - "can_admins_bypass": true, - "deployment_branch_policy": [], - "environment": "testpypi", - "id": "django-tasks-scheduler:testpypi", - "prevent_self_review": false, - "repository": "django-tasks-scheduler", - "reviewers": [], - "wait_timer": 0 - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==" - }, - { - "index_key": "django-typer", - "schema_version": 0, - "attributes": { - "can_admins_bypass": true, - "deployment_branch_policy": [], - "environment": "testpypi", - "id": "django-typer:testpypi", - "prevent_self_review": false, - "repository": "django-typer", - "reviewers": [], - "wait_timer": 0 - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==" - }, - { - "index_key": "django-valkey", - "schema_version": 0, - "attributes": { - "can_admins_bypass": true, - "deployment_branch_policy": [], - "environment": "testpypi", - "id": "django-valkey:testpypi", - "prevent_self_review": false, - "repository": "django-valkey", - "reviewers": [], - "wait_timer": 0 - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==" - }, - { - "index_key": "drf-excel", - "schema_version": 0, - "attributes": { - "can_admins_bypass": true, - "deployment_branch_policy": [], - "environment": "testpypi", - "id": "drf-excel:testpypi", - "prevent_self_review": false, - "repository": "drf-excel", - "reviewers": [], - "wait_timer": 0 - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==" - } - ] - }, - { - "mode": "managed", - "type": "github_team", - "name": "org_designers_team", - "provider": "provider[\"registry.terraform.io/integrations/github\"]", - "instances": [ - { - "schema_version": 0, - "attributes": { - "create_default_maintainer": false, - "description": "Django Commons designers", - "etag": "W/\"6190db9e35543983d98c90efd5100623c9aa039b6a5c86cf4f39d884ea57b542\"", - "id": "14084892", - "ldap_dn": "", - "members_count": 12, - "name": "Designers", - "node_id": "T_kwDOCaaRBM4A1usc", - "parent_team_id": "", - "parent_team_read_id": "", - "parent_team_read_slug": "", - "privacy": "closed", - "slug": "designers" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==" - } - ] - }, - { - "mode": "managed", - "type": "github_team", - "name": "org_teams", - "provider": "provider[\"registry.terraform.io/integrations/github\"]", - "instances": [ - { - "index_key": "Admins", - "schema_version": 0, - "attributes": { - "create_default_maintainer": false, - "description": "django-commons administrators", - "etag": "W/\"5f69695e20abebe020e6c81b6e8964fa94fa8813fa3ab99a4bb84e97661fb6cb\"", - "id": "9763562", - "ldap_dn": "", - "members_count": 5, - "name": "Admins", - "node_id": "T_kwDOCaaRBM4AlPrq", - "parent_team_id": "", - "parent_team_read_id": "", - "parent_team_read_slug": "", - "privacy": "closed", - "slug": "admins" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "eyJzY2hlbWFfdmVyc2lvbiI6IjAifQ==" - } - ] - }, - { - "mode": "managed", - "type": "github_team", - "name": "repo_admin_team", - "provider": "provider[\"registry.terraform.io/integrations/github\"]", - "instances": [ - { - "index_key": "axe-selenium-python", - "schema_version": 0, - "attributes": { - "create_default_maintainer": false, - "description": "Admin team for the axe-selenium-python repository", - "etag": "W/\"1b716a4778cf4e1484e4092a91e53292612564219b7bfa6d2d2bd8c02997417e\"", - "id": "14236311", - "ldap_dn": "", - "members_count": 2, - "name": "axe-selenium-python-admins", - "node_id": "T_kwDOCaaRBM4A2TqX", - "parent_team_id": "14236309", - "parent_team_read_id": "14236309", - "parent_team_read_slug": "axe-selenium-python", - "privacy": "closed", - "slug": "axe-selenium-python-admins" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_team" - ] - }, - { - "index_key": "best-practices", - "schema_version": 0, - "attributes": { - "create_default_maintainer": false, - "description": "Admin team for the best-practices repository", - "etag": "W/\"a9952481b09f4a3b97bb23e258710cd776ab139c891bc4070a4ec94b00d3bb69\"", - "id": "9757650", - "ldap_dn": "", - "members_count": 5, - "name": "best-practices-admins", - "node_id": "T_kwDOCaaRBM4AlOPS", - "parent_team_id": "9757678", - "parent_team_read_id": "9757678", - "parent_team_read_slug": "best-practices", - "privacy": "closed", - "slug": "best-practices-admins" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_team" - ] - }, - { - "index_key": "django-click", - "schema_version": 0, - "attributes": { - "create_default_maintainer": false, - "description": "Admin team for the django-click repository", - "etag": "W/\"53141d12174bc422fe289a2eeaa70d180aa0d81b46797da15541c36df8e5415d\"", - "id": "12315701", - "ldap_dn": "", - "members_count": 2, - "name": "django-click-admins", - "node_id": "T_kwDOCaaRBM4Au-w1", - "parent_team_id": "12315699", - "parent_team_read_id": "12315699", - "parent_team_read_slug": "django-click", - "privacy": "closed", - "slug": "django-click-admins" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_team" - ] - }, - { - "index_key": "django-cookie-consent", - "schema_version": 0, - "attributes": { - "create_default_maintainer": false, - "description": "Admin team for the django-cookie-consent repository", - "etag": "W/\"409dcbf7cf68c3abf3e19ca123c05fd6d7da91dc505f3deb975abdadb8e32bd0\"", - "id": "13287527", - "ldap_dn": "", - "members_count": 1, - "name": "django-cookie-consent-admins", - "node_id": "T_kwDOCaaRBM4AysBn", - "parent_team_id": "13287524", - "parent_team_read_id": "13287524", - "parent_team_read_slug": "django-cookie-consent", - "privacy": "closed", - "slug": "django-cookie-consent-admins" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_team" - ] - }, - { - "index_key": "django-debug-toolbar", - "schema_version": 0, - "attributes": { - "create_default_maintainer": false, - "description": "Admin team for the django-debug-toolbar repository", - "etag": "W/\"dbcbea2d83a5dcf5827b865f6770dcaa6f1d8a83d3df5a3fc7421ed91958d347\"", - "id": "11354341", - "ldap_dn": "", - "members_count": 2, - "name": "django-debug-toolbar-admins", - "node_id": "T_kwDOCaaRBM4ArUDl", - "parent_team_id": "11354339", - "parent_team_read_id": "11354339", - "parent_team_read_slug": "django-debug-toolbar", - "privacy": "closed", - "slug": "django-debug-toolbar-admins" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_team" - ] - }, - { - "index_key": "django-enum", - "schema_version": 0, - "attributes": { - "create_default_maintainer": false, - "description": "Admin team for the django-enum repository", - "etag": "W/\"54df55825e4db3c96d95e41e8d146477bd05bb7cc0cb22d39f8967099ccf46d5\"", - "id": "12828751", - "ldap_dn": "", - "members_count": 1, - "name": "django-enum-admins", - "node_id": "T_kwDOCaaRBM4Aw8BP", - "parent_team_id": "12828748", - "parent_team_read_id": "12828748", - "parent_team_read_slug": "django-enum", - "privacy": "closed", - "slug": "django-enum-admins" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_team" - ] - }, - { - "index_key": "django-fsm-2", - "schema_version": 0, - "attributes": { - "create_default_maintainer": false, - "description": "Admin team for the django-fsm-2 repository", - "etag": "W/\"49618d76308a955741eb7bec48810a41807a9363a46c67a7a1c6dffacf251fa9\"", - "id": "10870432", - "ldap_dn": "", - "members_count": 2, - "name": "django-fsm-2-admins", - "node_id": "T_kwDOCaaRBM4Apd6g", - "parent_team_id": "10870431", - "parent_team_read_id": "10870431", - "parent_team_read_slug": "django-fsm-2", - "privacy": "closed", - "slug": "django-fsm-2-admins" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_team" - ] - }, - { - "index_key": "django-prometheus", - "schema_version": 0, - "attributes": { - "create_default_maintainer": false, - "description": "Admin team for the django-prometheus repository", - "etag": "W/\"b5a7d45bad487cf990128d4a507fc441c8540573ea69c630b8219f63d7229863\"", - "id": "13333849", - "ldap_dn": "", - "members_count": 1, - "name": "django-prometheus-admins", - "node_id": "T_kwDOCaaRBM4Ay3VZ", - "parent_team_id": "13333847", - "parent_team_read_id": "13333847", - "parent_team_read_slug": "django-prometheus", - "privacy": "closed", - "slug": "django-prometheus-admins" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_team" - ] - }, - { - "index_key": "django-simple-history", - "schema_version": 0, - "attributes": { - "create_default_maintainer": false, - "description": "Admin team for the django-simple-history repository", - "etag": "W/\"d0f896c678a4d6987b45e71e4f22a83474626506d90a1e87a9e22f33353ce152\"", - "id": "13286901", - "ldap_dn": "", - "members_count": 2, - "name": "django-simple-history-admins", - "node_id": "T_kwDOCaaRBM4Ayr31", - "parent_team_id": "13286898", - "parent_team_read_id": "13286898", - "parent_team_read_slug": "django-simple-history", - "privacy": "closed", - "slug": "django-simple-history-admins" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "eyJzY2hlbWFfdmVyc2lvbiI6IjAifQ==", - "dependencies": [ - "github_team.repo_team" - ] - }, - { - "index_key": "django-tailwind-cli", - "schema_version": 0, - "attributes": { - "create_default_maintainer": false, - "description": "Admin team for the django-tailwind-cli repository", - "etag": "W/\"3a7359d38703c04abe75db6226c8fcee5a52dfec29c01970f4e7b52a6fd76d64\"", - "id": "11394000", - "ldap_dn": "", - "members_count": 1, - "name": "django-tailwind-cli-admins", - "node_id": "T_kwDOCaaRBM4ArdvQ", - "parent_team_id": "11393999", - "parent_team_read_id": "11393999", - "parent_team_read_slug": "django-tailwind-cli", - "privacy": "closed", - "slug": "django-tailwind-cli-admins" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_team" - ] - }, - { - "index_key": "django-tasks-scheduler", - "schema_version": 0, - "attributes": { - "create_default_maintainer": false, - "description": "Admin team for the django-tasks-scheduler repository", - "etag": "W/\"25c7a9af7bbffa5480ce74657e9441629a48c03057e6ce16f92fd040cca89af7\"", - "id": "10707221", - "ldap_dn": "", - "members_count": 1, - "name": "django-tasks-scheduler-admins", - "node_id": "T_kwDOCaaRBM4Ao2EV", - "parent_team_id": "10707217", - "parent_team_read_id": "10707217", - "parent_team_read_slug": "django-tasks-scheduler", - "privacy": "closed", - "slug": "django-tasks-scheduler-admins" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_team" - ] - }, - { - "index_key": "django-typer", - "schema_version": 0, - "attributes": { - "create_default_maintainer": false, - "description": "Admin team for the django-typer repository", - "etag": "W/\"38726b713574cc9c3d10ad6489a3d86f4ef5e077da1e3d848ed84f9ab662c447\"", - "id": "11217214", - "ldap_dn": "", - "members_count": 2, - "name": "django-typer-admins", - "node_id": "T_kwDOCaaRBM4Aqyk-", - "parent_team_id": "11217213", - "parent_team_read_id": "11217213", - "parent_team_read_slug": "django-typer", - "privacy": "closed", - "slug": "django-typer-admins" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_team" - ] - }, - { - "index_key": "django-valkey", - "schema_version": 0, - "attributes": { - "create_default_maintainer": false, - "description": "Admin team for the django-valkey repository", - "etag": "W/\"0ad2a3fc69034104d1a2c3c337d8a35717ecad3d4b8cc1a1855bf4f8aedd0a97\"", - "id": "13334520", - "ldap_dn": "", - "members_count": 1, - "name": "django-valkey-admins", - "node_id": "T_kwDOCaaRBM4Ay3f4", - "parent_team_id": "13334519", - "parent_team_read_id": "13334519", - "parent_team_read_slug": "django-valkey", - "privacy": "closed", - "slug": "django-valkey-admins" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_team" - ] - }, - { - "index_key": "drf-excel", - "schema_version": 0, - "attributes": { - "create_default_maintainer": false, - "description": "Admin team for the drf-excel repository", - "etag": "W/\"b9d767d363ae342810d48aa7ce703de1828198c41c33695e8e8169663dd70109\"", - "id": "11341702", - "ldap_dn": "", - "members_count": 2, - "name": "drf-excel-admins", - "node_id": "T_kwDOCaaRBM4ArQ-G", - "parent_team_id": "11341700", - "parent_team_read_id": "11341700", - "parent_team_read_slug": "drf-excel", - "privacy": "closed", - "slug": "drf-excel-admins" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_team" - ] - } - ] - }, - { - "mode": "managed", - "type": "github_team", - "name": "repo_committer_team", - "provider": "provider[\"registry.terraform.io/integrations/github\"]", - "instances": [ - { - "index_key": "axe-selenium-python", - "schema_version": 0, - "attributes": { - "create_default_maintainer": false, - "description": "Committers team for the axe-selenium-python repository", - "etag": "W/\"8b372c8bd9fa0d3c35b2bbf4f9544e6a076cd41261befaccd6d05a65d6bb3e2c\"", - "id": "14236310", - "ldap_dn": "", - "members_count": 0, - "name": "axe-selenium-python-committers", - "node_id": "T_kwDOCaaRBM4A2TqW", - "parent_team_id": "14236309", - "parent_team_read_id": "14236309", - "parent_team_read_slug": "axe-selenium-python", - "privacy": "closed", - "slug": "axe-selenium-python-committers" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_team" - ] - }, - { - "index_key": "best-practices", - "schema_version": 0, - "attributes": { - "create_default_maintainer": false, - "description": "Committers team for the best-practices repository", - "etag": "W/\"5a037ab06c90e215ee037e35c16c7057b9dda74978b2280b2a04f354d284450d\"", - "id": "9757668", - "ldap_dn": "", - "members_count": 1, - "name": "best-practices-committers", - "node_id": "T_kwDOCaaRBM4AlOPk", - "parent_team_id": "9757678", - "parent_team_read_id": "9757678", - "parent_team_read_slug": "best-practices", - "privacy": "closed", - "slug": "best-practices-committers" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_team" - ] - }, - { - "index_key": "django-click", - "schema_version": 0, - "attributes": { - "create_default_maintainer": false, - "description": "Committers team for the django-click repository", - "etag": "W/\"5122202fb8043525a1a51422c2a30928018b494dee2747ffc0f32c1ff01bd811\"", - "id": "12315700", - "ldap_dn": "", - "members_count": 1, - "name": "django-click-committers", - "node_id": "T_kwDOCaaRBM4Au-w0", - "parent_team_id": "12315699", - "parent_team_read_id": "12315699", - "parent_team_read_slug": "django-click", - "privacy": "closed", - "slug": "django-click-committers" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_team" - ] - }, - { - "index_key": "django-cookie-consent", - "schema_version": 0, - "attributes": { - "create_default_maintainer": false, - "description": "Committers team for the django-cookie-consent repository", - "etag": "W/\"7cba0ca6c519109cf86147b9273499b90ff89ff3882725a27bbc6f02d5ea9545\"", - "id": "13287526", - "ldap_dn": "", - "members_count": 1, - "name": "django-cookie-consent-committers", - "node_id": "T_kwDOCaaRBM4AysBm", - "parent_team_id": "13287524", - "parent_team_read_id": "13287524", - "parent_team_read_slug": "django-cookie-consent", - "privacy": "closed", - "slug": "django-cookie-consent-committers" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_team" - ] - }, - { - "index_key": "django-debug-toolbar", - "schema_version": 0, - "attributes": { - "create_default_maintainer": false, - "description": "Committers team for the django-debug-toolbar repository", - "etag": "W/\"e3ef04436477b76b504866b3ce4732cebd6dfae0e04127cb853d28af493d9801\"", - "id": "11354340", - "ldap_dn": "", - "members_count": 2, - "name": "django-debug-toolbar-committers", - "node_id": "T_kwDOCaaRBM4ArUDk", - "parent_team_id": "11354339", - "parent_team_read_id": "11354339", - "parent_team_read_slug": "django-debug-toolbar", - "privacy": "closed", - "slug": "django-debug-toolbar-committers" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_team" - ] - }, - { - "index_key": "django-enum", - "schema_version": 0, - "attributes": { - "create_default_maintainer": false, - "description": "Committers team for the django-enum repository", - "etag": "W/\"131548eec956790a3e673602a5fa78731199753a2e5d62260b9fb400d874e28b\"", - "id": "12828750", - "ldap_dn": "", - "members_count": 0, - "name": "django-enum-committers", - "node_id": "T_kwDOCaaRBM4Aw8BO", - "parent_team_id": "12828748", - "parent_team_read_id": "12828748", - "parent_team_read_slug": "django-enum", - "privacy": "closed", - "slug": "django-enum-committers" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_team" - ] - }, - { - "index_key": "django-fsm-2", - "schema_version": 0, - "attributes": { - "create_default_maintainer": false, - "description": "Committers team for the django-fsm-2 repository", - "etag": "W/\"c31a6f470294785a158a9435ace2b4eccfd0dea48631188d2d981b0db4b34923\"", - "id": "10870433", - "ldap_dn": "", - "members_count": 0, - "name": "django-fsm-2-committers", - "node_id": "T_kwDOCaaRBM4Apd6h", - "parent_team_id": "10870431", - "parent_team_read_id": "10870431", - "parent_team_read_slug": "django-fsm-2", - "privacy": "closed", - "slug": "django-fsm-2-committers" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_team" - ] - }, - { - "index_key": "django-prometheus", - "schema_version": 0, - "attributes": { - "create_default_maintainer": false, - "description": "Committers team for the django-prometheus repository", - "etag": "W/\"14d03c00525d3340e0dc548cd4d2642ef617db43b1dfad8466ca692a71c86bff\"", - "id": "13333848", - "ldap_dn": "", - "members_count": 0, - "name": "django-prometheus-committers", - "node_id": "T_kwDOCaaRBM4Ay3VY", - "parent_team_id": "13333847", - "parent_team_read_id": "13333847", - "parent_team_read_slug": "django-prometheus", - "privacy": "closed", - "slug": "django-prometheus-committers" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_team" - ] - }, - { - "index_key": "django-simple-history", - "schema_version": 0, - "attributes": { - "create_default_maintainer": false, - "description": "Committers team for the django-simple-history repository", - "etag": "W/\"f0238525e1f06627cd74f11233207922c880fbad29d1015bbb903e9b5260e1f5\"", - "id": "13286900", - "ldap_dn": "", - "members_count": 0, - "name": "django-simple-history-committers", - "node_id": "T_kwDOCaaRBM4Ayr30", - "parent_team_id": "13286898", - "parent_team_read_id": "13286898", - "parent_team_read_slug": "django-simple-history", - "privacy": "closed", - "slug": "django-simple-history-committers" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "eyJzY2hlbWFfdmVyc2lvbiI6IjAifQ==", - "dependencies": [ - "github_team.repo_team" - ] - }, - { - "index_key": "django-tailwind-cli", - "schema_version": 0, - "attributes": { - "create_default_maintainer": false, - "description": "Committers team for the django-tailwind-cli repository", - "etag": "W/\"1f13248bbf957fc4b5bb70a5b1d980e3ba9f19520dd5935b0eb412b07735ffaf\"", - "id": "11394001", - "ldap_dn": "", - "members_count": 0, - "name": "django-tailwind-cli-committers", - "node_id": "T_kwDOCaaRBM4ArdvR", - "parent_team_id": "11393999", - "parent_team_read_id": "11393999", - "parent_team_read_slug": "django-tailwind-cli", - "privacy": "closed", - "slug": "django-tailwind-cli-committers" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_team" - ] - }, - { - "index_key": "django-tasks-scheduler", - "schema_version": 0, - "attributes": { - "create_default_maintainer": false, - "description": "Committers team for the django-tasks-scheduler repository", - "etag": "W/\"8f038ac96223cefd39be48636c82fab559c866510e8de7fd2533d7de79feedbe\"", - "id": "10707220", - "ldap_dn": "", - "members_count": 2, - "name": "django-tasks-scheduler-committers", - "node_id": "T_kwDOCaaRBM4Ao2EU", - "parent_team_id": "10707217", - "parent_team_read_id": "10707217", - "parent_team_read_slug": "django-tasks-scheduler", - "privacy": "closed", - "slug": "django-tasks-scheduler-committers" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_team" - ] - }, - { - "index_key": "django-typer", - "schema_version": 0, - "attributes": { - "create_default_maintainer": false, - "description": "Committers team for the django-typer repository", - "etag": "W/\"241c8fa9d2ab7c309003c093b062bfb1c039b518d768355ee57c80552a131b84\"", - "id": "11217215", - "ldap_dn": "", - "members_count": 0, - "name": "django-typer-committers", - "node_id": "T_kwDOCaaRBM4Aqyk_", - "parent_team_id": "11217213", - "parent_team_read_id": "11217213", - "parent_team_read_slug": "django-typer", - "privacy": "closed", - "slug": "django-typer-committers" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_team" - ] - }, - { - "index_key": "django-valkey", - "schema_version": 0, - "attributes": { - "create_default_maintainer": false, - "description": "Committers team for the django-valkey repository", - "etag": "W/\"3ae8d8bf12a31aaf3e6446f714c46e6a87651cd286038937c2fff23ffb416046\"", - "id": "13334521", - "ldap_dn": "", - "members_count": 0, - "name": "django-valkey-committers", - "node_id": "T_kwDOCaaRBM4Ay3f5", - "parent_team_id": "13334519", - "parent_team_read_id": "13334519", - "parent_team_read_slug": "django-valkey", - "privacy": "closed", - "slug": "django-valkey-committers" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_team" - ] - }, - { - "index_key": "drf-excel", - "schema_version": 0, - "attributes": { - "create_default_maintainer": false, - "description": "Committers team for the drf-excel repository", - "etag": "W/\"9ea6247aba2e630db5a8458f35acac215817072a526d4d433364ab85a3c072ad\"", - "id": "11341703", - "ldap_dn": "", - "members_count": 1, - "name": "drf-excel-committers", - "node_id": "T_kwDOCaaRBM4ArQ-H", - "parent_team_id": "11341700", - "parent_team_read_id": "11341700", - "parent_team_read_slug": "drf-excel", - "privacy": "closed", - "slug": "drf-excel-committers" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_team" - ] - } - ] - }, - { - "mode": "managed", - "type": "github_team", - "name": "repo_team", - "provider": "provider[\"registry.terraform.io/integrations/github\"]", - "instances": [ - { - "index_key": "axe-selenium-python", - "schema_version": 0, - "attributes": { - "create_default_maintainer": false, - "description": "Main team for the axe-selenium-python repository", - "etag": "W/\"aa16d5b523c9b1d07c0bfc2feceec1e36ed1a9f01074360afe4b67f9eb76fa38\"", - "id": "14236309", - "ldap_dn": "", - "members_count": 2, - "name": "axe-selenium-python", - "node_id": "T_kwDOCaaRBM4A2TqV", - "parent_team_id": "", - "parent_team_read_id": "", - "parent_team_read_slug": "", - "privacy": "closed", - "slug": "axe-selenium-python" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==" - }, - { - "index_key": "best-practices", - "schema_version": 0, - "attributes": { - "create_default_maintainer": false, - "description": "Main team for the best-practices repository", - "etag": "W/\"fea8ddf124465ec6048bc415c62fa198fa31e67880de00b963cdd121e2058116\"", - "id": "9757678", - "ldap_dn": "", - "members_count": 6, - "name": "best-practices", - "node_id": "T_kwDOCaaRBM4AlOPu", - "parent_team_id": "", - "parent_team_read_id": "", - "parent_team_read_slug": "", - "privacy": "closed", - "slug": "best-practices" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==" - }, - { - "index_key": "django-click", - "schema_version": 0, - "attributes": { - "create_default_maintainer": false, - "description": "Main team for the django-click repository", - "etag": "W/\"a943ab0dec3f3aaf6383ed16ed28b3fdac5ae57197c354a30ae64bac21d84fa9\"", - "id": "12315699", - "ldap_dn": "", - "members_count": 3, - "name": "django-click", - "node_id": "T_kwDOCaaRBM4Au-wz", - "parent_team_id": "", - "parent_team_read_id": "", - "parent_team_read_slug": "", - "privacy": "closed", - "slug": "django-click" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==" - }, - { - "index_key": "django-cookie-consent", - "schema_version": 0, - "attributes": { - "create_default_maintainer": false, - "description": "Main team for the django-cookie-consent repository", - "etag": "W/\"3a3556a6142536571cf3bf33701fffbcefa21f713bb077d22706fbccc83fe4d6\"", - "id": "13287524", - "ldap_dn": "", - "members_count": 2, - "name": "django-cookie-consent", - "node_id": "T_kwDOCaaRBM4AysBk", - "parent_team_id": "", - "parent_team_read_id": "", - "parent_team_read_slug": "", - "privacy": "closed", - "slug": "django-cookie-consent" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==" - }, - { - "index_key": "django-debug-toolbar", - "schema_version": 0, - "attributes": { - "create_default_maintainer": false, - "description": "Main team for the django-debug-toolbar repository", - "etag": "W/\"557a630ecb0563f23b476db8a7545f31f67198ecb9cfbfbab55e81c2d310897b\"", - "id": "11354339", - "ldap_dn": "", - "members_count": 14, - "name": "django-debug-toolbar", - "node_id": "T_kwDOCaaRBM4ArUDj", - "parent_team_id": "", - "parent_team_read_id": "", - "parent_team_read_slug": "", - "privacy": "closed", - "slug": "django-debug-toolbar" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==" - }, - { - "index_key": "django-enum", - "schema_version": 0, - "attributes": { - "create_default_maintainer": false, - "description": "Main team for the django-enum repository", - "etag": "W/\"53d755d0ebad8d8ccafdedcce6059a21a923b990b942864ffc0a25e7a7cf945b\"", - "id": "12828748", - "ldap_dn": "", - "members_count": 1, - "name": "django-enum", - "node_id": "T_kwDOCaaRBM4Aw8BM", - "parent_team_id": "", - "parent_team_read_id": "", - "parent_team_read_slug": "", - "privacy": "closed", - "slug": "django-enum" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==" - }, - { - "index_key": "django-fsm-2", - "schema_version": 0, - "attributes": { - "create_default_maintainer": false, - "description": "Main team for the django-fsm-2 repository", - "etag": "W/\"52364710686a5ee16685e9cf4886b5f3e492fd7f2129f60f035a571518510556\"", - "id": "10870431", - "ldap_dn": "", - "members_count": 3, - "name": "django-fsm-2", - "node_id": "T_kwDOCaaRBM4Apd6f", - "parent_team_id": "", - "parent_team_read_id": "", - "parent_team_read_slug": "", - "privacy": "closed", - "slug": "django-fsm-2" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==" - }, - { - "index_key": "django-prometheus", - "schema_version": 0, - "attributes": { - "create_default_maintainer": false, - "description": "Main team for the django-prometheus repository", - "etag": "W/\"96e3f9996ed4e65290bf1587e5078af21d71aca499ec15fc9162c6aaab93260c\"", - "id": "13333847", - "ldap_dn": "", - "members_count": 1, - "name": "django-prometheus", - "node_id": "T_kwDOCaaRBM4Ay3VX", - "parent_team_id": "", - "parent_team_read_id": "", - "parent_team_read_slug": "", - "privacy": "closed", - "slug": "django-prometheus" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==" - }, - { - "index_key": "django-simple-history", - "schema_version": 0, - "attributes": { - "create_default_maintainer": false, - "description": "Main team for the django-simple-history repository", - "etag": "W/\"7e0303bced30a4ffc52a3a30f4a20b3e51d04c8ceed1ffd5996cbc0dd2001265\"", - "id": "13286898", - "ldap_dn": "", - "members_count": 2, - "name": "django-simple-history", - "node_id": "T_kwDOCaaRBM4Ayr3y", - "parent_team_id": "", - "parent_team_read_id": "", - "parent_team_read_slug": "", - "privacy": "closed", - "slug": "django-simple-history" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "eyJzY2hlbWFfdmVyc2lvbiI6IjAifQ==" - }, - { - "index_key": "django-tailwind-cli", - "schema_version": 0, - "attributes": { - "create_default_maintainer": false, - "description": "Main team for the django-tailwind-cli repository", - "etag": "W/\"b4e8eac611fab4a37231285a81498e27227a4857e32533d4e443c586af3ebb5e\"", - "id": "11393999", - "ldap_dn": "", - "members_count": 1, - "name": "django-tailwind-cli", - "node_id": "T_kwDOCaaRBM4ArdvP", - "parent_team_id": "", - "parent_team_read_id": "", - "parent_team_read_slug": "", - "privacy": "closed", - "slug": "django-tailwind-cli" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==" - }, - { - "index_key": "django-tasks-scheduler", - "schema_version": 0, - "attributes": { - "create_default_maintainer": false, - "description": "Main team for the django-tasks-scheduler repository", - "etag": "W/\"3470f04d33eb592033b39ac5f023c2c3c28ab5bd6186cb641b8c0b4143e7585e\"", - "id": "10707217", - "ldap_dn": "", - "members_count": 3, - "name": "django-tasks-scheduler", - "node_id": "T_kwDOCaaRBM4Ao2ER", - "parent_team_id": "", - "parent_team_read_id": "", - "parent_team_read_slug": "", - "privacy": "closed", - "slug": "django-tasks-scheduler" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==" - }, - { - "index_key": "django-typer", - "schema_version": 0, - "attributes": { - "create_default_maintainer": false, - "description": "Main team for the django-typer repository", - "etag": "W/\"b7760c610a071b6a0af0bf0765c69b4fa866922f62afe82a5509fe9ef957ec07\"", - "id": "11217213", - "ldap_dn": "", - "members_count": 2, - "name": "django-typer", - "node_id": "T_kwDOCaaRBM4Aqyk9", - "parent_team_id": "", - "parent_team_read_id": "", - "parent_team_read_slug": "", - "privacy": "closed", - "slug": "django-typer" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==" - }, - { - "index_key": "django-valkey", - "schema_version": 0, - "attributes": { - "create_default_maintainer": false, - "description": "Main team for the django-valkey repository", - "etag": "W/\"ca83497b3e3acbae2b0c6dd35f5efb9139f8a20e609324b7e6077014ee9306b5\"", - "id": "13334519", - "ldap_dn": "", - "members_count": 1, - "name": "django-valkey", - "node_id": "T_kwDOCaaRBM4Ay3f3", - "parent_team_id": "", - "parent_team_read_id": "", - "parent_team_read_slug": "", - "privacy": "closed", - "slug": "django-valkey" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==" - }, - { - "index_key": "drf-excel", - "schema_version": 0, - "attributes": { - "create_default_maintainer": false, - "description": "Main team for the drf-excel repository", - "etag": "W/\"f7f780c680b60219a01e34077d7a34050c6eb61d6f62456f2dc573246f722049\"", - "id": "11341700", - "ldap_dn": "", - "members_count": 4, - "name": "drf-excel", - "node_id": "T_kwDOCaaRBM4ArQ-E", - "parent_team_id": "", - "parent_team_read_id": "", - "parent_team_read_slug": "", - "privacy": "closed", - "slug": "drf-excel" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==" - } - ] - }, - { - "mode": "managed", - "type": "github_team_members", - "name": "org_designers_team_members", - "provider": "provider[\"registry.terraform.io/integrations/github\"]", - "instances": [ - { - "schema_version": 0, - "attributes": { - "id": "14084892", - "members": [ - { - "role": "member", - "username": "Shrikantgiri25" - }, - { - "role": "member", - "username": "Violette-Allotey" - }, - { - "role": "member", - "username": "Zakui" - }, - { - "role": "member", - "username": "akshayvinchurkar" - }, - { - "role": "member", - "username": "federicobond" - }, - { - "role": "member", - "username": "jmgutu" - }, - { - "role": "member", - "username": "johnatanmoran" - }, - { - "role": "member", - "username": "mzemlickis" - }, - { - "role": "member", - "username": "okotdaniel" - }, - { - "role": "member", - "username": "p-r-a-v-i-n" - }, - { - "role": "member", - "username": "vinlawz" - }, - { - "role": "member", - "username": "viscofuse" - } - ], - "team_id": "14084892" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.org_designers_team" - ] - } - ] - }, - { - "mode": "managed", - "type": "github_team_members", - "name": "org_team_members", - "provider": "provider[\"registry.terraform.io/integrations/github\"]", - "instances": [ - { - "index_key": "Admins", - "schema_version": 0, - "attributes": { - "id": "9763562", - "members": [ - { - "role": "maintainer", - "username": "Stormheg" - }, - { - "role": "maintainer", - "username": "cunla" - }, - { - "role": "maintainer", - "username": "ryancheley" - }, - { - "role": "maintainer", - "username": "tim-schilling" - }, - { - "role": "maintainer", - "username": "williln" - } - ], - "team_id": "9763562" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "eyJzY2hlbWFfdmVyc2lvbiI6IjAifQ==", - "dependencies": [ - "github_team.org_teams" - ] - } - ] - }, - { - "mode": "managed", - "type": "github_team_members", - "name": "repo_admin_members", - "provider": "provider[\"registry.terraform.io/integrations/github\"]", - "instances": [ - { - "index_key": "axe-selenium-python", - "schema_version": 0, - "attributes": { - "id": "axe-selenium-python-admins", - "members": [ - { - "role": "member", - "username": "knyghty" - }, - { - "role": "member", - "username": "thibaudcolas" - } - ], - "team_id": "axe-selenium-python-admins" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_admin_team", - "github_team.repo_team" - ] - }, - { - "index_key": "best-practices", - "schema_version": 0, - "attributes": { - "id": "best-practices-admins", - "members": [ - { - "role": "maintainer", - "username": "Stormheg" - }, - { - "role": "maintainer", - "username": "cunla" - }, - { - "role": "maintainer", - "username": "ryancheley" - }, - { - "role": "maintainer", - "username": "tim-schilling" - }, - { - "role": "maintainer", - "username": "williln" - } - ], - "team_id": "best-practices-admins" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_admin_team", - "github_team.repo_team" - ] - }, - { - "index_key": "django-click", - "schema_version": 0, - "attributes": { - "id": "django-click-admins", - "members": [ - { - "role": "member", - "username": "FlipperPA" - }, - { - "role": "member", - "username": "GaretJax" - } - ], - "team_id": "django-click-admins" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_admin_team", - "github_team.repo_team" - ] - }, - { - "index_key": "django-cookie-consent", - "schema_version": 0, - "attributes": { - "id": "django-cookie-consent-admins", - "members": [ - { - "role": "member", - "username": "sergei-maertens" - } - ], - "team_id": "django-cookie-consent-admins" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_admin_team", - "github_team.repo_team" - ] - }, - { - "index_key": "django-debug-toolbar", - "schema_version": 0, - "attributes": { - "id": "django-debug-toolbar-admins", - "members": [ - { - "role": "maintainer", - "username": "tim-schilling" - }, - { - "role": "member", - "username": "matthiask" - } - ], - "team_id": "django-debug-toolbar-admins" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_admin_team", - "github_team.repo_team" - ] - }, - { - "index_key": "django-enum", - "schema_version": 0, - "attributes": { - "id": "django-enum-admins", - "members": [ - { - "role": "member", - "username": "bckohan" - } - ], - "team_id": "django-enum-admins" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_admin_team", - "github_team.repo_team" - ] - }, - { - "index_key": "django-fsm-2", - "schema_version": 0, - "attributes": { - "id": "django-fsm-2-admins", - "members": [ - { - "role": "member", - "username": "Natim" - }, - { - "role": "member", - "username": "pfouque" - } - ], - "team_id": "django-fsm-2-admins" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_admin_team", - "github_team.repo_team" - ] - }, - { - "index_key": "django-prometheus", - "schema_version": 0, - "attributes": { - "id": "django-prometheus-admins", - "members": [ - { - "role": "member", - "username": "asherf" - } - ], - "team_id": "django-prometheus-admins" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_admin_team", - "github_team.repo_team" - ] - }, - { - "index_key": "django-simple-history", - "schema_version": 0, - "attributes": { - "id": "django-simple-history-admins", - "members": [ - { - "role": "maintainer", - "username": "tim-schilling" - }, - { - "role": "member", - "username": "ddabble" - } - ], - "team_id": "django-simple-history-admins" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_admin_team", - "github_team.repo_team" - ] - }, - { - "index_key": "django-tailwind-cli", - "schema_version": 0, - "attributes": { - "id": "django-tailwind-cli-admins", - "members": [ - { - "role": "member", - "username": "oliverandrich" - } - ], - "team_id": "django-tailwind-cli-admins" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_admin_team", - "github_team.repo_team" - ] - }, - { - "index_key": "django-tasks-scheduler", - "schema_version": 0, - "attributes": { - "id": "django-tasks-scheduler-admins", - "members": [ - { - "role": "maintainer", - "username": "cunla" - } - ], - "team_id": "django-tasks-scheduler-admins" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_admin_team", - "github_team.repo_team" - ] - }, - { - "index_key": "django-typer", - "schema_version": 0, - "attributes": { - "id": "django-typer-admins", - "members": [ - { - "role": "member", - "username": "bckohan" - }, - { - "role": "member", - "username": "oliverandrich" - } - ], - "team_id": "django-typer-admins" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_admin_team", - "github_team.repo_team" - ] - }, - { - "index_key": "django-valkey", - "schema_version": 0, - "attributes": { - "id": "django-valkey-admins", - "members": [ - { - "role": "member", - "username": "amirreza8002" - } - ], - "team_id": "django-valkey-admins" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_admin_team", - "github_team.repo_team" - ] - }, - { - "index_key": "drf-excel", - "schema_version": 0, - "attributes": { - "id": "drf-excel-admins", - "members": [ - { - "role": "member", - "username": "FlipperPA" - }, - { - "role": "member", - "username": "browniebroke" - } - ], - "team_id": "drf-excel-admins" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_admin_team", - "github_team.repo_team" - ] - } - ] - }, - { - "mode": "managed", - "type": "github_team_members", - "name": "repo_committer_team_members", - "provider": "provider[\"registry.terraform.io/integrations/github\"]", - "instances": [ - { - "index_key": "best-practices", - "schema_version": 0, - "attributes": { - "id": "best-practices-committers", - "members": [ - { - "role": "member", - "username": "priyapahwa" - } - ], - "team_id": "best-practices-committers" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_committer_team", - "github_team.repo_team" - ] - }, - { - "index_key": "django-click", - "schema_version": 0, - "attributes": { - "id": "django-click-committers", - "members": [ - { - "role": "member", - "username": "ulgens" - } - ], - "team_id": "django-click-committers" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_committer_team", - "github_team.repo_team" - ] - }, - { - "index_key": "django-cookie-consent", - "schema_version": 0, - "attributes": { - "id": "django-cookie-consent-committers", - "members": [ - { - "role": "member", - "username": "MrCordeiro" - } - ], - "team_id": "django-cookie-consent-committers" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_committer_team", - "github_team.repo_team" - ] - }, - { - "index_key": "django-debug-toolbar", - "schema_version": 0, - "attributes": { - "id": "django-debug-toolbar-committers", - "members": [ - { - "role": "member", - "username": "elineda" - }, - { - "role": "member", - "username": "salty-ivy" - } - ], - "team_id": "django-debug-toolbar-committers" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_committer_team", - "github_team.repo_team" - ] - }, - { - "index_key": "django-tasks-scheduler", - "schema_version": 0, - "attributes": { - "id": "django-tasks-scheduler-committers", - "members": [ - { - "role": "member", - "username": "DhavalGojiya" - }, - { - "role": "member", - "username": "cclauss" - } - ], - "team_id": "django-tasks-scheduler-committers" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_committer_team", - "github_team.repo_team" - ] - }, - { - "index_key": "drf-excel", - "schema_version": 0, - "attributes": { - "id": "drf-excel-committers", - "members": [ - { - "role": "member", - "username": "rptmat57" - } - ], - "team_id": "drf-excel-committers" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_committer_team", - "github_team.repo_team" - ] - } - ] - }, - { - "mode": "managed", - "type": "github_team_members", - "name": "repo_team_members", - "provider": "provider[\"registry.terraform.io/integrations/github\"]", - "instances": [ - { - "index_key": "axe-selenium-python", - "schema_version": 0, - "attributes": { - "id": "axe-selenium-python", - "members": [ - { - "role": "member", - "username": "knyghty" - }, - { - "role": "member", - "username": "thibaudcolas" - } - ], - "team_id": "axe-selenium-python" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_team" - ] - }, - { - "index_key": "best-practices", - "schema_version": 0, - "attributes": { - "id": "best-practices", - "members": [ - { - "role": "maintainer", - "username": "Stormheg" - }, - { - "role": "maintainer", - "username": "cunla" - }, - { - "role": "maintainer", - "username": "ryancheley" - }, - { - "role": "maintainer", - "username": "tim-schilling" - }, - { - "role": "maintainer", - "username": "williln" - }, - { - "role": "member", - "username": "priyapahwa" - } - ], - "team_id": "best-practices" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_team" - ] - }, - { - "index_key": "django-click", - "schema_version": 0, - "attributes": { - "id": "django-click", - "members": [ - { - "role": "member", - "username": "FlipperPA" - }, - { - "role": "member", - "username": "GaretJax" - }, - { - "role": "member", - "username": "ulgens" - } - ], - "team_id": "django-click" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_team" - ] - }, - { - "index_key": "django-cookie-consent", - "schema_version": 0, - "attributes": { - "id": "django-cookie-consent", - "members": [ - { - "role": "member", - "username": "MrCordeiro" - }, - { - "role": "member", - "username": "sergei-maertens" - } - ], - "team_id": "django-cookie-consent" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_team" - ] - }, - { - "index_key": "django-debug-toolbar", - "schema_version": 0, - "attributes": { - "id": "django-debug-toolbar", - "members": [ - { - "role": "maintainer", - "username": "tim-schilling" - }, - { - "role": "member", - "username": "Chiemezuo" - }, - { - "role": "member", - "username": "JohananOppongAmoateng" - }, - { - "role": "member", - "username": "VeldaKiara" - }, - { - "role": "member", - "username": "Zakui" - }, - { - "role": "member", - "username": "andoriyaprashant" - }, - { - "role": "member", - "username": "blingblin-g" - }, - { - "role": "member", - "username": "devatbosch" - }, - { - "role": "member", - "username": "dr-rompecabezas" - }, - { - "role": "member", - "username": "elineda" - }, - { - "role": "member", - "username": "federicobond" - }, - { - "role": "member", - "username": "jmgutu" - }, - { - "role": "member", - "username": "matthiask" - }, - { - "role": "member", - "username": "salty-ivy" - } - ], - "team_id": "django-debug-toolbar" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_team" - ] - }, - { - "index_key": "django-enum", - "schema_version": 0, - "attributes": { - "id": "django-enum", - "members": [ - { - "role": "member", - "username": "bckohan" - } - ], - "team_id": "django-enum" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_team" - ] - }, - { - "index_key": "django-fsm-2", - "schema_version": 0, - "attributes": { - "id": "django-fsm-2", - "members": [ - { - "role": "member", - "username": "Natim" - }, - { - "role": "member", - "username": "giovannicimolin" - }, - { - "role": "member", - "username": "pfouque" - } - ], - "team_id": "django-fsm-2" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_team" - ] - }, - { - "index_key": "django-prometheus", - "schema_version": 0, - "attributes": { - "id": "django-prometheus", - "members": [ - { - "role": "member", - "username": "asherf" - } - ], - "team_id": "django-prometheus" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_team" - ] - }, - { - "index_key": "django-simple-history", - "schema_version": 0, - "attributes": { - "id": "django-simple-history", - "members": [ - { - "role": "maintainer", - "username": "tim-schilling" - }, - { - "role": "member", - "username": "ddabble" - } - ], - "team_id": "django-simple-history" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_team" - ] - }, - { - "index_key": "django-tailwind-cli", - "schema_version": 0, - "attributes": { - "id": "django-tailwind-cli", - "members": [ - { - "role": "member", - "username": "oliverandrich" - } - ], - "team_id": "django-tailwind-cli" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_team" - ] - }, - { - "index_key": "django-tasks-scheduler", - "schema_version": 0, - "attributes": { - "id": "django-tasks-scheduler", - "members": [ - { - "role": "maintainer", - "username": "cunla" - }, - { - "role": "member", - "username": "DhavalGojiya" - }, - { - "role": "member", - "username": "cclauss" - } - ], - "team_id": "django-tasks-scheduler" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_team" - ] - }, - { - "index_key": "django-typer", - "schema_version": 0, - "attributes": { - "id": "django-typer", - "members": [ - { - "role": "member", - "username": "bckohan" - }, - { - "role": "member", - "username": "oliverandrich" - } - ], - "team_id": "django-typer" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_team" - ] - }, - { - "index_key": "django-valkey", - "schema_version": 0, - "attributes": { - "id": "django-valkey", - "members": [ - { - "role": "member", - "username": "amirreza8002" - } - ], - "team_id": "django-valkey" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_team" - ] - }, - { - "index_key": "drf-excel", - "schema_version": 0, - "attributes": { - "id": "drf-excel", - "members": [ - { - "role": "member", - "username": "FlipperPA" - }, - { - "role": "member", - "username": "browniebroke" - }, - { - "role": "member", - "username": "justbackend" - }, - { - "role": "member", - "username": "rptmat57" - } - ], - "team_id": "drf-excel" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_team" - ] - } - ] - }, - { - "mode": "managed", - "type": "github_team_repository", - "name": "repo_admin_team_access", - "provider": "provider[\"registry.terraform.io/integrations/github\"]", - "instances": [ - { - "index_key": "axe-selenium-python", - "schema_version": 0, - "attributes": { - "etag": "W/\"60c36677839c5964797174ea5770e8b304312e4393f4f31f44307f84225888a2\"", - "id": "14236311:axe-selenium-python", - "permission": "admin", - "repository": "axe-selenium-python", - "team_id": "axe-selenium-python-admins" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_admin_team", - "github_team.repo_team" - ] - }, - { - "index_key": "best-practices", - "schema_version": 0, - "attributes": { - "etag": "W/\"e8eb42b3afacd8c4bf6067e5fdb02b1c3f6e0f59f1e8e0bafa16b8720dc0b2a3\"", - "id": "9757650:best-practices", - "permission": "admin", - "repository": "best-practices", - "team_id": "best-practices-admins" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_admin_team", - "github_team.repo_team" - ] - }, - { - "index_key": "django-click", - "schema_version": 0, - "attributes": { - "etag": "W/\"fe4b06cf576758dac79f09094e174d7af6b3f4606320da4229b9050bc43c5571\"", - "id": "12315701:django-click", - "permission": "admin", - "repository": "django-click", - "team_id": "django-click-admins" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_admin_team", - "github_team.repo_team" - ] - }, - { - "index_key": "django-cookie-consent", - "schema_version": 0, - "attributes": { - "etag": "W/\"615e6fec0a51cc159136c8d351c06a322883877b3cbfca1a8964548e77975f1f\"", - "id": "13287527:django-cookie-consent", - "permission": "admin", - "repository": "django-cookie-consent", - "team_id": "django-cookie-consent-admins" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_admin_team", - "github_team.repo_team" - ] - }, - { - "index_key": "django-debug-toolbar", - "schema_version": 0, - "attributes": { - "etag": "W/\"2d6717b127804a30225264bca48909e2eaaf1ffb0751924d4c052c6b1d459d1c\"", - "id": "11354341:django-debug-toolbar", - "permission": "admin", - "repository": "django-debug-toolbar", - "team_id": "django-debug-toolbar-admins" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_admin_team", - "github_team.repo_team" - ] - }, - { - "index_key": "django-enum", - "schema_version": 0, - "attributes": { - "etag": "W/\"eb67fbfe762315fcc56fc611473293bd4b7914be5aa2a062185d50bf98a1272d\"", - "id": "12828751:django-enum", - "permission": "admin", - "repository": "django-enum", - "team_id": "django-enum-admins" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_admin_team", - "github_team.repo_team" - ] - }, - { - "index_key": "django-fsm-2", - "schema_version": 0, - "attributes": { - "etag": "W/\"a33b6638e44c963412bf8e945653a29bff5908994215d6998eb6cb344c05c4c6\"", - "id": "10870432:django-fsm-2", - "permission": "admin", - "repository": "django-fsm-2", - "team_id": "django-fsm-2-admins" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_admin_team", - "github_team.repo_team" - ] - }, - { - "index_key": "django-prometheus", - "schema_version": 0, - "attributes": { - "etag": "W/\"f817343e7b9ae1bc7a82d8ceeaf87d6c7b6f3d144ba54640acd8278804c7ea3e\"", - "id": "13333849:django-prometheus", - "permission": "admin", - "repository": "django-prometheus", - "team_id": "django-prometheus-admins" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_admin_team", - "github_team.repo_team" - ] - }, - { - "index_key": "django-simple-history", - "schema_version": 0, - "attributes": { - "etag": "W/\"b86c23a0f069e33083ddc64a6b2dc5a8e4b5c7d08d478740c0569ef9dd380aaa\"", - "id": "13286901:django-simple-history", - "permission": "admin", - "repository": "django-simple-history", - "team_id": "django-simple-history-admins" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_admin_team", - "github_team.repo_team" - ] - }, - { - "index_key": "django-tailwind-cli", - "schema_version": 0, - "attributes": { - "etag": "W/\"fed639b4a2a5f6bcaad8979a9a7b807ceb09a17461deb8bd69d644d8c0d8a2ea\"", - "id": "11394000:django-tailwind-cli", - "permission": "admin", - "repository": "django-tailwind-cli", - "team_id": "django-tailwind-cli-admins" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_admin_team", - "github_team.repo_team" - ] - }, - { - "index_key": "django-tasks-scheduler", - "schema_version": 0, - "attributes": { - "etag": "W/\"90b127a31fba83768dd71030416c2bb12fa39717ffcdf2de3305939f225c0b83\"", - "id": "10707221:django-tasks-scheduler", - "permission": "admin", - "repository": "django-tasks-scheduler", - "team_id": "django-tasks-scheduler-admins" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_admin_team", - "github_team.repo_team" - ] - }, - { - "index_key": "django-typer", - "schema_version": 0, - "attributes": { - "etag": "W/\"20f31092a4b9cbaa12074a85031bc2b502b92f6eedc7e6a963535a5c1d431a77\"", - "id": "11217214:django-typer", - "permission": "admin", - "repository": "django-typer", - "team_id": "django-typer-admins" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_admin_team", - "github_team.repo_team" - ] - }, - { - "index_key": "django-valkey", - "schema_version": 0, - "attributes": { - "etag": "W/\"215142dcf3549cd641496584f684dbc4b1c6c29fe2d6914b1bd21d826f6d794c\"", - "id": "13334520:django-valkey", - "permission": "admin", - "repository": "django-valkey", - "team_id": "django-valkey-admins" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_admin_team", - "github_team.repo_team" - ] - }, - { - "index_key": "drf-excel", - "schema_version": 0, - "attributes": { - "etag": "W/\"05a8a920f012097870fb8a298e0e56d107341f1d45645d9673a74ef8030c07e3\"", - "id": "11341702:drf-excel", - "permission": "admin", - "repository": "drf-excel", - "team_id": "drf-excel-admins" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_admin_team", - "github_team.repo_team" - ] - } - ] - }, - { - "mode": "managed", - "type": "github_team_repository", - "name": "repo_committer_team_access", - "provider": "provider[\"registry.terraform.io/integrations/github\"]", - "instances": [ - { - "index_key": "axe-selenium-python", - "schema_version": 0, - "attributes": { - "etag": "W/\"0d368165178af04042c8e4a553f3e22996be62ceca4c1c6b82f8435576127e03\"", - "id": "14236310:axe-selenium-python", - "permission": "maintain", - "repository": "axe-selenium-python", - "team_id": "axe-selenium-python-committers" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_committer_team", - "github_team.repo_team" - ] - }, - { - "index_key": "best-practices", - "schema_version": 0, - "attributes": { - "etag": "W/\"dafb7c0ad512bc98e7a86a32a40e1b74a352e80b9ec03fe5d6ee1a2ffb3f7082\"", - "id": "9757668:best-practices", - "permission": "maintain", - "repository": "best-practices", - "team_id": "best-practices-committers" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_committer_team", - "github_team.repo_team" - ] - }, - { - "index_key": "django-click", - "schema_version": 0, - "attributes": { - "etag": "W/\"f19c1f14fde70f95e509c62de5536688245bde50a5a96ecc457c9be8d3bdcdaa\"", - "id": "12315700:django-click", - "permission": "maintain", - "repository": "django-click", - "team_id": "django-click-committers" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_committer_team", - "github_team.repo_team" - ] - }, - { - "index_key": "django-cookie-consent", - "schema_version": 0, - "attributes": { - "etag": "W/\"34d878c2bddf3341ff42985dca487e0e8d205940755ad5ef9fb4f1f3de3c9d47\"", - "id": "13287526:django-cookie-consent", - "permission": "maintain", - "repository": "django-cookie-consent", - "team_id": "django-cookie-consent-committers" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_committer_team", - "github_team.repo_team" - ] - }, - { - "index_key": "django-debug-toolbar", - "schema_version": 0, - "attributes": { - "etag": "W/\"e5244e1917245c13a27aaee1ab731aee3365fdb5d67fd740a99945bc2e7cc10c\"", - "id": "11354340:django-debug-toolbar", - "permission": "maintain", - "repository": "django-debug-toolbar", - "team_id": "django-debug-toolbar-committers" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_committer_team", - "github_team.repo_team" - ] - }, - { - "index_key": "django-enum", - "schema_version": 0, - "attributes": { - "etag": "W/\"044026344f6d81c96bc9743495c0c0c5ddf2b7af7f913a2b638f26c7e87afd45\"", - "id": "12828750:django-enum", - "permission": "maintain", - "repository": "django-enum", - "team_id": "django-enum-committers" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_committer_team", - "github_team.repo_team" - ] - }, - { - "index_key": "django-fsm-2", - "schema_version": 0, - "attributes": { - "etag": "W/\"5e3ffc73a654c677bd927fced5cbef1dbf6813c619e46c965ce86f0d61876961\"", - "id": "10870433:django-fsm-2", - "permission": "maintain", - "repository": "django-fsm-2", - "team_id": "django-fsm-2-committers" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_committer_team", - "github_team.repo_team" - ] - }, - { - "index_key": "django-prometheus", - "schema_version": 0, - "attributes": { - "etag": "W/\"06c60919e59122a2e480345baa72b54bbe8efa5961e0011b01655a35a59b7aea\"", - "id": "13333848:django-prometheus", - "permission": "maintain", - "repository": "django-prometheus", - "team_id": "django-prometheus-committers" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_committer_team", - "github_team.repo_team" - ] - }, - { - "index_key": "django-simple-history", - "schema_version": 0, - "attributes": { - "etag": "W/\"a0adcfd3e4408c29b2c774c4566d143e6a3ee3e8aa12b72cbc2aa36236afc6fa\"", - "id": "13286900:django-simple-history", - "permission": "maintain", - "repository": "django-simple-history", - "team_id": "django-simple-history-committers" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_committer_team", - "github_team.repo_team" - ] - }, - { - "index_key": "django-tailwind-cli", - "schema_version": 0, - "attributes": { - "etag": "W/\"78566ba3d97c6a1761b6950123dd5c77ea4f82f17cdbc024d29ba604f40005b9\"", - "id": "11394001:django-tailwind-cli", - "permission": "maintain", - "repository": "django-tailwind-cli", - "team_id": "django-tailwind-cli-committers" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_committer_team", - "github_team.repo_team" - ] - }, - { - "index_key": "django-tasks-scheduler", - "schema_version": 0, - "attributes": { - "etag": "W/\"aaf2bc97c47cb2f63c654e887697dda267010606410bcf8b3beccdc2bd755d5e\"", - "id": "10707220:django-tasks-scheduler", - "permission": "maintain", - "repository": "django-tasks-scheduler", - "team_id": "django-tasks-scheduler-committers" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_committer_team", - "github_team.repo_team" - ] - }, - { - "index_key": "django-typer", - "schema_version": 0, - "attributes": { - "etag": "W/\"77988d9faeeb8a042bf07d1159b9764dfb2ef46f91439e9696f454e7360f8d50\"", - "id": "11217215:django-typer", - "permission": "maintain", - "repository": "django-typer", - "team_id": "django-typer-committers" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_committer_team", - "github_team.repo_team" - ] - }, - { - "index_key": "django-valkey", - "schema_version": 0, - "attributes": { - "etag": "W/\"7a096004cb82de6e4536f5a99369a46d7764e17878ae1e3037ea8b5104f8a624\"", - "id": "13334521:django-valkey", - "permission": "maintain", - "repository": "django-valkey", - "team_id": "django-valkey-committers" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_committer_team", - "github_team.repo_team" - ] - }, - { - "index_key": "drf-excel", - "schema_version": 0, - "attributes": { - "etag": "W/\"2f3f10cca71e685ddbd072129db6cf060fdc2224a3bbedfb942c13cc8d3722d0\"", - "id": "11341703:drf-excel", - "permission": "maintain", - "repository": "drf-excel", - "team_id": "drf-excel-committers" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_committer_team", - "github_team.repo_team" - ] - } - ] - }, - { - "mode": "managed", - "type": "github_team_repository", - "name": "repo_team_access", - "provider": "provider[\"registry.terraform.io/integrations/github\"]", - "instances": [ - { - "index_key": "axe-selenium-python", - "schema_version": 0, - "attributes": { - "etag": "W/\"73ae70563a934bbd34e22cd47882c6e96bfa01c10a9bc57bcadf21a57add3eaa\"", - "id": "14236309:axe-selenium-python", - "permission": "triage", - "repository": "axe-selenium-python", - "team_id": "axe-selenium-python" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_team" - ] - }, - { - "index_key": "best-practices", - "schema_version": 0, - "attributes": { - "etag": "W/\"32bbc50bd689dfe6bad802b2ed3b275c65c82678cb683baf0fdb8775d2602a73\"", - "id": "9757678:best-practices", - "permission": "triage", - "repository": "best-practices", - "team_id": "best-practices" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_team" - ] - }, - { - "index_key": "django-click", - "schema_version": 0, - "attributes": { - "etag": "W/\"4e7e20348471d2ef4ea966ba3ecb0178f95aa1c8ef9688cb57f230e840d2243e\"", - "id": "12315699:django-click", - "permission": "triage", - "repository": "django-click", - "team_id": "django-click" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_team" - ] - }, - { - "index_key": "django-cookie-consent", - "schema_version": 0, - "attributes": { - "etag": "W/\"ad26fd419a3fd7a00d9e643344f7b0f6fb576db4c6d84900dfdce9b7cfac7ed4\"", - "id": "13287524:django-cookie-consent", - "permission": "triage", - "repository": "django-cookie-consent", - "team_id": "django-cookie-consent" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_team" - ] - }, - { - "index_key": "django-debug-toolbar", - "schema_version": 0, - "attributes": { - "etag": "W/\"b26b36271dbd1690d06f4fbcd5db3f87b759bfc6f081f181d299cac4b2916306\"", - "id": "11354339:django-debug-toolbar", - "permission": "triage", - "repository": "django-debug-toolbar", - "team_id": "django-debug-toolbar" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_team" - ] - }, - { - "index_key": "django-enum", - "schema_version": 0, - "attributes": { - "etag": "W/\"48e36882aeff82d71c81db508dcf612ac025f721367c4c5dd63c41aeb8bb3a38\"", - "id": "12828748:django-enum", - "permission": "triage", - "repository": "django-enum", - "team_id": "django-enum" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_team" - ] - }, - { - "index_key": "django-fsm-2", - "schema_version": 0, - "attributes": { - "etag": "W/\"771185b031962c675732b18e5aebf8b70d7e4a765f2462f5aa099ba9d1b59af4\"", - "id": "10870431:django-fsm-2", - "permission": "triage", - "repository": "django-fsm-2", - "team_id": "django-fsm-2" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_team" - ] - }, - { - "index_key": "django-prometheus", - "schema_version": 0, - "attributes": { - "etag": "W/\"9dba5030f376ad62e7d3f7dbd8eab691942b598333afc60a4b2639f901104cbd\"", - "id": "13333847:django-prometheus", - "permission": "triage", - "repository": "django-prometheus", - "team_id": "django-prometheus" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_team" - ] - }, - { - "index_key": "django-simple-history", - "schema_version": 0, - "attributes": { - "etag": "W/\"2938ae7e972a2a07aa5d9ef29076784bea7b71b6c0114ab6bb7b1016ef0b9761\"", - "id": "13286898:django-simple-history", - "permission": "triage", - "repository": "django-simple-history", - "team_id": "django-simple-history" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_team" - ] - }, - { - "index_key": "django-tailwind-cli", - "schema_version": 0, - "attributes": { - "etag": "W/\"d12bd01e4aaf68b2f615ec42aa7811c84d72c23b360ec6df299dde0c4c801bd4\"", - "id": "11393999:django-tailwind-cli", - "permission": "triage", - "repository": "django-tailwind-cli", - "team_id": "django-tailwind-cli" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_team" - ] - }, - { - "index_key": "django-tasks-scheduler", - "schema_version": 0, - "attributes": { - "etag": "W/\"4c589d755497b83afc67541a8aaca40c1b2c8260f23b6e8dee2b12b13a68330f\"", - "id": "10707217:django-tasks-scheduler", - "permission": "triage", - "repository": "django-tasks-scheduler", - "team_id": "django-tasks-scheduler" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_team" - ] - }, - { - "index_key": "django-typer", - "schema_version": 0, - "attributes": { - "etag": "W/\"c34d957f13c19590d3c8260c545afe8468ba8c85d9b066d759e7481f890aa847\"", - "id": "11217213:django-typer", - "permission": "triage", - "repository": "django-typer", - "team_id": "django-typer" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_team" - ] - }, - { - "index_key": "django-valkey", - "schema_version": 0, - "attributes": { - "etag": "W/\"b9e719fff6d3d7bfa8aa4b769da43002468329d66827f2322692aa13efeaa6d9\"", - "id": "13334519:django-valkey", - "permission": "triage", - "repository": "django-valkey", - "team_id": "django-valkey" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_team" - ] - }, - { - "index_key": "drf-excel", - "schema_version": 0, - "attributes": { - "etag": "W/\"3cafab9834c1ca62cfa11e3bed9c7baca4d22b0e9494efcb978851fb5acdd2a9\"", - "id": "11341700:drf-excel", - "permission": "triage", - "repository": "drf-excel", - "team_id": "drf-excel" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_team" - ] - } - ] - }, - { - "mode": "managed", - "type": "github_team_settings", - "name": "this", - "provider": "provider[\"registry.terraform.io/integrations/github\"]", - "instances": [ - { - "index_key": "axe-selenium-python", - "schema_version": 0, - "attributes": { - "id": "T_kwDOCaaRBM4A2TqV", - "review_request_delegation": [ - { - "algorithm": "LOAD_BALANCE", - "member_count": 2, - "notify": false - } - ], - "team_id": "axe-selenium-python", - "team_slug": "axe-selenium-python", - "team_uid": "T_kwDOCaaRBM4A2TqV" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_team" - ] - }, - { - "index_key": "best-practices", - "schema_version": 0, - "attributes": { - "id": "T_kwDOCaaRBM4AlOPu", - "review_request_delegation": [ - { - "algorithm": "LOAD_BALANCE", - "member_count": 2, - "notify": false - } - ], - "team_id": "best-practices", - "team_slug": "best-practices", - "team_uid": "T_kwDOCaaRBM4AlOPu" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_team" - ] - }, - { - "index_key": "django-click", - "schema_version": 0, - "attributes": { - "id": "T_kwDOCaaRBM4Au-wz", - "review_request_delegation": [ - { - "algorithm": "LOAD_BALANCE", - "member_count": 2, - "notify": false - } - ], - "team_id": "django-click", - "team_slug": "django-click", - "team_uid": "T_kwDOCaaRBM4Au-wz" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_team" - ] - }, - { - "index_key": "django-cookie-consent", - "schema_version": 0, - "attributes": { - "id": "T_kwDOCaaRBM4AysBk", - "review_request_delegation": [ - { - "algorithm": "LOAD_BALANCE", - "member_count": 2, - "notify": false - } - ], - "team_id": "django-cookie-consent", - "team_slug": "django-cookie-consent", - "team_uid": "T_kwDOCaaRBM4AysBk" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_team" - ] - }, - { - "index_key": "django-debug-toolbar", - "schema_version": 0, - "attributes": { - "id": "T_kwDOCaaRBM4ArUDj", - "review_request_delegation": [ - { - "algorithm": "LOAD_BALANCE", - "member_count": 2, - "notify": false - } - ], - "team_id": "django-debug-toolbar", - "team_slug": "django-debug-toolbar", - "team_uid": "T_kwDOCaaRBM4ArUDj" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_team" - ] - }, - { - "index_key": "django-enum", - "schema_version": 0, - "attributes": { - "id": "T_kwDOCaaRBM4Aw8BM", - "review_request_delegation": [ - { - "algorithm": "LOAD_BALANCE", - "member_count": 2, - "notify": false - } - ], - "team_id": "django-enum", - "team_slug": "django-enum", - "team_uid": "T_kwDOCaaRBM4Aw8BM" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_team" - ] - }, - { - "index_key": "django-fsm-2", - "schema_version": 0, - "attributes": { - "id": "T_kwDOCaaRBM4Apd6f", - "review_request_delegation": [ - { - "algorithm": "LOAD_BALANCE", - "member_count": 2, - "notify": false - } - ], - "team_id": "django-fsm-2", - "team_slug": "django-fsm-2", - "team_uid": "T_kwDOCaaRBM4Apd6f" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_team" - ] - }, - { - "index_key": "django-prometheus", - "schema_version": 0, - "attributes": { - "id": "T_kwDOCaaRBM4Ay3VX", - "review_request_delegation": [ - { - "algorithm": "LOAD_BALANCE", - "member_count": 2, - "notify": false - } - ], - "team_id": "django-prometheus", - "team_slug": "django-prometheus", - "team_uid": "T_kwDOCaaRBM4Ay3VX" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_team" - ] - }, - { - "index_key": "django-simple-history", - "schema_version": 0, - "attributes": { - "id": "T_kwDOCaaRBM4Ayr3y", - "review_request_delegation": [ - { - "algorithm": "LOAD_BALANCE", - "member_count": 2, - "notify": false - } - ], - "team_id": "django-simple-history", - "team_slug": "django-simple-history", - "team_uid": "T_kwDOCaaRBM4Ayr3y" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "eyJzY2hlbWFfdmVyc2lvbiI6IjAifQ==", - "dependencies": [ - "github_team.repo_team" - ] - }, - { - "index_key": "django-tailwind-cli", - "schema_version": 0, - "attributes": { - "id": "T_kwDOCaaRBM4ArdvP", - "review_request_delegation": [ - { - "algorithm": "LOAD_BALANCE", - "member_count": 2, - "notify": false - } - ], - "team_id": "django-tailwind-cli", - "team_slug": "django-tailwind-cli", - "team_uid": "T_kwDOCaaRBM4ArdvP" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_team" - ] - }, - { - "index_key": "django-tasks-scheduler", - "schema_version": 0, - "attributes": { - "id": "T_kwDOCaaRBM4Ao2ER", - "review_request_delegation": [ - { - "algorithm": "LOAD_BALANCE", - "member_count": 2, - "notify": false - } - ], - "team_id": "django-tasks-scheduler", - "team_slug": "django-tasks-scheduler", - "team_uid": "T_kwDOCaaRBM4Ao2ER" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_team" - ] - }, - { - "index_key": "django-typer", - "schema_version": 0, - "attributes": { - "id": "T_kwDOCaaRBM4Aqyk9", - "review_request_delegation": [ - { - "algorithm": "LOAD_BALANCE", - "member_count": 2, - "notify": false - } - ], - "team_id": "django-typer", - "team_slug": "django-typer", - "team_uid": "T_kwDOCaaRBM4Aqyk9" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_team" - ] - }, - { - "index_key": "django-valkey", - "schema_version": 0, - "attributes": { - "id": "T_kwDOCaaRBM4Ay3f3", - "review_request_delegation": [ - { - "algorithm": "LOAD_BALANCE", - "member_count": 2, - "notify": false - } - ], - "team_id": "django-valkey", - "team_slug": "django-valkey", - "team_uid": "T_kwDOCaaRBM4Ay3f3" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_team" - ] - }, - { - "index_key": "drf-excel", - "schema_version": 0, - "attributes": { - "id": "T_kwDOCaaRBM4ArQ-E", - "review_request_delegation": [ - { - "algorithm": "LOAD_BALANCE", - "member_count": 2, - "notify": false - } - ], - "team_id": "drf-excel", - "team_slug": "drf-excel", - "team_uid": "T_kwDOCaaRBM4ArQ-E" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_team" - ] - } - ] } ], "check_results": null diff --git a/terraform/repos/resource-designers.tf b/terraform/repos/resource-designers.tf deleted file mode 100644 index 02a51b4..0000000 --- a/terraform/repos/resource-designers.tf +++ /dev/null @@ -1,22 +0,0 @@ -# Create the organization teams for Django Commons. -resource "github_team" "org_designers_team" { - name = "Designers" - description = "Django Commons designers" - privacy = "closed" - -} - - -resource "github_team_members" "org_designers_team_members" { - team_id = github_team.org_designers_team.id - - dynamic "members" { - for_each = var.designers - - content { - username = members.value - role = "member" - } - } -} - From e654c16026fae1875a3352624fd11358d01ad16a Mon Sep 17 00:00:00 2001 From: Daniel M Date: Thu, 18 Dec 2025 16:17:26 -0500 Subject: [PATCH 03/17] separate modules --- terraform/repos/resources-collaborators.tf | 5 +- terraform/repos/tfstate.json | 1577 -------------------- 2 files changed, 4 insertions(+), 1578 deletions(-) diff --git a/terraform/repos/resources-collaborators.tf b/terraform/repos/resources-collaborators.tf index 3fe62ec..516890c 100644 --- a/terraform/repos/resources-collaborators.tf +++ b/terraform/repos/resources-collaborators.tf @@ -26,13 +26,16 @@ import { to = github_repository_collaborators.this[each.key] } +data "github_team" "admins_team" { + slug = "Admins" +} resource "github_repository_collaborators" "this" { for_each = local.repo_collaborators repository = github_repository.this[each.key].name ignore_team { - team_id = github_team.org_teams["Admins"].slug + team_id = data.github_team.admins_team.slug } dynamic "team" { for_each = local.repo_collaborators[each.key] diff --git a/terraform/repos/tfstate.json b/terraform/repos/tfstate.json index f96e5a9..c74c432 100644 --- a/terraform/repos/tfstate.json +++ b/terraform/repos/tfstate.json @@ -406,1583 +406,6 @@ } ] }, - { - "mode": "managed", - "type": "github_membership", - "name": "this", - "provider": "provider[\"registry.terraform.io/integrations/github\"]", - "instances": [ - { - "index_key": "2ykwang", - "schema_version": 0, - "attributes": { - "downgrade_on_destroy": false, - "etag": "W/\"2ab69bb91ac4b18c946d48dd2579b7091cd483f80be6917ea941288e16ecbc44\"", - "id": "django-commons:2ykwang", - "role": "member", - "username": "2ykwang" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "data.github_users.users" - ] - }, - { - "index_key": "Chiemezuo", - "schema_version": 0, - "attributes": { - "downgrade_on_destroy": false, - "etag": "W/\"86493022e463577599b0c4218dc23c525839a2e5e82514d967d69c1de4a787bb\"", - "id": "django-commons:Chiemezuo", - "role": "member", - "username": "Chiemezuo" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "data.github_users.users" - ] - }, - { - "index_key": "DhavalGojiya", - "schema_version": 0, - "attributes": { - "downgrade_on_destroy": false, - "etag": "W/\"ac59e4c419b08fef803e006e4217fc3fe6f61f20b06686c4ae8b9e95be5ea540\"", - "id": "django-commons:DhavalGojiya", - "role": "member", - "username": "DhavalGojiya" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "data.github_users.users" - ] - }, - { - "index_key": "FlipperPA", - "schema_version": 0, - "attributes": { - "downgrade_on_destroy": false, - "etag": "W/\"7b590516803d9ba1d3628f0b22275dfa2a6b72b6b6ff7cd76c21c5b817e8af26\"", - "id": "django-commons:FlipperPA", - "role": "member", - "username": "FlipperPA" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "data.github_users.users" - ] - }, - { - "index_key": "GaretJax", - "schema_version": 0, - "attributes": { - "downgrade_on_destroy": false, - "etag": "W/\"426aa4f95c40f19c856f37a3c1e6f377e6a0f22be16a35fae129e820486dee44\"", - "id": "django-commons:GaretJax", - "role": "member", - "username": "GaretJax" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "data.github_users.users" - ] - }, - { - "index_key": "JaeHyuckSa", - "schema_version": 0, - "attributes": { - "downgrade_on_destroy": false, - "etag": "W/\"716c3995d2135eb0eaa4d83adc7d3debe7b6af60937d8d64e639bda1f6de03a7\"", - "id": "django-commons:JaeHyuckSa", - "role": "member", - "username": "JaeHyuckSa" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "data.github_users.users" - ] - }, - { - "index_key": "JohananOppongAmoateng", - "schema_version": 0, - "attributes": { - "downgrade_on_destroy": false, - "etag": "W/\"3a07921bf441cea09b0a78f9ab78304ffb76db1e20433294ae55661b0a442cce\"", - "id": "django-commons:JohananOppongAmoateng", - "role": "member", - "username": "JohananOppongAmoateng" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "data.github_users.users" - ] - }, - { - "index_key": "Josephchinedu", - "schema_version": 0, - "attributes": { - "downgrade_on_destroy": false, - "etag": "W/\"ed0d2e1779e4630c5fada391648e2f53c16b772d97cb42a425568ed3014f14ee\"", - "id": "django-commons:Josephchinedu", - "role": "member", - "username": "Josephchinedu" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "data.github_users.users" - ] - }, - { - "index_key": "Mogost", - "schema_version": 0, - "attributes": { - "downgrade_on_destroy": false, - "etag": "W/\"548d6d97173a3ce733c320f447381a8bd6d2fccd6b775584b6176242f52a53d1\"", - "id": "django-commons:Mogost", - "role": "member", - "username": "Mogost" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "data.github_users.users" - ] - }, - { - "index_key": "MrCordeiro", - "schema_version": 0, - "attributes": { - "downgrade_on_destroy": false, - "etag": "W/\"edd0f9b8dab234cbe109f29462f3ece7f0b65f63df7fc2823c9d28fffb2a5ef5\"", - "id": "django-commons:MrCordeiro", - "role": "member", - "username": "MrCordeiro" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "data.github_users.users" - ] - }, - { - "index_key": "Natim", - "schema_version": 0, - "attributes": { - "downgrade_on_destroy": null, - "etag": "W/\"98a134b427d7d7b8f67c9abcfcd6b33416fc931f263a155a02346dd1317adea1\"", - "id": "django-commons:Natim", - "role": "member", - "username": "Natim" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "eyJzY2hlbWFfdmVyc2lvbiI6IjAifQ==", - "dependencies": [ - "data.github_users.users" - ] - }, - { - "index_key": "RealOrangeOne", - "schema_version": 0, - "attributes": { - "downgrade_on_destroy": false, - "etag": "W/\"ab2eccdd691fd60c778f497424dd5447d2acfed1ffffd0b74afaed0f22777432\"", - "id": "django-commons:RealOrangeOne", - "role": "member", - "username": "RealOrangeOne" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "data.github_users.users" - ] - }, - { - "index_key": "Shrikantgiri25", - "schema_version": 0, - "attributes": { - "downgrade_on_destroy": false, - "etag": "W/\"a3333c88d84be72f756f2f53ebd187fc84e51aa2ef0ffaabd4bfd5f5b5eeda28\"", - "id": "django-commons:Shrikantgiri25", - "role": "member", - "username": "Shrikantgiri25" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "data.github_users.users" - ] - }, - { - "index_key": "SinkuKumar", - "schema_version": 0, - "attributes": { - "downgrade_on_destroy": false, - "etag": "W/\"2305d621c10729a6ff4a4558cd2fabe957a57dcadd720001577d8697da0cafe2\"", - "id": "django-commons:SinkuKumar", - "role": "member", - "username": "SinkuKumar" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "data.github_users.users" - ] - }, - { - "index_key": "Stormheg", - "schema_version": 0, - "attributes": { - "downgrade_on_destroy": null, - "etag": "W/\"6b9c524e3964766b01bd2b6c3d28df6103a221f1d0cc1bf5fe7be4cef7c3180b\"", - "id": "django-commons:Stormheg", - "role": "admin", - "username": "Stormheg" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "eyJzY2hlbWFfdmVyc2lvbiI6IjAifQ==", - "dependencies": [ - "data.github_users.users" - ] - }, - { - "index_key": "TimothyMalahy", - "schema_version": 0, - "attributes": { - "downgrade_on_destroy": false, - "etag": "W/\"43e96a9dbb4ebcad38940d648e200236f958f3208488f74b640534d11417fa75\"", - "id": "django-commons:TimothyMalahy", - "role": "member", - "username": "TimothyMalahy" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "data.github_users.users" - ] - }, - { - "index_key": "VeldaKiara", - "schema_version": 0, - "attributes": { - "downgrade_on_destroy": false, - "etag": "W/\"048ba4379d78554dbffe9698ab7d310410d1b450fb8a0243fc4188bf19e5d6af\"", - "id": "django-commons:VeldaKiara", - "role": "member", - "username": "VeldaKiara" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "data.github_users.users" - ] - }, - { - "index_key": "Violette-Allotey", - "schema_version": 0, - "attributes": { - "downgrade_on_destroy": false, - "etag": "W/\"b0038a5b93546b977263873bb9e2db5fe133f7c1ab778ccd949a58b90faf381b\"", - "id": "django-commons:Violette-Allotey", - "role": "member", - "username": "Violette-Allotey" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "data.github_users.users" - ] - }, - { - "index_key": "Zakui", - "schema_version": 0, - "attributes": { - "downgrade_on_destroy": false, - "etag": "W/\"f693bf0f4fa49827c01f276f6f0e1f60ee9b3b24986df0cfa484480c6c3542a5\"", - "id": "django-commons:Zakui", - "role": "member", - "username": "Zakui" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "data.github_users.users" - ] - }, - { - "index_key": "adRn-s", - "schema_version": 0, - "attributes": { - "downgrade_on_destroy": false, - "etag": "W/\"4ad889c365cd59b3c76dbdf7b626298540e621599ea7399e79cd838ffa8f8a18\"", - "id": "django-commons:adRn-s", - "role": "member", - "username": "adRn-s" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "data.github_users.users" - ] - }, - { - "index_key": "adamghill", - "schema_version": 0, - "attributes": { - "downgrade_on_destroy": false, - "etag": "W/\"f97a091dce002178f3bd38e9a5191fbef8ca6ed55365712794ccfd130a424913\"", - "id": "django-commons:adamghill", - "role": "member", - "username": "adamghill" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "data.github_users.users" - ] - }, - { - "index_key": "akshayvinchurkar", - "schema_version": 0, - "attributes": { - "downgrade_on_destroy": false, - "etag": "W/\"1c1b62e18f9f91dfcbbcf08ee56929a08c0e6c4bdef3a56bdfaa53e36c397389\"", - "id": "django-commons:akshayvinchurkar", - "role": "member", - "username": "akshayvinchurkar" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "data.github_users.users" - ] - }, - { - "index_key": "amirreza8002", - "schema_version": 0, - "attributes": { - "downgrade_on_destroy": false, - "etag": "W/\"55bff3bb50dc17188a3a4d3f6a3e14856db5daf924467c30ad332695d0a12744\"", - "id": "django-commons:amirreza8002", - "role": "member", - "username": "amirreza8002" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "data.github_users.users" - ] - }, - { - "index_key": "andoriyaprashant", - "schema_version": 0, - "attributes": { - "downgrade_on_destroy": false, - "etag": "W/\"0695c6f857f9b075d3ca7e8f19ed69b7d3e3de692d721c2ab994618aae4e622e\"", - "id": "django-commons:andoriyaprashant", - "role": "member", - "username": "andoriyaprashant" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "data.github_users.users" - ] - }, - { - "index_key": "asherf", - "schema_version": 0, - "attributes": { - "downgrade_on_destroy": false, - "etag": "W/\"6e015ecc9908c65f3678bcfde23b6f6d51484b9d80f3b459e17056af31114f11\"", - "id": "django-commons:asherf", - "role": "member", - "username": "asherf" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "data.github_users.users" - ] - }, - { - "index_key": "ayimdomnic", - "schema_version": 0, - "attributes": { - "downgrade_on_destroy": false, - "etag": "W/\"246a98fe4ab7fb481f81c65bdca244800cc35950648dc7697c80ac1bbad0b12c\"", - "id": "django-commons:ayimdomnic", - "role": "member", - "username": "ayimdomnic" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "data.github_users.users" - ] - }, - { - "index_key": "bahoo", - "schema_version": 0, - "attributes": { - "downgrade_on_destroy": false, - "etag": "W/\"8e9aa915843efe47fe6bfd858faaa0e2e125d60c76785a61cb5c30ff077c3043\"", - "id": "django-commons:bahoo", - "role": "member", - "username": "bahoo" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "data.github_users.users" - ] - }, - { - "index_key": "bckohan", - "schema_version": 0, - "attributes": { - "downgrade_on_destroy": false, - "etag": "W/\"56a7c423e887b0264729d64da713f5ee984234251d9d8e394af05ba521f5fabc\"", - "id": "django-commons:bckohan", - "role": "member", - "username": "bckohan" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "data.github_users.users" - ] - }, - { - "index_key": "blingblin-g", - "schema_version": 0, - "attributes": { - "downgrade_on_destroy": false, - "etag": "W/\"7896c43e39776144d45c53864520b23b2f2b99a5112593e22ea66c39e4c8082a\"", - "id": "django-commons:blingblin-g", - "role": "member", - "username": "blingblin-g" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "data.github_users.users" - ] - }, - { - "index_key": "browniebroke", - "schema_version": 0, - "attributes": { - "downgrade_on_destroy": false, - "etag": "W/\"0fa93f60780a213eac11fbc66a266aa5d8e254313a8e2d6cd2b2e63ccfe562cc\"", - "id": "django-commons:browniebroke", - "role": "member", - "username": "browniebroke" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "data.github_users.users" - ] - }, - { - "index_key": "carltongibson", - "schema_version": 0, - "attributes": { - "downgrade_on_destroy": false, - "etag": "W/\"ca6d7695590cb0a76b96eb4ce0b18dac1e8ed54b25fe017672d2d2aba68eca1f\"", - "id": "django-commons:carltongibson", - "role": "member", - "username": "carltongibson" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "data.github_users.users" - ] - }, - { - "index_key": "cgl", - "schema_version": 0, - "attributes": { - "downgrade_on_destroy": false, - "etag": "W/\"fa5d14c3626f04db92766d7fe30b1929b9f294d904dfe88c24fa3bd9756c875e\"", - "id": "django-commons:cgl", - "role": "member", - "username": "cgl" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "data.github_users.users" - ] - }, - { - "index_key": "clintonb", - "schema_version": 0, - "attributes": { - "downgrade_on_destroy": false, - "etag": "W/\"9aaf2bf914d4954c9ed392cc10a1670d0624111e1ac9a3b3a3e32f267beb3c8c\"", - "id": "django-commons:clintonb", - "role": "member", - "username": "clintonb" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "data.github_users.users" - ] - }, - { - "index_key": "cunla", - "schema_version": 0, - "attributes": { - "downgrade_on_destroy": null, - "etag": "W/\"fe8a9355720182460e3b8066fe6577918851d592930c5201a97add1a1fcc7f67\"", - "id": "django-commons:cunla", - "role": "admin", - "username": "cunla" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "eyJzY2hlbWFfdmVyc2lvbiI6IjAifQ==", - "dependencies": [ - "data.github_users.users" - ] - }, - { - "index_key": "ddabble", - "schema_version": 0, - "attributes": { - "downgrade_on_destroy": false, - "etag": "W/\"fc42f7a4b7782f316304a82a057c1bb88bcbc26522fa0a4c1a56e1af73aa184e\"", - "id": "django-commons:ddabble", - "role": "member", - "username": "ddabble" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "data.github_users.users" - ] - }, - { - "index_key": "deronnax", - "schema_version": 0, - "attributes": { - "downgrade_on_destroy": false, - "etag": "W/\"1497ae7aa2cfe8c0d69015af3a20baafc1f8bbdd1afbb42ebaf9d6b6efa0d20c\"", - "id": "django-commons:deronnax", - "role": "member", - "username": "deronnax" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "data.github_users.users" - ] - }, - { - "index_key": "devatbosch", - "schema_version": 0, - "attributes": { - "downgrade_on_destroy": false, - "etag": "W/\"b827b10346c1ebac471197a130c75ab78edd219e884be6f9a0a8c9cd0f296159\"", - "id": "django-commons:devatbosch", - "role": "member", - "username": "devatbosch" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "data.github_users.users" - ] - }, - { - "index_key": "dmpayton", - "schema_version": 0, - "attributes": { - "downgrade_on_destroy": false, - "etag": "W/\"4640d6b0ed7b8d1bd3159cb44d18e023edb4646483d14bae22f51253dcc7174a\"", - "id": "django-commons:dmpayton", - "role": "member", - "username": "dmpayton" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "data.github_users.users" - ] - }, - { - "index_key": "dr-rompecabezas", - "schema_version": 0, - "attributes": { - "downgrade_on_destroy": false, - "etag": "W/\"2bf7c17a5feadd333207f5ac23867f7a3c890af2eb27ac9a7c422335c042bd60\"", - "id": "django-commons:dr-rompecabezas", - "role": "member", - "username": "dr-rompecabezas" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "data.github_users.users" - ] - }, - { - "index_key": "elineda", - "schema_version": 0, - "attributes": { - "downgrade_on_destroy": false, - "etag": "W/\"0243d5a80b417e800bce9806cebcfc4c277c38c6c2d1cf63412e0f65f93adb55\"", - "id": "django-commons:elineda", - "role": "member", - "username": "elineda" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "data.github_users.users" - ] - }, - { - "index_key": "federicobond", - "schema_version": 0, - "attributes": { - "downgrade_on_destroy": false, - "etag": "W/\"228410b22b745267f90f006fc90107b32f296bac52bcf22026a3e8317bcfbc9d\"", - "id": "django-commons:federicobond", - "role": "member", - "username": "federicobond" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "data.github_users.users" - ] - }, - { - "index_key": "fsbraun", - "schema_version": 0, - "attributes": { - "downgrade_on_destroy": false, - "etag": "W/\"39da5dd24082f60e83f4adc8fda3679f7c3ddaf7533b1b940f2b8c6219b946e0\"", - "id": "django-commons:fsbraun", - "role": "member", - "username": "fsbraun" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "data.github_users.users" - ] - }, - { - "index_key": "g-nie", - "schema_version": 0, - "attributes": { - "downgrade_on_destroy": false, - "etag": "W/\"d05579f94f11f9652be4cadf306bb66a4e0b16fcf870eb439d471df448f388b8\"", - "id": "django-commons:g-nie", - "role": "member", - "username": "g-nie" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "data.github_users.users" - ] - }, - { - "index_key": "gav-fyi", - "schema_version": 0, - "attributes": { - "downgrade_on_destroy": null, - "etag": "W/\"e34caf3f86b45e8ec852d7fbb939ccf44fcae8b797fb5b651c9c1513b7e6542c\"", - "id": "django-commons:gav-fyi", - "role": "member", - "username": "gav-fyi" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "eyJzY2hlbWFfdmVyc2lvbiI6IjAifQ==", - "dependencies": [ - "data.github_users.users" - ] - }, - { - "index_key": "giovannicimolin", - "schema_version": 0, - "attributes": { - "downgrade_on_destroy": false, - "etag": "W/\"39dcc3fb5073e7738defb298865529a82ede728b5e82bb01703b18ef9baf8426\"", - "id": "django-commons:giovannicimolin", - "role": "member", - "username": "giovannicimolin" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "data.github_users.users" - ] - }, - { - "index_key": "input", - "schema_version": 0, - "attributes": { - "downgrade_on_destroy": false, - "etag": "W/\"d7b8aca501dd7b4ce6dbe3958fba2741cbd493c37c192fe102d49aa615104aae\"", - "id": "django-commons:input", - "role": "member", - "username": "input" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "data.github_users.users" - ] - }, - { - "index_key": "jacklinke", - "schema_version": 0, - "attributes": { - "downgrade_on_destroy": false, - "etag": "W/\"9c7b8e1b0972cd42c16e4953d0b2adb7195286d794df9672942e272e35894c19\"", - "id": "django-commons:jacklinke", - "role": "member", - "username": "jacklinke" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "data.github_users.users" - ] - }, - { - "index_key": "jburns6789", - "schema_version": 0, - "attributes": { - "downgrade_on_destroy": false, - "etag": "W/\"6aac95f41a4d6391899afc1796799228a7692cbad25f8f365f05dca2d9b18b22\"", - "id": "django-commons:jburns6789", - "role": "member", - "username": "jburns6789" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "data.github_users.users" - ] - }, - { - "index_key": "jcjudkins", - "schema_version": 0, - "attributes": { - "downgrade_on_destroy": null, - "etag": "W/\"e9163164f085411bf1b265c5a3dc208169b29569bf002eedda69f948467de9af\"", - "id": "django-commons:jcjudkins", - "role": "member", - "username": "jcjudkins" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "eyJzY2hlbWFfdmVyc2lvbiI6IjAifQ==", - "dependencies": [ - "data.github_users.users" - ] - }, - { - "index_key": "jezdez", - "schema_version": 0, - "attributes": { - "downgrade_on_destroy": false, - "etag": "W/\"947daa19b50e58c770e090500c4818b3bc73a89c49068b513068e4a7eee16e13\"", - "id": "django-commons:jezdez", - "role": "member", - "username": "jezdez" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "data.github_users.users" - ] - }, - { - "index_key": "jmgutu", - "schema_version": 0, - "attributes": { - "downgrade_on_destroy": false, - "etag": "W/\"68c8ee12d995a8e699e9d4f0ab7ea61593dff0e4c56001c0ff74eedc4c3a6a10\"", - "id": "django-commons:jmgutu", - "role": "member", - "username": "jmgutu" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "data.github_users.users" - ] - }, - { - "index_key": "jnovinger", - "schema_version": 0, - "attributes": { - "downgrade_on_destroy": false, - "etag": "W/\"ee2bfbfe115c0657c6190b0a65c6e917ff1a81417d8047326a3c004a0b93711a\"", - "id": "django-commons:jnovinger", - "role": "member", - "username": "jnovinger" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "data.github_users.users" - ] - }, - { - "index_key": "johnatanmoran", - "schema_version": 0, - "attributes": { - "downgrade_on_destroy": false, - "etag": "W/\"fc6eee35c8e85497e635fb0f853d68b523de3022e733b44f3ddbfead290fe89d\"", - "id": "django-commons:johnatanmoran", - "role": "member", - "username": "johnatanmoran" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "data.github_users.users" - ] - }, - { - "index_key": "johnfraney", - "schema_version": 0, - "attributes": { - "downgrade_on_destroy": false, - "etag": "W/\"548dbf94b63461f33c84f1ed7c3e0f911d8ea8cf32b6330c4202ac0b9e4d321d\"", - "id": "django-commons:johnfraney", - "role": "member", - "username": "johnfraney" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "data.github_users.users" - ] - }, - { - "index_key": "joshuadavidthomas", - "schema_version": 0, - "attributes": { - "downgrade_on_destroy": null, - "etag": "W/\"46997d69cead0af60d839f00466ef27d07ca58e2325f7553a2926a42f21f6478\"", - "id": "django-commons:joshuadavidthomas", - "role": "member", - "username": "joshuadavidthomas" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "eyJzY2hlbWFfdmVyc2lvbiI6IjAifQ==", - "dependencies": [ - "data.github_users.users" - ] - }, - { - "index_key": "justbackend", - "schema_version": 0, - "attributes": { - "downgrade_on_destroy": false, - "etag": "W/\"b68ba71336b63ce9b69e1a1735afefd9d140838f6f045b17a9f318a54011281a\"", - "id": "django-commons:justbackend", - "role": "member", - "username": "justbackend" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "data.github_users.users" - ] - }, - { - "index_key": "kevin-brown", - "schema_version": 0, - "attributes": { - "downgrade_on_destroy": false, - "etag": "W/\"4d9aae7389f30dd05b936011f07909c00aee6f0405e25db4afde3f1ec38b2da7\"", - "id": "django-commons:kevin-brown", - "role": "member", - "username": "kevin-brown" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "data.github_users.users" - ] - }, - { - "index_key": "knyghty", - "schema_version": 0, - "attributes": { - "downgrade_on_destroy": false, - "etag": "W/\"d8b7c9aff338e17979af5bd82ccb45672b822d371bafe8c5453e3a31e9301aa5\"", - "id": "django-commons:knyghty", - "role": "member", - "username": "knyghty" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "data.github_users.users" - ] - }, - { - "index_key": "korfuri", - "schema_version": 0, - "attributes": { - "downgrade_on_destroy": false, - "etag": "W/\"42dc62440b556ce3e3ad6b2b8ddafafca7d7922d0614bfdeb928c60220df0044\"", - "id": "django-commons:korfuri", - "role": "member", - "username": "korfuri" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "data.github_users.users" - ] - }, - { - "index_key": "kytta", - "schema_version": 0, - "attributes": { - "downgrade_on_destroy": false, - "etag": "W/\"e98d8c18fbb625dfea5ac19bbcc75fb1e3c9d5d953424334eb6efd01363320ae\"", - "id": "django-commons:kytta", - "role": "member", - "username": "kytta" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "data.github_users.users" - ] - }, - { - "index_key": "leogregianin", - "schema_version": 0, - "attributes": { - "downgrade_on_destroy": false, - "etag": "W/\"e7289910e7febcb8f3a6fde6a8764f6d178bbab56be01b8cd65894a407548edf\"", - "id": "django-commons:leogregianin", - "role": "member", - "username": "leogregianin" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "data.github_users.users" - ] - }, - { - "index_key": "manelclos", - "schema_version": 0, - "attributes": { - "downgrade_on_destroy": false, - "etag": "W/\"0936e6e6b21b78dadf56a5dd3acf703b5d71a0276f1952693f2629bd7441b84c\"", - "id": "django-commons:manelclos", - "role": "member", - "username": "manelclos" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "data.github_users.users" - ] - }, - { - "index_key": "matthiask", - "schema_version": 0, - "attributes": { - "downgrade_on_destroy": null, - "etag": "W/\"fefccd4decf97545d335749efc8ff93204d2413e8964be36b67e29f858940c24\"", - "id": "django-commons:matthiask", - "role": "member", - "username": "matthiask" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "eyJzY2hlbWFfdmVyc2lvbiI6IjAifQ==", - "dependencies": [ - "data.github_users.users" - ] - }, - { - "index_key": "mihrab34", - "schema_version": 0, - "attributes": { - "downgrade_on_destroy": false, - "etag": "W/\"1a94a3a8ec767a94329ee7c152ca3e8118c8250a4acc3cc157a78b6a640fee6a\"", - "id": "django-commons:mihrab34", - "role": "member", - "username": "mihrab34" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "data.github_users.users" - ] - }, - { - "index_key": "mkalioby", - "schema_version": 0, - "attributes": { - "downgrade_on_destroy": false, - "etag": "W/\"a74c9bc54ce56775efa4a02d3aa7beff0c8e0e6dff28c6f1f0fce19ca75b9932\"", - "id": "django-commons:mkalioby", - "role": "member", - "username": "mkalioby" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "data.github_users.users" - ] - }, - { - "index_key": "mnislam01", - "schema_version": 0, - "attributes": { - "downgrade_on_destroy": false, - "etag": "W/\"09a948483a90d2d2f56a89771811a3fe778f6da2918818032cc628b326123c83\"", - "id": "django-commons:mnislam01", - "role": "member", - "username": "mnislam01" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "data.github_users.users" - ] - }, - { - "index_key": "mzemlickis", - "schema_version": 0, - "attributes": { - "downgrade_on_destroy": false, - "etag": "W/\"045ff1bd41fe3f777313f042295b2f0672b50cf4eb3408c29d4e754f614d73de\"", - "id": "django-commons:mzemlickis", - "role": "member", - "username": "mzemlickis" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "data.github_users.users" - ] - }, - { - "index_key": "nanorepublica", - "schema_version": 0, - "attributes": { - "downgrade_on_destroy": null, - "etag": "W/\"db07a7f853410153761267b6045e2715dfd3570732a6dd73ca95debc3c8c893e\"", - "id": "django-commons:nanorepublica", - "role": "member", - "username": "nanorepublica" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "eyJzY2hlbWFfdmVyc2lvbiI6IjAifQ==", - "dependencies": [ - "data.github_users.users" - ] - }, - { - "index_key": "niltonpimentel02", - "schema_version": 0, - "attributes": { - "downgrade_on_destroy": false, - "etag": "W/\"0ad8efea6af66569079cca077fe80dd90f92cb1bda110b859ca1d4f6536b3b7a\"", - "id": "django-commons:niltonpimentel02", - "role": "member", - "username": "niltonpimentel02" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "data.github_users.users" - ] - }, - { - "index_key": "okotdaniel", - "schema_version": 0, - "attributes": { - "downgrade_on_destroy": false, - "etag": "W/\"6b33ef86c3648185881d37bdbe7a5e9bb13a67f127148bcae3549ee956a4b8d7\"", - "id": "django-commons:okotdaniel", - "role": "member", - "username": "okotdaniel" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "data.github_users.users" - ] - }, - { - "index_key": "oliverandrich", - "schema_version": 0, - "attributes": { - "downgrade_on_destroy": false, - "etag": "W/\"2661a7ebb699c4436ef13afd7695d0de3f489ac913a2a3b677a66d02ece9a841\"", - "id": "django-commons:oliverandrich", - "role": "member", - "username": "oliverandrich" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "data.github_users.users" - ] - }, - { - "index_key": "ontowhee", - "schema_version": 0, - "attributes": { - "downgrade_on_destroy": false, - "etag": "W/\"15738a7615fe4145e26cbf354d2f41a39b797ac3dc3adf48d41d8422ff26d0ae\"", - "id": "django-commons:ontowhee", - "role": "member", - "username": "ontowhee" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "data.github_users.users" - ] - }, - { - "index_key": "p-r-a-v-i-n", - "schema_version": 0, - "attributes": { - "downgrade_on_destroy": false, - "etag": "W/\"1f3946f54242711152a8de285cd1de2fb9205f24b900b0fcecf4e080fbe33b9f\"", - "id": "django-commons:p-r-a-v-i-n", - "role": "member", - "username": "p-r-a-v-i-n" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "data.github_users.users" - ] - }, - { - "index_key": "pauloxnet", - "schema_version": 0, - "attributes": { - "downgrade_on_destroy": false, - "etag": "W/\"7484824a1f4860f2c581727dc50084fd7ab0a0d77965d3149cdf13629c68ab5d\"", - "id": "django-commons:pauloxnet", - "role": "member", - "username": "pauloxnet" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "data.github_users.users" - ] - }, - { - "index_key": "peterthomassen", - "schema_version": 0, - "attributes": { - "downgrade_on_destroy": false, - "etag": "W/\"29c7fc91dd66c69a9e501be9f62110d623c81858ffd3822c5c8f43bad17c9594\"", - "id": "django-commons:peterthomassen", - "role": "member", - "username": "peterthomassen" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "data.github_users.users" - ] - }, - { - "index_key": "pfouque", - "schema_version": 0, - "attributes": { - "downgrade_on_destroy": null, - "etag": "W/\"5a3d9b761fba19a193259234d71497c6e5574393707f803767d37c136468a52d\"", - "id": "django-commons:pfouque", - "role": "member", - "username": "pfouque" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "eyJzY2hlbWFfdmVyc2lvbiI6IjAifQ==", - "dependencies": [ - "data.github_users.users" - ] - }, - { - "index_key": "priyapahwa", - "schema_version": 0, - "attributes": { - "downgrade_on_destroy": null, - "etag": "W/\"59e5eb397e76259240de3829e2528ca2f2e71f5e7d464693ce82eafca0320a9c\"", - "id": "django-commons:priyapahwa", - "role": "member", - "username": "priyapahwa" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "eyJzY2hlbWFfdmVyc2lvbiI6IjAifQ==", - "dependencies": [ - "data.github_users.users" - ] - }, - { - "index_key": "rptmat57", - "schema_version": 0, - "attributes": { - "downgrade_on_destroy": false, - "etag": "W/\"4bd0e11d86ffae30dbe102932f029b7d5d4d28ea0e52f0a8cc231f9fd992ad61\"", - "id": "django-commons:rptmat57", - "role": "member", - "username": "rptmat57" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "data.github_users.users" - ] - }, - { - "index_key": "ryancheley", - "schema_version": 0, - "attributes": { - "downgrade_on_destroy": null, - "etag": "W/\"d4801c18e69b247f563e341db73e1e0104be35af7a9404fdb627a0113ecfba38\"", - "id": "django-commons:ryancheley", - "role": "admin", - "username": "ryancheley" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "eyJzY2hlbWFfdmVyc2lvbiI6IjAifQ==", - "dependencies": [ - "data.github_users.users" - ] - }, - { - "index_key": "salty-ivy", - "schema_version": 0, - "attributes": { - "downgrade_on_destroy": false, - "etag": "W/\"f3a25f39cea7946c1cec4618d826cda67a57680b1189a5dbc15c36ff6fc2a27e\"", - "id": "django-commons:salty-ivy", - "role": "member", - "username": "salty-ivy" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "data.github_users.users" - ] - }, - { - "index_key": "sergei-maertens", - "schema_version": 0, - "attributes": { - "downgrade_on_destroy": false, - "etag": "W/\"7445fbd239acb3977a3269ec9034054e2834abd9a5aafa431a28fc34355bd530\"", - "id": "django-commons:sergei-maertens", - "role": "member", - "username": "sergei-maertens" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "data.github_users.users" - ] - }, - { - "index_key": "sobolevn", - "schema_version": 0, - "attributes": { - "downgrade_on_destroy": false, - "etag": "W/\"1040a3f9bd732d2dfd5dbe4c5e909a757a96b3362fd137f92fe1406fbb3cbafd\"", - "id": "django-commons:sobolevn", - "role": "member", - "username": "sobolevn" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "data.github_users.users" - ] - }, - { - "index_key": "testSchilling", - "schema_version": 0, - "attributes": { - "downgrade_on_destroy": null, - "etag": "W/\"70b5261bc95232509ab86b1b4b41f6b00b87b9aeb0de7e6ca619b0ae4108fcdd\"", - "id": "django-commons:testSchilling", - "role": "member", - "username": "testSchilling" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "eyJzY2hlbWFfdmVyc2lvbiI6IjAifQ==", - "dependencies": [ - "data.github_users.users" - ] - }, - { - "index_key": "thibaudcolas", - "schema_version": 0, - "attributes": { - "downgrade_on_destroy": false, - "etag": "W/\"9b3ed8803fe33e93bdf58b4190ea5dbfb0854c32bb58229fe4ee453fe4c1db6b\"", - "id": "django-commons:thibaudcolas", - "role": "member", - "username": "thibaudcolas" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "data.github_users.users" - ] - }, - { - "index_key": "tim-schilling", - "schema_version": 0, - "attributes": { - "downgrade_on_destroy": null, - "etag": "W/\"d08704cb76022b1f2da65825ae4ac61d02b465eefe1f41ebe37f1fe5cdb95d40\"", - "id": "django-commons:tim-schilling", - "role": "admin", - "username": "tim-schilling" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "eyJzY2hlbWFfdmVyc2lvbiI6IjAifQ==", - "dependencies": [ - "data.github_users.users" - ] - }, - { - "index_key": "ulgens", - "schema_version": 0, - "attributes": { - "downgrade_on_destroy": false, - "etag": "W/\"3d515302dfc8d88308043185f1fbc09cb6960f0f9481cb6dc8d59839c08b562f\"", - "id": "django-commons:ulgens", - "role": "member", - "username": "ulgens" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "data.github_users.users" - ] - }, - { - "index_key": "unmonoqueteclea", - "schema_version": 0, - "attributes": { - "downgrade_on_destroy": false, - "etag": "W/\"34cb9ad582585c20fb425f7fe15525432edf8b3487f2be0eed3833ecdf94d660\"", - "id": "django-commons:unmonoqueteclea", - "role": "member", - "username": "unmonoqueteclea" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "data.github_users.users" - ] - }, - { - "index_key": "vacarme", - "schema_version": 0, - "attributes": { - "downgrade_on_destroy": false, - "etag": "W/\"ad55e5ad154339604d255e00138136cbec4af629353e4e2e81c6c21aee82d355\"", - "id": "django-commons:vacarme", - "role": "member", - "username": "vacarme" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "data.github_users.users" - ] - }, - { - "index_key": "vinlawz", - "schema_version": 0, - "attributes": { - "downgrade_on_destroy": false, - "etag": "W/\"eab564fdfeb02b9a5fce96e1cb696297646c3f5947200711c17028761ba6fead\"", - "id": "django-commons:vinlawz", - "role": "member", - "username": "vinlawz" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "data.github_users.users" - ] - }, - { - "index_key": "viscofuse", - "schema_version": 0, - "attributes": { - "downgrade_on_destroy": false, - "etag": "W/\"005abac2f1fc0677f1e0124c5d963fdd519ab9498c42b190146e1c877af3a5b9\"", - "id": "django-commons:viscofuse", - "role": "member", - "username": "viscofuse" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "data.github_users.users" - ] - }, - { - "index_key": "williln", - "schema_version": 0, - "attributes": { - "downgrade_on_destroy": null, - "etag": "W/\"12a0371329c9540348dbf2d5da0292aff07049c0a3efc56e7ebfcfe2a57190d2\"", - "id": "django-commons:williln", - "role": "admin", - "username": "williln" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "eyJzY2hlbWFfdmVyc2lvbiI6IjAifQ==", - "dependencies": [ - "data.github_users.users" - ] - } - ] - }, - { - "mode": "managed", - "type": "github_organization_role_team", - "name": "admins_security_manager", - "provider": "provider[\"registry.terraform.io/integrations/github\"]", - "instances": [ - { - "schema_version": 0, - "attributes": { - "id": "138:admins", - "role_id": 138, - "team_slug": "admins" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.org_teams" - ] - } - ] - }, { "mode": "managed", "type": "github_repository", From 27f6c960a2c93c20c811b1f5d1d5fa7d2dde1f6f Mon Sep 17 00:00:00 2001 From: Daniel M Date: Sun, 21 Dec 2025 09:00:38 -0500 Subject: [PATCH 04/17] GHA --- .../{apply.yml => members-apply.yml} | 11 ++-- .github/workflows/members-plan.yml | 59 +++++++++++++++++++ .github/workflows/repos-apply.yml | 51 ++++++++++++++++ .../workflows/{plan.yml => repos-plan.yml} | 8 +-- 4 files changed, 119 insertions(+), 10 deletions(-) rename .github/workflows/{apply.yml => members-apply.yml} (84%) create mode 100644 .github/workflows/members-plan.yml create mode 100644 .github/workflows/repos-apply.yml rename .github/workflows/{plan.yml => repos-plan.yml} (91%) diff --git a/.github/workflows/apply.yml b/.github/workflows/members-apply.yml similarity index 84% rename from .github/workflows/apply.yml rename to .github/workflows/members-apply.yml index f4a067e..19132f2 100644 --- a/.github/workflows/apply.yml +++ b/.github/workflows/members-apply.yml @@ -5,10 +5,10 @@ on: branches: - main paths: - - 'terraform/production/*.tfvars' - - 'terraform/*.tf' - - '.github/workflows/apply.yml' - - '.github/workflows/plan.yml' + - 'terraform/production/org.tfvars' + - 'terraform/members/*.tf' + - '.github/workflows/members-apply.yml' + - '.github/workflows/members-plan.yml' concurrency: group: terraform-actions @@ -34,12 +34,11 @@ jobs: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} TERRAFORM_ACTIONS_GITHUB_TOKEN: ${{ secrets.TERRAFORM_MANAGEMENT_GITHUB_TOKEN }} with: - path: "terraform" + path: "terraform/members" variables: | github_token = "${{ secrets.TERRAFORM_MANAGEMENT_GITHUB_TOKEN }}" var_file: | terraform/production/org.tfvars - terraform/production/repositories.tfvars - name: Commit changes if: ${{ always() }} diff --git a/.github/workflows/members-plan.yml b/.github/workflows/members-plan.yml new file mode 100644 index 0000000..f6cba81 --- /dev/null +++ b/.github/workflows/members-plan.yml @@ -0,0 +1,59 @@ +name: "Plan org changes and list them in a PR" +on: + pull_request: + branches: + - main + paths: + - 'terraform/production/org.tfvars' + - 'terraform/members/*.tf' + - '.github/workflows/members-apply.yml' + # Do not trigger the plan action when it's been changed since this action has write permissions + +concurrency: + group: terraform-actions + +jobs: + format-terraform-code: + name: "Check Terraform code formatting" + runs-on: ubuntu-latest + permissions: + contents: read + pull-requests: write + steps: + - name: Checkout code + uses: actions/checkout@v6.0.1 + with: + persist-credentials: false + + - name: terraform fmt check + # v2.2.2 + uses: dflook/terraform-fmt-check@10eaa13fa61437aa51be2d12fafe95f152e3512d + with: + path: "terraform/members" + + plan-changes: + name: "Org changes plan" + runs-on: ubuntu-latest + needs: [ "format-terraform-code" ] + permissions: + pull-requests: write + contents: read + steps: + - name: Checkout code + uses: actions/checkout@v6.0.1 + with: + persist-credentials: false + + - name: terraform plan + # v1.44.0 + uses: dflook/terraform-plan@dc251c444763eed5defd065b866874b6343017ca + env: + TERRAFORM_ACTIONS_GITHUB_TOKEN: ${{ secrets.TERRAFORM_MANAGEMENT_GITHUB_TOKEN }} + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + with: + add_github_comment: true + path: "terraform/members" + variables: | + github_token = "${{ secrets.TERRAFORM_MANAGEMENT_GITHUB_TOKEN }}" + var_file: | + terraform/production/org.tfvars diff --git a/.github/workflows/repos-apply.yml b/.github/workflows/repos-apply.yml new file mode 100644 index 0000000..d147ce0 --- /dev/null +++ b/.github/workflows/repos-apply.yml @@ -0,0 +1,51 @@ +name: "Apply org changes" + +on: + push: + branches: + - main + paths: + - 'terraform/production/org.tfvars' + - 'terraform/repos/*.tf' + - '.github/workflows/repos-apply.yml' + - '.github/workflows/repos-plan.yml' + +concurrency: + group: terraform-actions + +jobs: + apply-changes: + name: "Org changes apply" + runs-on: ubuntu-latest + + permissions: + contents: read + pull-requests: write + + steps: + - name: Checkout code + uses: actions/checkout@v6.0.1 + with: + persist-credentials: false + - name: terraform apply + # v1.44.0 + uses: dflook/terraform-apply@8f47d0ad9f3cb9e50fd6b3595c0cb98f00c518df + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + TERRAFORM_ACTIONS_GITHUB_TOKEN: ${{ secrets.TERRAFORM_MANAGEMENT_GITHUB_TOKEN }} + with: + path: "terraform/repos" + variables: | + github_token = "${{ secrets.TERRAFORM_MANAGEMENT_GITHUB_TOKEN }}" + var_file: | + terraform/production/org.tfvars + + - name: Commit changes + if: ${{ always() }} + # v0.10.0 + uses: devops-infra/action-commit-push@8a2d9d73c3f506468129be2e4409e60dbed70357 + with: + github_token: ${{ secrets.TERRAFORM_MANAGEMENT_GITHUB_TOKEN }} + commit_prefix: "[AUTO]" + commit_message: "State changes after apply" + force: false diff --git a/.github/workflows/plan.yml b/.github/workflows/repos-plan.yml similarity index 91% rename from .github/workflows/plan.yml rename to .github/workflows/repos-plan.yml index d61b66d..98d66a0 100644 --- a/.github/workflows/plan.yml +++ b/.github/workflows/repos-plan.yml @@ -5,8 +5,8 @@ on: - main paths: - 'terraform/production/*.tfvars' - - 'terraform/*.tf' - - '.github/workflows/apply.yml' + - 'terraform/repos/*.tf' + - '.github/workflows/repos-apply.yml' # Do not trigger the plan action when it's been changed since this action has write permissions concurrency: @@ -29,7 +29,7 @@ jobs: # v2.2.2 uses: dflook/terraform-fmt-check@10eaa13fa61437aa51be2d12fafe95f152e3512d with: - path: "terraform" + path: "terraform/repos" plan-changes: name: "Org changes plan" @@ -52,7 +52,7 @@ jobs: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: add_github_comment: true - path: "terraform" + path: "terraform/repos" variables: | github_token = "${{ secrets.TERRAFORM_MANAGEMENT_GITHUB_TOKEN }}" var_file: | From 75b91297c1276fd121597f367b0a4632168f8caa Mon Sep 17 00:00:00 2001 From: Daniel M Date: Sun, 21 Dec 2025 09:06:11 -0500 Subject: [PATCH 05/17] wip --- terraform/repos/tfstate.json | 6208 +--------------------------------- terraform/repos/variables.tf | 6 - 2 files changed, 1 insertion(+), 6213 deletions(-) diff --git a/terraform/repos/tfstate.json b/terraform/repos/tfstate.json index 1e7c8d2..f0f895e 100644 --- a/terraform/repos/tfstate.json +++ b/terraform/repos/tfstate.json @@ -1,6207 +1 @@ -{ - "version": 4, - "terraform_version": "1.14.3", - "serial": 786, - "lineage": "425397de-8394-a003-8a6c-bce854d9cc53", - "outputs": { - "invalid_users": { - "value": [], - "type": [ - "list", - "string" - ] - } - }, - "resources": [ - { - "mode": "data", - "type": "github_users", - "name": "users", - "provider": "provider[\"registry.terraform.io/integrations/github\"]", - "instances": [ - { - "schema_version": 0, - "attributes": { - "emails": [ - "me@youngkwang.dev", - "", - "", - "", - "jonathan@stoppani.name", - "wogur981208@gmail.com", - "", - "", - "mogost@aartemyev.ru", - "fernando_cordeiro@live.com", - "", - "", - "", - "", - "", - "", - "", - "", - "zakuijules@live.fr", - "", - "", - "akshay12345vin@gmail.com", - "", - "", - "hello@asherfoa.com", - "", - "jon.c.culver@gmail.com", - "bckohan@gmail.com", - "", - "", - "carlton.gibson@noumenal.es", - "", - "", - "", - "", - "", - "", - "derek.payton@gmail.com", - "felavid@gmail.com", - "elineda@elineda.ovh", - "federicobond@gmail.com", - "fsbraun@gmx.de", - "terzo.giannis@gmail.com", - "scalamoosh@gmail.com", - "", - "", - "", - "wogur981208@gmail.com", - "", - "", - "", - "", - "jnovinger@gmail.com", - "info@johnatanmoran.com", - "", - "josh@joshthomas.dev", - "", - "", - "tom@carrick.eu", - "uriel@corfa.fr", - "me@kytta.dev", - "leogregianin@gmail.com", - "manelclos@gmail.com", - "mk@feinheit.ch", - "", - "mkalioby@mkalioby.com", - "mnazrul.c@gmail.com", - "mzemlickis@gmail.com", - "info@akmiller.co.uk", - "", - "info@okotdaniel.com", - "oliver@andrich.me", - "", - "", - "paolo@melchiorre.org", - "", - "", - "pahwa.priya19@gmail.com", - "mathieu.rampant@gmail.com", - "", - "aman2001mi@gmail.com", - "", - "", - "", - "thibaudcolas@gmail.com", - "schillingt@better-simple.com", - "", - "", - "", - "vinlawz07@gmail.com", - "", - "" - ], - "id": "e228fd6ad0fdac3cb4195558a7556b67", - "logins": [ - "2ykwang", - "Chiemezuo", - "DhavalGojiya", - "FlipperPA", - "GaretJax", - "JaeHyuckSa", - "JohananOppongAmoateng", - "Josephchinedu", - "Mogost", - "MrCordeiro", - "Natim", - "RealOrangeOne", - "Shrikantgiri25", - "SinkuKumar", - "Stormheg", - "TimothyMalahy", - "VeldaKiara", - "Violette-Allotey", - "Zakui", - "adRn-s", - "adamghill", - "akshayvinchurkar", - "amirreza8002", - "andoriyaprashant", - "asherf", - "ayimdomnic", - "bahoo", - "bckohan", - "blingblin-g", - "browniebroke", - "carltongibson", - "cgl", - "clintonb", - "cunla", - "ddabble", - "deronnax", - "devatbosch", - "dmpayton", - "dr-rompecabezas", - "elineda", - "federicobond", - "fsbraun", - "g-nie", - "gav-fyi", - "giovannicimolin", - "input", - "jacklinke", - "JaeHyuckSa", - "jburns6789", - "jcjudkins", - "jezdez", - "jmgutu", - "jnovinger", - "johnatanmoran", - "johnfraney", - "joshuadavidthomas", - "justbackend", - "kevin-brown", - "knyghty", - "korfuri", - "kytta", - "leogregianin", - "manelclos", - "matthiask", - "mihrab34", - "mkalioby", - "mnislam01", - "mzemlickis", - "nanorepublica", - "niltonpimentel02", - "okotdaniel", - "oliverandrich", - "ontowhee", - "p-r-a-v-i-n", - "pauloxnet", - "peterthomassen", - "pfouque", - "priyapahwa", - "rptmat57", - "ryancheley", - "salty-ivy", - "sergei-maertens", - "sobolevn", - "testSchilling", - "thibaudcolas", - "tim-schilling", - "ulgens", - "unmonoqueteclea", - "vacarme", - "vinlawz", - "viscofuse", - "williln" - ], - "node_ids": [ - "MDQ6VXNlcjY4MzI3OTA=", - "MDQ6VXNlcjI5NDcwNTE2", - "MDQ6VXNlcjUzODU2NTU1", - "MDQ6VXNlcjY4MTY0", - "MDQ6VXNlcjg2MjM2", - "U_kgDOBj-X0w", - "MDQ6VXNlcjg4NDExNjE0", - "MDQ6VXNlcjQ3ODUyOTI1", - "MDQ6VXNlcjcyMTk2Mw==", - "MDQ6VXNlcjIwNTk4NTcx", - "MDQ6VXNlcjIyOTQ1Mw==", - "MDQ6VXNlcjY1Mjc0ODk=", - "MDQ6VXNlcjkxMTIyMzE5", - "MDQ6VXNlcjczNzg1Nzk1", - "MDQ6VXNlcjEzODU2NTE1", - "MDQ6VXNlcjUwMjE3Nzgz", - "MDQ6VXNlcjMyNTUyMjk2", - "MDQ6VXNlcjY4ODY2MjQ2", - "MDQ6VXNlcjE3NTQzODE4", - "MDQ6VXNlcjYyOTcxOTk1", - "MDQ6VXNlcjMxNzA0NQ==", - "MDQ6VXNlcjEwNTEwODg5", - "U_kgDOByTH3Q", - "U_kgDOB0B3aQ", - "MDQ6VXNlcjEyNjgwODg=", - "MDQ6VXNlcjYyMTU5MjU=", - "MDQ6VXNlcjQzMDQxNQ==", - "MDQ6VXNlcjI2MzIwNzQ5", - "MDQ6VXNlcjYwMDkwMzkx", - "MDQ6VXNlcjg2MTA0NA==", - "MDQ6VXNlcjY0Njg2", - "MDQ6VXNlcjE2MTUxNTA=", - "MDQ6VXNlcjkxMDUxMA==", - "MDQ6VXNlcjM0MTk3MjE=", - "MDQ6VXNlcjYwNTg3NDU=", - "MDQ6VXNlcjQzOTI3OQ==", - "U_kgDOCkDCgw", - "MDQ6VXNlcjE0OTkxOA==", - "MDQ6VXNlcjc2NzA4NDM=", - "MDQ6VXNlcjI0OTk2MDE2", - "MDQ6VXNlcjEzODQyNg==", - "MDQ6VXNlcjE2OTA0NDc3", - "MDQ6VXNlcjkwOTA0NDM=", - "MDQ6VXNlcjU4NTI5MQ==", - "MDQ6VXNlcjI3ODkzMzg1", - "MDQ6VXNlcjQ2Mjk4Nw==", - "MDQ6VXNlcjczNTU0Njcy", - "U_kgDOBj-X0w", - "U_kgDOBwTNvg", - "MDQ6VXNlcjM0NDE3NTcz", - "MDQ6VXNlcjE2MTA=", - "MDQ6VXNlcjE0NDExNjE=", - "MDQ6VXNlcjEwMzQ5OQ==", - "MDQ6VXNlcjUzNDIxMTM=", - "MDQ6VXNlcjE3Mjg1Mjg=", - "MDQ6VXNlcjE5ODk2MjY3", - "U_kgDOBYTIXg", - "MDQ6VXNlcjE5OTE4NTA=", - "MDQ6VXNlcjM4NzEzNTQ=", - "MDQ6VXNlcjExMjQyNjM=", - "MDQ6VXNlcjY1NjYyNDg=", - "MDQ6VXNlcjE2ODQwNTM=", - "MDQ6VXNlcjQ2MzgzMg==", - "MDQ6VXNlcjI2Mjc=", - "MDQ6VXNlcjM1NTYyMTMx", - "MDQ6VXNlcjEwNDE0MDIw", - "MDQ6VXNlcjI0OTI5NDY2", - "MDQ6VXNlcjQ1NTY5NDQ=", - "MDQ6VXNlcjE5OTc5NDA=", - "MDQ6VXNlcjYzNjA1NDg1", - "MDQ6VXNlcjQxNzQ0MDEy", - "MDQ6VXNlcjc1OA==", - "MDQ6VXNlcjgyNjA3NzIz", - "MDQ6VXNlcjkxMTI1NTQw", - "MDQ6VXNlcjUyMTA5Nw==", - "MDQ6VXNlcjQyNDI2ODM=", - "MDQ6VXNlcjgzMDAwMDE=", - "MDQ6VXNlcjc3MDc1NDQ5", - "MDQ6VXNlcjE0MzI5Mzg4", - "MDQ6VXNlcjk4NTc3Nzk=", - "MDQ6VXNlcjc0NTUzOTUx", - "MDQ6VXNlcjU1MTg1NTA=", - "MDQ6VXNlcjQ2NjAyNzU=", - "U_kgDOCdBRFg", - "MDQ6VXNlcjg3NzU4NQ==", - "MDQ6VXNlcjEyODEyMTU=", - "MDQ6VXNlcjE2NjYzNw==", - "MDQ6VXNlcjQ3MDU3NTc=", - "MDQ6VXNlcjUxMjM3MTE3", - "U_kgDOCxTEHw", - "MDQ6VXNlcjM1MTUwMDAx", - "MDQ6VXNlcjIyODYzMDQ=" - ], - "unknown_logins": [], - "usernames": [ - "2ykwang", - "Chiemezuo", - "DhavalGojiya", - "FlipperPA", - "GaretJax", - "JaeHyuckSa", - "JohananOppongAmoateng", - "Josephchinedu", - "Mogost", - "MrCordeiro", - "Natim", - "RealOrangeOne", - "Shrikantgiri25", - "SinkuKumar", - "Stormheg", - "TimothyMalahy", - "VeldaKiara", - "Violette-Allotey", - "Zakui", - "adRn-s", - "adamghill", - "akshayvinchurkar", - "amirreza8002", - "andoriyaprashant", - "asherf", - "ayimdomnic", - "bahoo", - "bckohan", - "blingblin-g", - "browniebroke", - "carltongibson", - "cgl", - "clintonb", - "cunla", - "ddabble", - "deronnax", - "devatbosch", - "dmpayton", - "dr-rompecabezas", - "elineda", - "federicobond", - "fsbraun", - "g-nie", - "gav-fyi", - "giovannicimolin", - "input", - "jacklinke", - "jaehyuckSa", - "jburns6789", - "jcjudkins", - "jezdez", - "jmgutu", - "jnovinger", - "johnatanmoran", - "johnfraney", - "joshuadavidthomas", - "justbackend", - "kevin-brown", - "knyghty", - "korfuri", - "kytta", - "leogregianin", - "manelclos", - "matthiask", - "mihrab34", - "mkalioby", - "mnislam01", - "mzemlickis", - "nanorepublica", - "niltonpimentel02", - "okotdaniel", - "oliverandrich", - "ontowhee", - "p-r-a-v-i-n", - "pauloxnet", - "peterthomassen", - "pfouque", - "priyapahwa", - "rptmat57", - "ryancheley", - "salty-ivy", - "sergei-maertens", - "sobolevn", - "testSchilling", - "thibaudcolas", - "tim-schilling", - "ulgens", - "unmonoqueteclea", - "vacarme", - "vinlawz", - "viscofuse", - "williln" - ] - }, - "sensitive_attributes": [], - "identity_schema_version": 0 - } - ] - }, - { - "mode": "managed", - "type": "github_repository", - "name": "this", - "provider": "provider[\"registry.terraform.io/integrations/github\"]", - "instances": [ - { - "index_key": ".github", - "schema_version": 1, - "attributes": { - "allow_auto_merge": false, - "allow_merge_commit": false, - "allow_rebase_merge": false, - "allow_squash_merge": true, - "allow_update_branch": true, - "archive_on_destroy": true, - "archived": false, - "auto_init": false, - "default_branch": "main", - "delete_branch_on_merge": true, - "description": "A Special Repository.", - "etag": "W/\"ac350a50d35e38f6a30f8304696ffd37ab0e4fd4e2fe00dfe935644fe8e9633d\"", - "fork": "false", - "full_name": "django-commons/.github", - "git_clone_url": "git://github.com/django-commons/.github.git", - "gitignore_template": null, - "has_discussions": true, - "has_downloads": true, - "has_issues": true, - "has_projects": true, - "has_wiki": false, - "homepage_url": "", - "html_url": "https://github.com/django-commons/.github", - "http_clone_url": "https://github.com/django-commons/.github.git", - "id": ".github", - "ignore_vulnerability_alerts_during_read": null, - "is_template": false, - "license_template": null, - "merge_commit_message": "PR_TITLE", - "merge_commit_title": "MERGE_MESSAGE", - "name": ".github", - "node_id": "R_kgDOLkyRSQ", - "pages": [], - "primary_language": "", - "private": false, - "repo_id": 776769865, - "security_and_analysis": [ - { - "advanced_security": [], - "code_security": [], - "secret_scanning": [ - { - "status": "disabled" - } - ], - "secret_scanning_ai_detection": [], - "secret_scanning_non_provider_patterns": [], - "secret_scanning_push_protection": [ - { - "status": "disabled" - } - ] - } - ], - "source_owner": "", - "source_repo": "", - "squash_merge_commit_message": "COMMIT_MESSAGES", - "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", - "ssh_clone_url": "git@github.com:django-commons/.github.git", - "svn_url": "https://github.com/django-commons/.github", - "template": [], - "topics": [], - "visibility": "public", - "vulnerability_alerts": true, - "web_commit_signoff_required": false - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "eyJzY2hlbWFfdmVyc2lvbiI6IjEifQ==" - }, - { - "index_key": "axe-selenium-python", - "schema_version": 1, - "attributes": { - "allow_auto_merge": false, - "allow_merge_commit": false, - "allow_rebase_merge": true, - "allow_squash_merge": true, - "allow_update_branch": true, - "archive_on_destroy": true, - "archived": false, - "auto_init": false, - "default_branch": "main", - "delete_branch_on_merge": true, - "description": "Automated web accessibility testing with Axe and Selenium", - "etag": "W/\"5f5751e289969fc1b5b5277a03c7a06cb542aeb68a73339b5917c38701545b6d\"", - "fork": "false", - "full_name": "django-commons/axe-selenium-python", - "git_clone_url": "git://github.com/django-commons/axe-selenium-python.git", - "gitignore_template": null, - "has_discussions": true, - "has_downloads": true, - "has_issues": true, - "has_projects": true, - "has_wiki": false, - "homepage_url": "", - "html_url": "https://github.com/django-commons/axe-selenium-python", - "http_clone_url": "https://github.com/django-commons/axe-selenium-python.git", - "id": "axe-selenium-python", - "ignore_vulnerability_alerts_during_read": null, - "is_template": false, - "license_template": null, - "merge_commit_message": "PR_TITLE", - "merge_commit_title": "MERGE_MESSAGE", - "name": "axe-selenium-python", - "node_id": "MDEwOlJlcG9zaXRvcnk5NDEyOTM2NA==", - "pages": [], - "primary_language": "Python", - "private": false, - "repo_id": 94129364, - "security_and_analysis": [ - { - "advanced_security": [], - "code_security": [], - "secret_scanning": [ - { - "status": "disabled" - } - ], - "secret_scanning_ai_detection": [], - "secret_scanning_non_provider_patterns": [], - "secret_scanning_push_protection": [ - { - "status": "disabled" - } - ] - } - ], - "source_owner": "", - "source_repo": "", - "squash_merge_commit_message": "COMMIT_MESSAGES", - "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", - "ssh_clone_url": "git@github.com:django-commons/axe-selenium-python.git", - "svn_url": "https://github.com/django-commons/axe-selenium-python", - "template": [], - "topics": [], - "visibility": "public", - "vulnerability_alerts": true, - "web_commit_signoff_required": false - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "eyJzY2hlbWFfdmVyc2lvbiI6IjEifQ==" - }, - { - "index_key": "best-practices", - "schema_version": 1, - "attributes": { - "allow_auto_merge": false, - "allow_merge_commit": false, - "allow_rebase_merge": false, - "allow_squash_merge": true, - "allow_update_branch": true, - "archive_on_destroy": true, - "archived": false, - "auto_init": false, - "default_branch": "main", - "delete_branch_on_merge": true, - "description": "A sample project with best practices for Django Commons projects.", - "etag": "W/\"9214c62d209a20c93aa33adb10c9ce6d50e1ff3b9d9adcc0dc4eb21bef311f6a\"", - "fork": "false", - "full_name": "django-commons/best-practices", - "git_clone_url": "git://github.com/django-commons/best-practices.git", - "gitignore_template": null, - "has_discussions": true, - "has_downloads": true, - "has_issues": true, - "has_projects": true, - "has_wiki": false, - "homepage_url": "", - "html_url": "https://github.com/django-commons/best-practices", - "http_clone_url": "https://github.com/django-commons/best-practices.git", - "id": "best-practices", - "ignore_vulnerability_alerts_during_read": null, - "is_template": false, - "license_template": null, - "merge_commit_message": "PR_TITLE", - "merge_commit_title": "MERGE_MESSAGE", - "name": "best-practices", - "node_id": "R_kgDOLkANrg", - "pages": [], - "primary_language": "Python", - "private": false, - "repo_id": 775949742, - "security_and_analysis": [ - { - "advanced_security": [], - "code_security": [], - "secret_scanning": [ - { - "status": "enabled" - } - ], - "secret_scanning_ai_detection": [], - "secret_scanning_non_provider_patterns": [], - "secret_scanning_push_protection": [ - { - "status": "disabled" - } - ] - } - ], - "source_owner": "", - "source_repo": "", - "squash_merge_commit_message": "COMMIT_MESSAGES", - "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", - "ssh_clone_url": "git@github.com:django-commons/best-practices.git", - "svn_url": "https://github.com/django-commons/best-practices", - "template": [], - "topics": [ - "django", - "python", - "template" - ], - "visibility": "public", - "vulnerability_alerts": true, - "web_commit_signoff_required": false - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "eyJzY2hlbWFfdmVyc2lvbiI6IjEifQ==" - }, - { - "index_key": "controls", - "schema_version": 1, - "attributes": { - "allow_auto_merge": false, - "allow_merge_commit": true, - "allow_rebase_merge": true, - "allow_squash_merge": true, - "allow_update_branch": true, - "archive_on_destroy": true, - "archived": false, - "auto_init": false, - "default_branch": "main", - "delete_branch_on_merge": true, - "description": "The controls for managing Django Commons projects", - "etag": "W/\"f084475c86efee52b3ea6b4a718a753d81a2b481a6d5c14570c6b7c58391d2c5\"", - "fork": "false", - "full_name": "django-commons/controls", - "git_clone_url": "git://github.com/django-commons/controls.git", - "gitignore_template": null, - "has_discussions": true, - "has_downloads": true, - "has_issues": true, - "has_projects": true, - "has_wiki": false, - "homepage_url": "", - "html_url": "https://github.com/django-commons/controls", - "http_clone_url": "https://github.com/django-commons/controls.git", - "id": "controls", - "ignore_vulnerability_alerts_during_read": null, - "is_template": false, - "license_template": null, - "merge_commit_message": "PR_TITLE", - "merge_commit_title": "MERGE_MESSAGE", - "name": "controls", - "node_id": "R_kgDOLkDK8g", - "pages": [], - "primary_language": "", - "private": false, - "repo_id": 775998194, - "security_and_analysis": [ - { - "advanced_security": [], - "code_security": [], - "secret_scanning": [ - { - "status": "disabled" - } - ], - "secret_scanning_ai_detection": [], - "secret_scanning_non_provider_patterns": [], - "secret_scanning_push_protection": [ - { - "status": "disabled" - } - ] - } - ], - "source_owner": "", - "source_repo": "", - "squash_merge_commit_message": "COMMIT_MESSAGES", - "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", - "ssh_clone_url": "git@github.com:django-commons/controls.git", - "svn_url": "https://github.com/django-commons/controls", - "template": [], - "topics": [], - "visibility": "public", - "vulnerability_alerts": true, - "web_commit_signoff_required": false - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "eyJzY2hlbWFfdmVyc2lvbiI6IjEifQ==" - }, - { - "index_key": "django-click", - "schema_version": 1, - "attributes": { - "allow_auto_merge": false, - "allow_merge_commit": false, - "allow_rebase_merge": true, - "allow_squash_merge": true, - "allow_update_branch": true, - "archive_on_destroy": true, - "archived": false, - "auto_init": false, - "default_branch": "master", - "delete_branch_on_merge": true, - "description": "Write Django management command using the click CLI library", - "etag": "W/\"b2956ce27c5a45c64f4b9dc8783830d099eef2191a8f2ed4abc57c9bd989df41\"", - "fork": "false", - "full_name": "django-commons/django-click", - "git_clone_url": "git://github.com/django-commons/django-click.git", - "gitignore_template": null, - "has_discussions": false, - "has_downloads": true, - "has_issues": true, - "has_projects": true, - "has_wiki": false, - "homepage_url": "", - "html_url": "https://github.com/django-commons/django-click", - "http_clone_url": "https://github.com/django-commons/django-click.git", - "id": "django-click", - "ignore_vulnerability_alerts_during_read": null, - "is_template": false, - "license_template": null, - "merge_commit_message": "PR_TITLE", - "merge_commit_title": "MERGE_MESSAGE", - "name": "django-click", - "node_id": "MDEwOlJlcG9zaXRvcnk0MjI3NDc5Nw==", - "pages": [], - "primary_language": "Python", - "private": false, - "repo_id": 42274797, - "security_and_analysis": [ - { - "advanced_security": [], - "code_security": [], - "secret_scanning": [ - { - "status": "disabled" - } - ], - "secret_scanning_ai_detection": [], - "secret_scanning_non_provider_patterns": [], - "secret_scanning_push_protection": [ - { - "status": "disabled" - } - ] - } - ], - "source_owner": "", - "source_repo": "", - "squash_merge_commit_message": "COMMIT_MESSAGES", - "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", - "ssh_clone_url": "git@github.com:django-commons/django-click.git", - "svn_url": "https://github.com/django-commons/django-click", - "template": [], - "topics": [], - "visibility": "public", - "vulnerability_alerts": true, - "web_commit_signoff_required": false - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "eyJzY2hlbWFfdmVyc2lvbiI6IjEifQ==" - }, - { - "index_key": "django-cookie-consent", - "schema_version": 1, - "attributes": { - "allow_auto_merge": false, - "allow_merge_commit": true, - "allow_rebase_merge": false, - "allow_squash_merge": true, - "allow_update_branch": true, - "archive_on_destroy": true, - "archived": false, - "auto_init": false, - "default_branch": "master", - "delete_branch_on_merge": true, - "description": "Reusable application for managing various cookies and visitors consent for their use in Django project.", - "etag": "W/\"173aa1aa4b557aaf0df43a904e869e9ca939199b50a6297b2d882dc9f0047c9c\"", - "fork": "false", - "full_name": "django-commons/django-cookie-consent", - "git_clone_url": "git://github.com/django-commons/django-cookie-consent.git", - "gitignore_template": null, - "has_discussions": false, - "has_downloads": true, - "has_issues": true, - "has_projects": true, - "has_wiki": false, - "homepage_url": "https://django-cookie-consent.readthedocs.org/en/latest/", - "html_url": "https://github.com/django-commons/django-cookie-consent", - "http_clone_url": "https://github.com/django-commons/django-cookie-consent.git", - "id": "django-cookie-consent", - "ignore_vulnerability_alerts_during_read": null, - "is_template": false, - "license_template": null, - "merge_commit_message": "PR_TITLE", - "merge_commit_title": "MERGE_MESSAGE", - "name": "django-cookie-consent", - "node_id": "MDEwOlJlcG9zaXRvcnkxMDU1NDY2Ng==", - "pages": [], - "primary_language": "Python", - "private": false, - "repo_id": 10554666, - "security_and_analysis": [ - { - "advanced_security": [], - "code_security": [], - "secret_scanning": [ - { - "status": "disabled" - } - ], - "secret_scanning_ai_detection": [], - "secret_scanning_non_provider_patterns": [], - "secret_scanning_push_protection": [ - { - "status": "disabled" - } - ] - } - ], - "source_owner": "", - "source_repo": "", - "squash_merge_commit_message": "COMMIT_MESSAGES", - "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", - "ssh_clone_url": "git@github.com:django-commons/django-cookie-consent.git", - "svn_url": "https://github.com/django-commons/django-cookie-consent", - "template": [], - "topics": [], - "visibility": "public", - "vulnerability_alerts": true, - "web_commit_signoff_required": false - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "eyJzY2hlbWFfdmVyc2lvbiI6IjEifQ==" - }, - { - "index_key": "django-debug-toolbar", - "schema_version": 1, - "attributes": { - "allow_auto_merge": true, - "allow_merge_commit": true, - "allow_rebase_merge": true, - "allow_squash_merge": true, - "allow_update_branch": true, - "archive_on_destroy": true, - "archived": false, - "auto_init": false, - "default_branch": "main", - "delete_branch_on_merge": true, - "description": "A configurable set of panels that display various debug information about the current request/response.", - "etag": "W/\"512845b0e7d9989cb568d0184d5a6a357e17fc929ae4a7d52386073745c6537f\"", - "fork": "false", - "full_name": "django-commons/django-debug-toolbar", - "git_clone_url": "git://github.com/django-commons/django-debug-toolbar.git", - "gitignore_template": null, - "has_discussions": true, - "has_downloads": true, - "has_issues": true, - "has_projects": true, - "has_wiki": true, - "homepage_url": "https://django-debug-toolbar.readthedocs.io", - "html_url": "https://github.com/django-commons/django-debug-toolbar", - "http_clone_url": "https://github.com/django-commons/django-debug-toolbar.git", - "id": "django-debug-toolbar", - "ignore_vulnerability_alerts_during_read": null, - "is_template": false, - "license_template": null, - "merge_commit_message": "PR_TITLE", - "merge_commit_title": "MERGE_MESSAGE", - "name": "django-debug-toolbar", - "node_id": "MDEwOlJlcG9zaXRvcnk0NjkzOQ==", - "pages": [], - "primary_language": "Python", - "private": false, - "repo_id": 46939, - "security_and_analysis": [ - { - "advanced_security": [], - "code_security": [], - "secret_scanning": [ - { - "status": "enabled" - } - ], - "secret_scanning_ai_detection": [], - "secret_scanning_non_provider_patterns": [], - "secret_scanning_push_protection": [ - { - "status": "enabled" - } - ] - } - ], - "source_owner": "", - "source_repo": "", - "squash_merge_commit_message": "COMMIT_MESSAGES", - "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", - "ssh_clone_url": "git@github.com:django-commons/django-debug-toolbar.git", - "svn_url": "https://github.com/django-commons/django-debug-toolbar", - "template": [], - "topics": [], - "visibility": "public", - "vulnerability_alerts": true, - "web_commit_signoff_required": false - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "eyJzY2hlbWFfdmVyc2lvbiI6IjEifQ==" - }, - { - "index_key": "django-enum", - "schema_version": 1, - "attributes": { - "allow_auto_merge": false, - "allow_merge_commit": true, - "allow_rebase_merge": true, - "allow_squash_merge": true, - "allow_update_branch": true, - "archive_on_destroy": true, - "archived": false, - "auto_init": false, - "default_branch": "main", - "delete_branch_on_merge": true, - "description": "Full and natural support for enumerations as Django model fields.", - "etag": "W/\"9ecb31a9c857c9db01f236ed860ebfc448e480a5375423f6557fc8a04198a174\"", - "fork": "false", - "full_name": "django-commons/django-enum", - "git_clone_url": "git://github.com/django-commons/django-enum.git", - "gitignore_template": null, - "has_discussions": true, - "has_downloads": true, - "has_issues": true, - "has_projects": true, - "has_wiki": false, - "homepage_url": "https://django-enum.rtfd.io", - "html_url": "https://github.com/django-commons/django-enum", - "http_clone_url": "https://github.com/django-commons/django-enum.git", - "id": "django-enum", - "ignore_vulnerability_alerts_during_read": null, - "is_template": false, - "license_template": null, - "merge_commit_message": "PR_TITLE", - "merge_commit_title": "MERGE_MESSAGE", - "name": "django-enum", - "node_id": "R_kgDOHrCyiQ", - "pages": [], - "primary_language": "Python", - "private": false, - "repo_id": 514896521, - "security_and_analysis": [ - { - "advanced_security": [], - "code_security": [], - "secret_scanning": [ - { - "status": "disabled" - } - ], - "secret_scanning_ai_detection": [], - "secret_scanning_non_provider_patterns": [], - "secret_scanning_push_protection": [ - { - "status": "disabled" - } - ] - } - ], - "source_owner": "", - "source_repo": "", - "squash_merge_commit_message": "COMMIT_MESSAGES", - "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", - "ssh_clone_url": "git@github.com:django-commons/django-enum.git", - "svn_url": "https://github.com/django-commons/django-enum", - "template": [], - "topics": [ - "bitfield", - "bitfields", - "bitmask", - "database", - "databases", - "defines", - "django", - "enum", - "enumeration", - "enums", - "fields", - "flag", - "flags", - "mask", - "modelfields" - ], - "visibility": "public", - "vulnerability_alerts": true, - "web_commit_signoff_required": false - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "eyJzY2hlbWFfdmVyc2lvbiI6IjEifQ==" - }, - { - "index_key": "django-fsm-2", - "schema_version": 1, - "attributes": { - "allow_auto_merge": false, - "allow_merge_commit": false, - "allow_rebase_merge": true, - "allow_squash_merge": true, - "allow_update_branch": true, - "archive_on_destroy": true, - "archived": false, - "auto_init": false, - "default_branch": "main", - "delete_branch_on_merge": true, - "description": "Django friendly finite state machine support", - "etag": "W/\"ed335fedfda99c81029ffc7d929caf724136fb8efde6b001c68ef46450cb555b\"", - "fork": "false", - "full_name": "django-commons/django-fsm-2", - "git_clone_url": "git://github.com/django-commons/django-fsm-2.git", - "gitignore_template": null, - "has_discussions": true, - "has_downloads": true, - "has_issues": true, - "has_projects": true, - "has_wiki": false, - "homepage_url": "https://github.com/django-commons/django-fsm-2", - "html_url": "https://github.com/django-commons/django-fsm-2", - "http_clone_url": "https://github.com/django-commons/django-fsm-2.git", - "id": "django-fsm-2", - "ignore_vulnerability_alerts_during_read": null, - "is_template": false, - "license_template": null, - "merge_commit_message": "BLANK", - "merge_commit_title": "PR_TITLE", - "name": "django-fsm-2", - "node_id": "R_kgDOIRc3Iw", - "pages": [], - "primary_language": "Python", - "private": false, - "repo_id": 555169571, - "security_and_analysis": [ - { - "advanced_security": [], - "code_security": [], - "secret_scanning": [ - { - "status": "disabled" - } - ], - "secret_scanning_ai_detection": [], - "secret_scanning_non_provider_patterns": [], - "secret_scanning_push_protection": [ - { - "status": "disabled" - } - ] - } - ], - "source_owner": "", - "source_repo": "", - "squash_merge_commit_message": "COMMIT_MESSAGES", - "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", - "ssh_clone_url": "git@github.com:django-commons/django-fsm-2.git", - "svn_url": "https://github.com/django-commons/django-fsm-2", - "template": [], - "topics": [], - "visibility": "public", - "vulnerability_alerts": true, - "web_commit_signoff_required": false - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "eyJzY2hlbWFfdmVyc2lvbiI6IjEifQ==" - }, - { - "index_key": "django-prometheus", - "schema_version": 1, - "attributes": { - "allow_auto_merge": false, - "allow_merge_commit": true, - "allow_rebase_merge": true, - "allow_squash_merge": true, - "allow_update_branch": true, - "archive_on_destroy": true, - "archived": false, - "auto_init": false, - "default_branch": "master", - "delete_branch_on_merge": true, - "description": "Export Django monitoring metrics for Prometheus.io", - "etag": "W/\"a65db355096d3b5a8aba2f7ef345a015ab649a6ec372ff31266ecc368534a210\"", - "fork": "false", - "full_name": "django-commons/django-prometheus", - "git_clone_url": "git://github.com/django-commons/django-prometheus.git", - "gitignore_template": null, - "has_discussions": false, - "has_downloads": true, - "has_issues": true, - "has_projects": true, - "has_wiki": false, - "homepage_url": "", - "html_url": "https://github.com/django-commons/django-prometheus", - "http_clone_url": "https://github.com/django-commons/django-prometheus.git", - "id": "django-prometheus", - "ignore_vulnerability_alerts_during_read": null, - "is_template": false, - "license_template": null, - "merge_commit_message": "PR_TITLE", - "merge_commit_title": "MERGE_MESSAGE", - "name": "django-prometheus", - "node_id": "MDEwOlJlcG9zaXRvcnkzMzQzMzA5Mg==", - "pages": [], - "primary_language": "Python", - "private": false, - "repo_id": 33433092, - "security_and_analysis": [ - { - "advanced_security": [], - "code_security": [], - "secret_scanning": [ - { - "status": "disabled" - } - ], - "secret_scanning_ai_detection": [], - "secret_scanning_non_provider_patterns": [], - "secret_scanning_push_protection": [ - { - "status": "disabled" - } - ] - } - ], - "source_owner": "", - "source_repo": "", - "squash_merge_commit_message": "COMMIT_MESSAGES", - "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", - "ssh_clone_url": "git@github.com:django-commons/django-prometheus.git", - "svn_url": "https://github.com/django-commons/django-prometheus", - "template": [], - "topics": [ - "django", - "django-prometheus", - "exported-metrics", - "metrics", - "monitoring", - "prometheus", - "prometheus-client", - "python" - ], - "visibility": "public", - "vulnerability_alerts": true, - "web_commit_signoff_required": false - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "eyJzY2hlbWFfdmVyc2lvbiI6IjEifQ==" - }, - { - "index_key": "django-simple-history", - "schema_version": 1, - "attributes": { - "allow_auto_merge": false, - "allow_merge_commit": true, - "allow_rebase_merge": false, - "allow_squash_merge": true, - "allow_update_branch": true, - "archive_on_destroy": true, - "archived": false, - "auto_init": false, - "default_branch": "master", - "delete_branch_on_merge": true, - "description": "Store model history and view/revert changes from admin site.", - "etag": "W/\"c38a59315e43a0cd63abcf8311fef8e2c3f41dd754b3c9ed4afc52e20f8cc747\"", - "fork": "false", - "full_name": "django-commons/django-simple-history", - "git_clone_url": "git://github.com/django-commons/django-simple-history.git", - "gitignore_template": null, - "has_discussions": true, - "has_downloads": true, - "has_issues": true, - "has_projects": true, - "has_wiki": true, - "homepage_url": "https://django-simple-history.readthedocs.org", - "html_url": "https://github.com/django-commons/django-simple-history", - "http_clone_url": "https://github.com/django-commons/django-simple-history.git", - "id": "django-simple-history", - "ignore_vulnerability_alerts_during_read": null, - "is_template": false, - "license_template": null, - "merge_commit_message": "PR_TITLE", - "merge_commit_title": "MERGE_MESSAGE", - "name": "django-simple-history", - "node_id": "MDEwOlJlcG9zaXRvcnkxNDQ3ODgy", - "pages": [], - "primary_language": "Python", - "private": false, - "repo_id": 1447882, - "security_and_analysis": [ - { - "advanced_security": [], - "code_security": [], - "secret_scanning": [ - { - "status": "enabled" - } - ], - "secret_scanning_ai_detection": [], - "secret_scanning_non_provider_patterns": [], - "secret_scanning_push_protection": [ - { - "status": "enabled" - } - ] - } - ], - "source_owner": "", - "source_repo": "", - "squash_merge_commit_message": "COMMIT_MESSAGES", - "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", - "ssh_clone_url": "git@github.com:django-commons/django-simple-history.git", - "svn_url": "https://github.com/django-commons/django-simple-history", - "template": [], - "topics": [], - "visibility": "public", - "vulnerability_alerts": true, - "web_commit_signoff_required": false - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "eyJzY2hlbWFfdmVyc2lvbiI6IjEifQ==" - }, - { - "index_key": "django-tailwind-cli", - "schema_version": 1, - "attributes": { - "allow_auto_merge": false, - "allow_merge_commit": false, - "allow_rebase_merge": false, - "allow_squash_merge": true, - "allow_update_branch": true, - "archive_on_destroy": true, - "archived": false, - "auto_init": false, - "default_branch": "main", - "delete_branch_on_merge": true, - "description": "Django and Tailwind integration based on the prebuilt Tailwind CSS CLI.", - "etag": "W/\"9ef828fcf454a0388b78ae41a780fc5462526844acbedfe8011b9fc2dae31eaf\"", - "fork": "false", - "full_name": "django-commons/django-tailwind-cli", - "git_clone_url": "git://github.com/django-commons/django-tailwind-cli.git", - "gitignore_template": null, - "has_discussions": true, - "has_downloads": true, - "has_issues": true, - "has_projects": true, - "has_wiki": false, - "homepage_url": "https://django-tailwind-cli.rtfd.io/", - "html_url": "https://github.com/django-commons/django-tailwind-cli", - "http_clone_url": "https://github.com/django-commons/django-tailwind-cli.git", - "id": "django-tailwind-cli", - "ignore_vulnerability_alerts_during_read": null, - "is_template": false, - "license_template": null, - "merge_commit_message": "PR_TITLE", - "merge_commit_title": "MERGE_MESSAGE", - "name": "django-tailwind-cli", - "node_id": "R_kgDOISkAkA", - "pages": [], - "primary_language": "Python", - "private": false, - "repo_id": 556335248, - "security_and_analysis": [ - { - "advanced_security": [], - "code_security": [], - "secret_scanning": [ - { - "status": "disabled" - } - ], - "secret_scanning_ai_detection": [], - "secret_scanning_non_provider_patterns": [], - "secret_scanning_push_protection": [ - { - "status": "disabled" - } - ] - } - ], - "source_owner": "", - "source_repo": "", - "squash_merge_commit_message": "COMMIT_MESSAGES", - "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", - "ssh_clone_url": "git@github.com:django-commons/django-tailwind-cli.git", - "svn_url": "https://github.com/django-commons/django-tailwind-cli", - "template": [], - "topics": [ - "django", - "django-application", - "python", - "tailwind", - "tailwind-css", - "tailwindcss" - ], - "visibility": "public", - "vulnerability_alerts": true, - "web_commit_signoff_required": false - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "eyJzY2hlbWFfdmVyc2lvbiI6IjEifQ==" - }, - { - "index_key": "django-tasks-scheduler", - "schema_version": 1, - "attributes": { - "allow_auto_merge": false, - "allow_merge_commit": true, - "allow_rebase_merge": false, - "allow_squash_merge": true, - "allow_update_branch": true, - "archive_on_destroy": true, - "archived": false, - "auto_init": false, - "default_branch": "master", - "delete_branch_on_merge": true, - "description": "Schedule async tasks using redis protocol. Redis/ValKey/Dragonfly or any broker using the redis protocol can be used.", - "etag": "W/\"b5bd59ac3c52adf18f6a08254529fcd527478b8f802ba77609409b8fa9073746\"", - "fork": "false", - "full_name": "django-commons/django-tasks-scheduler", - "git_clone_url": "git://github.com/django-commons/django-tasks-scheduler.git", - "gitignore_template": null, - "has_discussions": true, - "has_downloads": true, - "has_issues": true, - "has_projects": true, - "has_wiki": false, - "homepage_url": "https://django-tasks-scheduler.readthedocs.io/", - "html_url": "https://github.com/django-commons/django-tasks-scheduler", - "http_clone_url": "https://github.com/django-commons/django-tasks-scheduler.git", - "id": "django-tasks-scheduler", - "ignore_vulnerability_alerts_during_read": null, - "is_template": false, - "license_template": null, - "merge_commit_message": "PR_TITLE", - "merge_commit_title": "MERGE_MESSAGE", - "name": "django-tasks-scheduler", - "node_id": "R_kgDOJzK5Kg", - "pages": [], - "primary_language": "Python", - "private": false, - "repo_id": 657635626, - "security_and_analysis": [ - { - "advanced_security": [], - "code_security": [], - "secret_scanning": [ - { - "status": "disabled" - } - ], - "secret_scanning_ai_detection": [], - "secret_scanning_non_provider_patterns": [], - "secret_scanning_push_protection": [ - { - "status": "disabled" - } - ] - } - ], - "source_owner": "", - "source_repo": "", - "squash_merge_commit_message": "COMMIT_MESSAGES", - "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", - "ssh_clone_url": "git@github.com:django-commons/django-tasks-scheduler.git", - "svn_url": "https://github.com/django-commons/django-tasks-scheduler", - "template": [], - "topics": [ - "background-jobs", - "django", - "django-application", - "job-queue", - "python", - "redis", - "scheduled-jobs", - "scheduled-tasks", - "task-queue", - "valkey" - ], - "visibility": "public", - "vulnerability_alerts": true, - "web_commit_signoff_required": false - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "eyJzY2hlbWFfdmVyc2lvbiI6IjEifQ==" - }, - { - "index_key": "django-typer", - "schema_version": 1, - "attributes": { - "allow_auto_merge": false, - "allow_merge_commit": true, - "allow_rebase_merge": true, - "allow_squash_merge": true, - "allow_update_branch": true, - "archive_on_destroy": true, - "archived": false, - "auto_init": false, - "default_branch": "main", - "delete_branch_on_merge": true, - "description": "Use Typer (type hints) to define the interface for your Django management commands.", - "etag": "W/\"c8018a77dc281c8eb7be7de3e9a81f0127b45718dc019ac878c5ea242b04b0f6\"", - "fork": "false", - "full_name": "django-commons/django-typer", - "git_clone_url": "git://github.com/django-commons/django-typer.git", - "gitignore_template": null, - "has_discussions": true, - "has_downloads": true, - "has_issues": true, - "has_projects": true, - "has_wiki": true, - "homepage_url": "https://django-typer.rtfd.io", - "html_url": "https://github.com/django-commons/django-typer", - "http_clone_url": "https://github.com/django-commons/django-typer.git", - "id": "django-typer", - "ignore_vulnerability_alerts_during_read": null, - "is_template": false, - "license_template": null, - "merge_commit_message": "PR_TITLE", - "merge_commit_title": "MERGE_MESSAGE", - "name": "django-typer", - "node_id": "R_kgDOKkMk_Q", - "pages": [], - "primary_language": "Python", - "private": false, - "repo_id": 709043453, - "security_and_analysis": [ - { - "advanced_security": [], - "code_security": [], - "secret_scanning": [ - { - "status": "enabled" - } - ], - "secret_scanning_ai_detection": [], - "secret_scanning_non_provider_patterns": [], - "secret_scanning_push_protection": [ - { - "status": "enabled" - } - ] - } - ], - "source_owner": "", - "source_repo": "", - "squash_merge_commit_message": "COMMIT_MESSAGES", - "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", - "ssh_clone_url": "git@github.com:django-commons/django-typer.git", - "svn_url": "https://github.com/django-commons/django-typer", - "template": [], - "topics": [ - "admin", - "cli", - "click", - "command-line", - "commands", - "django", - "management", - "python", - "python3", - "shell", - "terminal", - "typehints", - "typer" - ], - "visibility": "public", - "vulnerability_alerts": true, - "web_commit_signoff_required": false - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "eyJzY2hlbWFfdmVyc2lvbiI6IjEifQ==" - }, - { - "index_key": "django-valkey", - "schema_version": 1, - "attributes": { - "allow_auto_merge": true, - "allow_merge_commit": true, - "allow_rebase_merge": true, - "allow_squash_merge": true, - "allow_update_branch": true, - "archive_on_destroy": true, - "archived": false, - "auto_init": false, - "default_branch": "main", - "delete_branch_on_merge": false, - "description": "a Valkey backend for django", - "etag": "W/\"42358337689048e797234d896b3c33c2c864390ebfbd58bfceefbc2496a9e141\"", - "fork": "false", - "full_name": "django-commons/django-valkey", - "git_clone_url": "git://github.com/django-commons/django-valkey.git", - "gitignore_template": null, - "has_discussions": true, - "has_downloads": true, - "has_issues": true, - "has_projects": true, - "has_wiki": false, - "homepage_url": "https://django-valkey.readthedocs.io/en/latest/", - "html_url": "https://github.com/django-commons/django-valkey", - "http_clone_url": "https://github.com/django-commons/django-valkey.git", - "id": "django-valkey", - "ignore_vulnerability_alerts_during_read": null, - "is_template": false, - "license_template": null, - "merge_commit_message": "PR_TITLE", - "merge_commit_title": "MERGE_MESSAGE", - "name": "django-valkey", - "node_id": "R_kgDOMsI4lw", - "pages": [], - "primary_language": "Python", - "private": false, - "repo_id": 851589271, - "security_and_analysis": [ - { - "advanced_security": [], - "code_security": [], - "secret_scanning": [ - { - "status": "disabled" - } - ], - "secret_scanning_ai_detection": [], - "secret_scanning_non_provider_patterns": [], - "secret_scanning_push_protection": [ - { - "status": "disabled" - } - ] - } - ], - "source_owner": "", - "source_repo": "", - "squash_merge_commit_message": "COMMIT_MESSAGES", - "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", - "ssh_clone_url": "git@github.com:django-commons/django-valkey.git", - "svn_url": "https://github.com/django-commons/django-valkey", - "template": [], - "topics": [ - "backend", - "cache", - "database", - "django", - "python", - "session", - "valkey", - "valkey-client" - ], - "visibility": "public", - "vulnerability_alerts": true, - "web_commit_signoff_required": false - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "eyJzY2hlbWFfdmVyc2lvbiI6IjEifQ==" - }, - { - "index_key": "drf-excel", - "schema_version": 1, - "attributes": { - "allow_auto_merge": false, - "allow_merge_commit": true, - "allow_rebase_merge": true, - "allow_squash_merge": true, - "allow_update_branch": true, - "archive_on_destroy": true, - "archived": false, - "auto_init": false, - "default_branch": "main", - "delete_branch_on_merge": true, - "description": "An XLSX spreadsheet renderer for Django REST Framework.", - "etag": "W/\"0a684b721c621ee7ab85891c12177aba97464c7462ba6b0aaccbdbd33ab98289\"", - "fork": "false", - "full_name": "django-commons/drf-excel", - "git_clone_url": "git://github.com/django-commons/drf-excel.git", - "gitignore_template": null, - "has_discussions": false, - "has_downloads": true, - "has_issues": true, - "has_projects": true, - "has_wiki": false, - "homepage_url": "", - "html_url": "https://github.com/django-commons/drf-excel", - "http_clone_url": "https://github.com/django-commons/drf-excel.git", - "id": "drf-excel", - "ignore_vulnerability_alerts_during_read": null, - "is_template": false, - "license_template": null, - "merge_commit_message": "PR_TITLE", - "merge_commit_title": "MERGE_MESSAGE", - "name": "drf-excel", - "node_id": "MDEwOlJlcG9zaXRvcnkxMDU2ODYwODA=", - "pages": [], - "primary_language": "Python", - "private": false, - "repo_id": 105686080, - "security_and_analysis": [ - { - "advanced_security": [], - "code_security": [], - "secret_scanning": [ - { - "status": "disabled" - } - ], - "secret_scanning_ai_detection": [], - "secret_scanning_non_provider_patterns": [], - "secret_scanning_push_protection": [ - { - "status": "disabled" - } - ] - } - ], - "source_owner": "", - "source_repo": "", - "squash_merge_commit_message": "COMMIT_MESSAGES", - "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", - "ssh_clone_url": "git@github.com:django-commons/drf-excel.git", - "svn_url": "https://github.com/django-commons/drf-excel", - "template": [], - "topics": [], - "visibility": "public", - "vulnerability_alerts": true, - "web_commit_signoff_required": false - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "eyJzY2hlbWFfdmVyc2lvbiI6IjEifQ==" - }, - { - "index_key": "membership", - "schema_version": 1, - "attributes": { - "allow_auto_merge": false, - "allow_merge_commit": false, - "allow_rebase_merge": true, - "allow_squash_merge": true, - "allow_update_branch": true, - "archive_on_destroy": true, - "archived": false, - "auto_init": false, - "default_branch": "main", - "delete_branch_on_merge": true, - "description": "Membership repository for the django-commons organization.", - "etag": "W/\"9c5c270c4dfc9aa051791ba5dce9d16200a0f1baba4390ebb7d0693fa0f641ae\"", - "fork": "false", - "full_name": "django-commons/membership", - "git_clone_url": "git://github.com/django-commons/membership.git", - "gitignore_template": null, - "has_discussions": true, - "has_downloads": true, - "has_issues": true, - "has_projects": true, - "has_wiki": false, - "homepage_url": "", - "html_url": "https://github.com/django-commons/membership", - "http_clone_url": "https://github.com/django-commons/membership.git", - "id": "membership", - "ignore_vulnerability_alerts_during_read": null, - "is_template": false, - "license_template": null, - "merge_commit_message": "PR_TITLE", - "merge_commit_title": "MERGE_MESSAGE", - "name": "membership", - "node_id": "R_kgDOLklIpA", - "pages": [], - "primary_language": "HCL", - "private": false, - "repo_id": 776554660, - "security_and_analysis": [ - { - "advanced_security": [], - "code_security": [], - "secret_scanning": [ - { - "status": "disabled" - } - ], - "secret_scanning_ai_detection": [], - "secret_scanning_non_provider_patterns": [], - "secret_scanning_push_protection": [ - { - "status": "disabled" - } - ] - } - ], - "source_owner": "", - "source_repo": "", - "squash_merge_commit_message": "COMMIT_MESSAGES", - "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", - "ssh_clone_url": "git@github.com:django-commons/membership.git", - "svn_url": "https://github.com/django-commons/membership", - "template": [], - "topics": [], - "visibility": "public", - "vulnerability_alerts": true, - "web_commit_signoff_required": false - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "eyJzY2hlbWFfdmVyc2lvbiI6IjEifQ==" - } - ] - }, - { - "mode": "managed", - "type": "github_repository_collaborators", - "name": "this", - "provider": "provider[\"registry.terraform.io/integrations/github\"]", - "instances": [ - { - "index_key": "axe-selenium-python", - "schema_version": 0, - "attributes": { - "id": "axe-selenium-python", - "ignore_team": [ - { - "team_id": "admins" - } - ], - "invitation_ids": {}, - "repository": "axe-selenium-python", - "team": [ - { - "permission": "admin", - "team_id": "axe-selenium-python-admins" - }, - { - "permission": "maintain", - "team_id": "axe-selenium-python-committers" - }, - { - "permission": "triage", - "team_id": "axe-selenium-python" - } - ], - "user": [] - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_repository.this", - "github_team.org_teams", - "github_team.repo_admin_team", - "github_team.repo_committer_team", - "github_team.repo_team" - ] - }, - { - "index_key": "best-practices", - "schema_version": 0, - "attributes": { - "id": "best-practices", - "ignore_team": [ - { - "team_id": "admins" - } - ], - "invitation_ids": {}, - "repository": "best-practices", - "team": [ - { - "permission": "admin", - "team_id": "best-practices-admins" - }, - { - "permission": "maintain", - "team_id": "best-practices-committers" - }, - { - "permission": "triage", - "team_id": "best-practices" - } - ], - "user": [] - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_repository.this", - "github_team.org_teams", - "github_team.repo_admin_team", - "github_team.repo_committer_team", - "github_team.repo_team" - ] - }, - { - "index_key": "django-click", - "schema_version": 0, - "attributes": { - "id": "django-click", - "ignore_team": [ - { - "team_id": "admins" - } - ], - "invitation_ids": {}, - "repository": "django-click", - "team": [ - { - "permission": "admin", - "team_id": "django-click-admins" - }, - { - "permission": "maintain", - "team_id": "django-click-committers" - }, - { - "permission": "triage", - "team_id": "django-click" - } - ], - "user": [] - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_repository.this", - "github_team.org_teams", - "github_team.repo_admin_team", - "github_team.repo_committer_team", - "github_team.repo_team" - ] - }, - { - "index_key": "django-cookie-consent", - "schema_version": 0, - "attributes": { - "id": "django-cookie-consent", - "ignore_team": [ - { - "team_id": "admins" - } - ], - "invitation_ids": {}, - "repository": "django-cookie-consent", - "team": [ - { - "permission": "admin", - "team_id": "django-cookie-consent-admins" - }, - { - "permission": "maintain", - "team_id": "django-cookie-consent-committers" - }, - { - "permission": "triage", - "team_id": "django-cookie-consent" - } - ], - "user": [] - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_repository.this", - "github_team.org_teams", - "github_team.repo_admin_team", - "github_team.repo_committer_team", - "github_team.repo_team" - ] - }, - { - "index_key": "django-debug-toolbar", - "schema_version": 0, - "attributes": { - "id": "django-debug-toolbar", - "ignore_team": [ - { - "team_id": "admins" - } - ], - "invitation_ids": {}, - "repository": "django-debug-toolbar", - "team": [ - { - "permission": "admin", - "team_id": "django-debug-toolbar-admins" - }, - { - "permission": "maintain", - "team_id": "django-debug-toolbar-committers" - }, - { - "permission": "triage", - "team_id": "django-debug-toolbar" - } - ], - "user": [] - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_repository.this", - "github_team.org_teams", - "github_team.repo_admin_team", - "github_team.repo_committer_team", - "github_team.repo_team" - ] - }, - { - "index_key": "django-enum", - "schema_version": 0, - "attributes": { - "id": "django-enum", - "ignore_team": [ - { - "team_id": "admins" - } - ], - "invitation_ids": {}, - "repository": "django-enum", - "team": [ - { - "permission": "admin", - "team_id": "django-enum-admins" - }, - { - "permission": "maintain", - "team_id": "django-enum-committers" - }, - { - "permission": "triage", - "team_id": "django-enum" - } - ], - "user": [] - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_repository.this", - "github_team.org_teams", - "github_team.repo_admin_team", - "github_team.repo_committer_team", - "github_team.repo_team" - ] - }, - { - "index_key": "django-fsm-2", - "schema_version": 0, - "attributes": { - "id": "django-fsm-2", - "ignore_team": [ - { - "team_id": "admins" - } - ], - "invitation_ids": {}, - "repository": "django-fsm-2", - "team": [ - { - "permission": "admin", - "team_id": "django-fsm-2-admins" - }, - { - "permission": "maintain", - "team_id": "django-fsm-2-committers" - }, - { - "permission": "triage", - "team_id": "django-fsm-2" - } - ], - "user": [] - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_repository.this", - "github_team.org_teams", - "github_team.repo_admin_team", - "github_team.repo_committer_team", - "github_team.repo_team" - ] - }, - { - "index_key": "django-prometheus", - "schema_version": 0, - "attributes": { - "id": "django-prometheus", - "ignore_team": [ - { - "team_id": "admins" - } - ], - "invitation_ids": {}, - "repository": "django-prometheus", - "team": [ - { - "permission": "admin", - "team_id": "django-prometheus-admins" - }, - { - "permission": "maintain", - "team_id": "django-prometheus-committers" - }, - { - "permission": "triage", - "team_id": "django-prometheus" - } - ], - "user": [] - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_repository.this", - "github_team.org_teams", - "github_team.repo_admin_team", - "github_team.repo_committer_team", - "github_team.repo_team" - ] - }, - { - "index_key": "django-simple-history", - "schema_version": 0, - "attributes": { - "id": "django-simple-history", - "ignore_team": [ - { - "team_id": "admins" - } - ], - "invitation_ids": {}, - "repository": "django-simple-history", - "team": [ - { - "permission": "admin", - "team_id": "django-simple-history-admins" - }, - { - "permission": "maintain", - "team_id": "django-simple-history-committers" - }, - { - "permission": "triage", - "team_id": "django-simple-history" - } - ], - "user": [] - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_repository.this", - "github_team.org_teams", - "github_team.repo_admin_team", - "github_team.repo_committer_team", - "github_team.repo_team" - ] - }, - { - "index_key": "django-tailwind-cli", - "schema_version": 0, - "attributes": { - "id": "django-tailwind-cli", - "ignore_team": [ - { - "team_id": "admins" - } - ], - "invitation_ids": {}, - "repository": "django-tailwind-cli", - "team": [ - { - "permission": "admin", - "team_id": "django-tailwind-cli-admins" - }, - { - "permission": "maintain", - "team_id": "django-tailwind-cli-committers" - }, - { - "permission": "triage", - "team_id": "django-tailwind-cli" - } - ], - "user": [] - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_repository.this", - "github_team.org_teams", - "github_team.repo_admin_team", - "github_team.repo_committer_team", - "github_team.repo_team" - ] - }, - { - "index_key": "django-tasks-scheduler", - "schema_version": 0, - "attributes": { - "id": "django-tasks-scheduler", - "ignore_team": [ - { - "team_id": "admins" - } - ], - "invitation_ids": {}, - "repository": "django-tasks-scheduler", - "team": [ - { - "permission": "admin", - "team_id": "django-tasks-scheduler-admins" - }, - { - "permission": "maintain", - "team_id": "django-tasks-scheduler-committers" - }, - { - "permission": "triage", - "team_id": "django-tasks-scheduler" - } - ], - "user": [] - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_repository.this", - "github_team.org_teams", - "github_team.repo_admin_team", - "github_team.repo_committer_team", - "github_team.repo_team" - ] - }, - { - "index_key": "django-typer", - "schema_version": 0, - "attributes": { - "id": "django-typer", - "ignore_team": [ - { - "team_id": "admins" - } - ], - "invitation_ids": {}, - "repository": "django-typer", - "team": [ - { - "permission": "admin", - "team_id": "django-typer-admins" - }, - { - "permission": "maintain", - "team_id": "django-typer-committers" - }, - { - "permission": "triage", - "team_id": "django-typer" - } - ], - "user": [] - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_repository.this", - "github_team.org_teams", - "github_team.repo_admin_team", - "github_team.repo_committer_team", - "github_team.repo_team" - ] - }, - { - "index_key": "django-valkey", - "schema_version": 0, - "attributes": { - "id": "django-valkey", - "ignore_team": [ - { - "team_id": "admins" - } - ], - "invitation_ids": {}, - "repository": "django-valkey", - "team": [ - { - "permission": "admin", - "team_id": "django-valkey-admins" - }, - { - "permission": "maintain", - "team_id": "django-valkey-committers" - }, - { - "permission": "triage", - "team_id": "django-valkey" - } - ], - "user": [] - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_repository.this", - "github_team.org_teams", - "github_team.repo_admin_team", - "github_team.repo_committer_team", - "github_team.repo_team" - ] - }, - { - "index_key": "drf-excel", - "schema_version": 0, - "attributes": { - "id": "drf-excel", - "ignore_team": [ - { - "team_id": "admins" - } - ], - "invitation_ids": {}, - "repository": "drf-excel", - "team": [ - { - "permission": "admin", - "team_id": "drf-excel-admins" - }, - { - "permission": "maintain", - "team_id": "drf-excel-committers" - }, - { - "permission": "triage", - "team_id": "drf-excel" - } - ], - "user": [] - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_repository.this", - "github_team.org_teams", - "github_team.repo_admin_team", - "github_team.repo_committer_team", - "github_team.repo_team" - ] - } - ] - }, - { - "mode": "managed", - "type": "github_repository_environment", - "name": "pypi", - "provider": "provider[\"registry.terraform.io/integrations/github\"]", - "instances": [ - { - "index_key": "axe-selenium-python", - "schema_version": 0, - "attributes": { - "can_admins_bypass": true, - "deployment_branch_policy": [], - "environment": "pypi", - "id": "axe-selenium-python:pypi", - "prevent_self_review": false, - "repository": "axe-selenium-python", - "reviewers": [ - { - "teams": [ - 14236311 - ], - "users": [] - } - ], - "wait_timer": 0 - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_admin_team", - "github_team.repo_team" - ] - }, - { - "index_key": "best-practices", - "schema_version": 0, - "attributes": { - "can_admins_bypass": true, - "deployment_branch_policy": [], - "environment": "pypi", - "id": "best-practices:pypi", - "prevent_self_review": false, - "repository": "best-practices", - "reviewers": [ - { - "teams": [ - 9757650 - ], - "users": [] - } - ], - "wait_timer": 0 - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "eyJzY2hlbWFfdmVyc2lvbiI6IjAifQ==", - "dependencies": [ - "github_team.repo_admin_team", - "github_team.repo_team" - ] - }, - { - "index_key": "django-click", - "schema_version": 0, - "attributes": { - "can_admins_bypass": true, - "deployment_branch_policy": [], - "environment": "pypi", - "id": "django-click:pypi", - "prevent_self_review": false, - "repository": "django-click", - "reviewers": [ - { - "teams": [ - 12315701 - ], - "users": [] - } - ], - "wait_timer": 0 - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_admin_team", - "github_team.repo_team" - ] - }, - { - "index_key": "django-cookie-consent", - "schema_version": 0, - "attributes": { - "can_admins_bypass": true, - "deployment_branch_policy": [], - "environment": "pypi", - "id": "django-cookie-consent:pypi", - "prevent_self_review": false, - "repository": "django-cookie-consent", - "reviewers": [ - { - "teams": [ - 13287527 - ], - "users": [] - } - ], - "wait_timer": 0 - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_admin_team", - "github_team.repo_team" - ] - }, - { - "index_key": "django-debug-toolbar", - "schema_version": 0, - "attributes": { - "can_admins_bypass": true, - "deployment_branch_policy": [], - "environment": "pypi", - "id": "django-debug-toolbar:pypi", - "prevent_self_review": false, - "repository": "django-debug-toolbar", - "reviewers": [ - { - "teams": [ - 11354341 - ], - "users": [] - } - ], - "wait_timer": 0 - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_admin_team", - "github_team.repo_team" - ] - }, - { - "index_key": "django-enum", - "schema_version": 0, - "attributes": { - "can_admins_bypass": true, - "deployment_branch_policy": [], - "environment": "pypi", - "id": "django-enum:pypi", - "prevent_self_review": false, - "repository": "django-enum", - "reviewers": [ - { - "teams": [ - 12828751 - ], - "users": [] - } - ], - "wait_timer": 0 - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_admin_team", - "github_team.repo_team" - ] - }, - { - "index_key": "django-fsm-2", - "schema_version": 0, - "attributes": { - "can_admins_bypass": true, - "deployment_branch_policy": [], - "environment": "pypi", - "id": "django-fsm-2:pypi", - "prevent_self_review": false, - "repository": "django-fsm-2", - "reviewers": [ - { - "teams": [ - 10870432 - ], - "users": [] - } - ], - "wait_timer": 0 - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "eyJzY2hlbWFfdmVyc2lvbiI6IjAifQ==", - "dependencies": [ - "github_team.repo_admin_team", - "github_team.repo_team" - ] - }, - { - "index_key": "django-prometheus", - "schema_version": 0, - "attributes": { - "can_admins_bypass": true, - "deployment_branch_policy": [], - "environment": "pypi", - "id": "django-prometheus:pypi", - "prevent_self_review": false, - "repository": "django-prometheus", - "reviewers": [ - { - "teams": [ - 13333849 - ], - "users": [] - } - ], - "wait_timer": 0 - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_admin_team", - "github_team.repo_team" - ] - }, - { - "index_key": "django-simple-history", - "schema_version": 0, - "attributes": { - "can_admins_bypass": true, - "deployment_branch_policy": [], - "environment": "pypi", - "id": "django-simple-history:pypi", - "prevent_self_review": false, - "repository": "django-simple-history", - "reviewers": [ - { - "teams": [ - 13286901 - ], - "users": [] - } - ], - "wait_timer": 0 - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "eyJzY2hlbWFfdmVyc2lvbiI6IjAifQ==", - "dependencies": [ - "github_team.repo_admin_team", - "github_team.repo_team" - ] - }, - { - "index_key": "django-tailwind-cli", - "schema_version": 0, - "attributes": { - "can_admins_bypass": true, - "deployment_branch_policy": [], - "environment": "pypi", - "id": "django-tailwind-cli:pypi", - "prevent_self_review": false, - "repository": "django-tailwind-cli", - "reviewers": [ - { - "teams": [ - 11394000 - ], - "users": [] - } - ], - "wait_timer": 0 - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_admin_team", - "github_team.repo_team" - ] - }, - { - "index_key": "django-tasks-scheduler", - "schema_version": 0, - "attributes": { - "can_admins_bypass": true, - "deployment_branch_policy": [], - "environment": "pypi", - "id": "django-tasks-scheduler:pypi", - "prevent_self_review": false, - "repository": "django-tasks-scheduler", - "reviewers": [ - { - "teams": [ - 10707221 - ], - "users": [] - } - ], - "wait_timer": 0 - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_admin_team", - "github_team.repo_team" - ] - }, - { - "index_key": "django-typer", - "schema_version": 0, - "attributes": { - "can_admins_bypass": true, - "deployment_branch_policy": [], - "environment": "pypi", - "id": "django-typer:pypi", - "prevent_self_review": false, - "repository": "django-typer", - "reviewers": [ - { - "teams": [ - 11217214 - ], - "users": [] - } - ], - "wait_timer": 0 - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_admin_team", - "github_team.repo_team" - ] - }, - { - "index_key": "django-valkey", - "schema_version": 0, - "attributes": { - "can_admins_bypass": true, - "deployment_branch_policy": [], - "environment": "pypi", - "id": "django-valkey:pypi", - "prevent_self_review": false, - "repository": "django-valkey", - "reviewers": [ - { - "teams": [ - 13334520 - ], - "users": [] - } - ], - "wait_timer": 0 - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_admin_team", - "github_team.repo_team" - ] - }, - { - "index_key": "drf-excel", - "schema_version": 0, - "attributes": { - "can_admins_bypass": true, - "deployment_branch_policy": [], - "environment": "pypi", - "id": "drf-excel:pypi", - "prevent_self_review": false, - "repository": "drf-excel", - "reviewers": [ - { - "teams": [ - 11341702 - ], - "users": [] - } - ], - "wait_timer": 0 - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_admin_team", - "github_team.repo_team" - ] - } - ] - }, - { - "mode": "managed", - "type": "github_repository_environment", - "name": "testpypi", - "provider": "provider[\"registry.terraform.io/integrations/github\"]", - "instances": [ - { - "index_key": "axe-selenium-python", - "schema_version": 0, - "attributes": { - "can_admins_bypass": true, - "deployment_branch_policy": [], - "environment": "testpypi", - "id": "axe-selenium-python:testpypi", - "prevent_self_review": false, - "repository": "axe-selenium-python", - "reviewers": [], - "wait_timer": 0 - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==" - }, - { - "index_key": "best-practices", - "schema_version": 0, - "attributes": { - "can_admins_bypass": true, - "deployment_branch_policy": [], - "environment": "testpypi", - "id": "best-practices:testpypi", - "prevent_self_review": null, - "repository": "best-practices", - "reviewers": [], - "wait_timer": 0 - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "eyJzY2hlbWFfdmVyc2lvbiI6IjAifQ==" - }, - { - "index_key": "django-click", - "schema_version": 0, - "attributes": { - "can_admins_bypass": true, - "deployment_branch_policy": [], - "environment": "testpypi", - "id": "django-click:testpypi", - "prevent_self_review": false, - "repository": "django-click", - "reviewers": [], - "wait_timer": 0 - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==" - }, - { - "index_key": "django-cookie-consent", - "schema_version": 0, - "attributes": { - "can_admins_bypass": true, - "deployment_branch_policy": [], - "environment": "testpypi", - "id": "django-cookie-consent:testpypi", - "prevent_self_review": false, - "repository": "django-cookie-consent", - "reviewers": [], - "wait_timer": 0 - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==" - }, - { - "index_key": "django-debug-toolbar", - "schema_version": 0, - "attributes": { - "can_admins_bypass": true, - "deployment_branch_policy": [], - "environment": "testpypi", - "id": "django-debug-toolbar:testpypi", - "prevent_self_review": false, - "repository": "django-debug-toolbar", - "reviewers": [], - "wait_timer": 0 - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==" - }, - { - "index_key": "django-enum", - "schema_version": 0, - "attributes": { - "can_admins_bypass": true, - "deployment_branch_policy": [], - "environment": "testpypi", - "id": "django-enum:testpypi", - "prevent_self_review": false, - "repository": "django-enum", - "reviewers": [], - "wait_timer": 0 - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==" - }, - { - "index_key": "django-fsm-2", - "schema_version": 0, - "attributes": { - "can_admins_bypass": true, - "deployment_branch_policy": [], - "environment": "testpypi", - "id": "django-fsm-2:testpypi", - "prevent_self_review": null, - "repository": "django-fsm-2", - "reviewers": [], - "wait_timer": 0 - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "eyJzY2hlbWFfdmVyc2lvbiI6IjAifQ==" - }, - { - "index_key": "django-prometheus", - "schema_version": 0, - "attributes": { - "can_admins_bypass": true, - "deployment_branch_policy": [], - "environment": "testpypi", - "id": "django-prometheus:testpypi", - "prevent_self_review": false, - "repository": "django-prometheus", - "reviewers": [], - "wait_timer": 0 - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==" - }, - { - "index_key": "django-simple-history", - "schema_version": 0, - "attributes": { - "can_admins_bypass": true, - "deployment_branch_policy": [], - "environment": "testpypi", - "id": "django-simple-history:testpypi", - "prevent_self_review": null, - "repository": "django-simple-history", - "reviewers": [], - "wait_timer": 0 - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "eyJzY2hlbWFfdmVyc2lvbiI6IjAifQ==" - }, - { - "index_key": "django-tailwind-cli", - "schema_version": 0, - "attributes": { - "can_admins_bypass": true, - "deployment_branch_policy": [], - "environment": "testpypi", - "id": "django-tailwind-cli:testpypi", - "prevent_self_review": false, - "repository": "django-tailwind-cli", - "reviewers": [], - "wait_timer": 0 - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==" - }, - { - "index_key": "django-tasks-scheduler", - "schema_version": 0, - "attributes": { - "can_admins_bypass": true, - "deployment_branch_policy": [], - "environment": "testpypi", - "id": "django-tasks-scheduler:testpypi", - "prevent_self_review": false, - "repository": "django-tasks-scheduler", - "reviewers": [], - "wait_timer": 0 - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==" - }, - { - "index_key": "django-typer", - "schema_version": 0, - "attributes": { - "can_admins_bypass": true, - "deployment_branch_policy": [], - "environment": "testpypi", - "id": "django-typer:testpypi", - "prevent_self_review": false, - "repository": "django-typer", - "reviewers": [], - "wait_timer": 0 - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==" - }, - { - "index_key": "django-valkey", - "schema_version": 0, - "attributes": { - "can_admins_bypass": true, - "deployment_branch_policy": [], - "environment": "testpypi", - "id": "django-valkey:testpypi", - "prevent_self_review": false, - "repository": "django-valkey", - "reviewers": [], - "wait_timer": 0 - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==" - }, - { - "index_key": "drf-excel", - "schema_version": 0, - "attributes": { - "can_admins_bypass": true, - "deployment_branch_policy": [], - "environment": "testpypi", - "id": "drf-excel:testpypi", - "prevent_self_review": false, - "repository": "drf-excel", - "reviewers": [], - "wait_timer": 0 - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==" - } - ] - }, - { - "mode": "managed", - "type": "github_team", - "name": "org_designers_team", - "provider": "provider[\"registry.terraform.io/integrations/github\"]", - "instances": [ - { - "schema_version": 0, - "attributes": { - "create_default_maintainer": false, - "description": "Django Commons designers", - "etag": "W/\"6190db9e35543983d98c90efd5100623c9aa039b6a5c86cf4f39d884ea57b542\"", - "id": "14084892", - "ldap_dn": "", - "members_count": 12, - "name": "Designers", - "node_id": "T_kwDOCaaRBM4A1usc", - "parent_team_id": "", - "parent_team_read_id": "", - "parent_team_read_slug": "", - "privacy": "closed", - "slug": "designers" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==" - } - ] - }, - { - "mode": "managed", - "type": "github_team", - "name": "org_teams", - "provider": "provider[\"registry.terraform.io/integrations/github\"]", - "instances": [ - { - "index_key": "Admins", - "schema_version": 0, - "attributes": { - "create_default_maintainer": false, - "description": "Django Commons administrators. This team is responsible for the overall management of the organization.", - "etag": "W/\"2391cd78614cfc6710de546dbb3982c200702dbb3b52ef6f00d8c0085ac4e076\"", - "id": "9763562", - "ldap_dn": "", - "members_count": 5, - "name": "Admins", - "node_id": "T_kwDOCaaRBM4AlPrq", - "parent_team_id": "", - "parent_team_read_id": "", - "parent_team_read_slug": "", - "privacy": "closed", - "slug": "admins" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==" - }, - { - "index_key": "super-admins", - "schema_version": 0, - "attributes": { - "create_default_maintainer": false, - "description": "Django Commons super administrators. This team is responsible for performing privileged operations.", - "etag": "W/\"b4d21521dfd4a98f3dcfa8999cbaf87d9d9e0d498cd9c3951ebcbcae6f53b54b\"", - "id": "15586545", - "ldap_dn": "", - "members_count": 0, - "name": "super-admins", - "node_id": "T_kwDOCaaRBM4A7dTx", - "parent_team_id": "", - "parent_team_read_id": "", - "parent_team_read_slug": "", - "privacy": "closed", - "slug": "super-admins" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==" - } - ] - }, - { - "mode": "managed", - "type": "github_team", - "name": "repo_admin_team", - "provider": "provider[\"registry.terraform.io/integrations/github\"]", - "instances": [ - { - "index_key": "axe-selenium-python", - "schema_version": 0, - "attributes": { - "create_default_maintainer": false, - "description": "Admin team for the axe-selenium-python repository", - "etag": "W/\"1b716a4778cf4e1484e4092a91e53292612564219b7bfa6d2d2bd8c02997417e\"", - "id": "14236311", - "ldap_dn": "", - "members_count": 2, - "name": "axe-selenium-python-admins", - "node_id": "T_kwDOCaaRBM4A2TqX", - "parent_team_id": "14236309", - "parent_team_read_id": "14236309", - "parent_team_read_slug": "axe-selenium-python", - "privacy": "closed", - "slug": "axe-selenium-python-admins" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_team" - ] - }, - { - "index_key": "best-practices", - "schema_version": 0, - "attributes": { - "create_default_maintainer": false, - "description": "Admin team for the best-practices repository", - "etag": "W/\"a9952481b09f4a3b97bb23e258710cd776ab139c891bc4070a4ec94b00d3bb69\"", - "id": "9757650", - "ldap_dn": "", - "members_count": 5, - "name": "best-practices-admins", - "node_id": "T_kwDOCaaRBM4AlOPS", - "parent_team_id": "9757678", - "parent_team_read_id": "9757678", - "parent_team_read_slug": "best-practices", - "privacy": "closed", - "slug": "best-practices-admins" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_team" - ] - }, - { - "index_key": "django-click", - "schema_version": 0, - "attributes": { - "create_default_maintainer": false, - "description": "Admin team for the django-click repository", - "etag": "W/\"53141d12174bc422fe289a2eeaa70d180aa0d81b46797da15541c36df8e5415d\"", - "id": "12315701", - "ldap_dn": "", - "members_count": 2, - "name": "django-click-admins", - "node_id": "T_kwDOCaaRBM4Au-w1", - "parent_team_id": "12315699", - "parent_team_read_id": "12315699", - "parent_team_read_slug": "django-click", - "privacy": "closed", - "slug": "django-click-admins" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_team" - ] - }, - { - "index_key": "django-cookie-consent", - "schema_version": 0, - "attributes": { - "create_default_maintainer": false, - "description": "Admin team for the django-cookie-consent repository", - "etag": "W/\"409dcbf7cf68c3abf3e19ca123c05fd6d7da91dc505f3deb975abdadb8e32bd0\"", - "id": "13287527", - "ldap_dn": "", - "members_count": 1, - "name": "django-cookie-consent-admins", - "node_id": "T_kwDOCaaRBM4AysBn", - "parent_team_id": "13287524", - "parent_team_read_id": "13287524", - "parent_team_read_slug": "django-cookie-consent", - "privacy": "closed", - "slug": "django-cookie-consent-admins" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_team" - ] - }, - { - "index_key": "django-debug-toolbar", - "schema_version": 0, - "attributes": { - "create_default_maintainer": false, - "description": "Admin team for the django-debug-toolbar repository", - "etag": "W/\"dbcbea2d83a5dcf5827b865f6770dcaa6f1d8a83d3df5a3fc7421ed91958d347\"", - "id": "11354341", - "ldap_dn": "", - "members_count": 2, - "name": "django-debug-toolbar-admins", - "node_id": "T_kwDOCaaRBM4ArUDl", - "parent_team_id": "11354339", - "parent_team_read_id": "11354339", - "parent_team_read_slug": "django-debug-toolbar", - "privacy": "closed", - "slug": "django-debug-toolbar-admins" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_team" - ] - }, - { - "index_key": "django-enum", - "schema_version": 0, - "attributes": { - "create_default_maintainer": false, - "description": "Admin team for the django-enum repository", - "etag": "W/\"54df55825e4db3c96d95e41e8d146477bd05bb7cc0cb22d39f8967099ccf46d5\"", - "id": "12828751", - "ldap_dn": "", - "members_count": 1, - "name": "django-enum-admins", - "node_id": "T_kwDOCaaRBM4Aw8BP", - "parent_team_id": "12828748", - "parent_team_read_id": "12828748", - "parent_team_read_slug": "django-enum", - "privacy": "closed", - "slug": "django-enum-admins" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_team" - ] - }, - { - "index_key": "django-fsm-2", - "schema_version": 0, - "attributes": { - "create_default_maintainer": false, - "description": "Admin team for the django-fsm-2 repository", - "etag": "W/\"49618d76308a955741eb7bec48810a41807a9363a46c67a7a1c6dffacf251fa9\"", - "id": "10870432", - "ldap_dn": "", - "members_count": 2, - "name": "django-fsm-2-admins", - "node_id": "T_kwDOCaaRBM4Apd6g", - "parent_team_id": "10870431", - "parent_team_read_id": "10870431", - "parent_team_read_slug": "django-fsm-2", - "privacy": "closed", - "slug": "django-fsm-2-admins" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_team" - ] - }, - { - "index_key": "django-prometheus", - "schema_version": 0, - "attributes": { - "create_default_maintainer": false, - "description": "Admin team for the django-prometheus repository", - "etag": "W/\"b5a7d45bad487cf990128d4a507fc441c8540573ea69c630b8219f63d7229863\"", - "id": "13333849", - "ldap_dn": "", - "members_count": 1, - "name": "django-prometheus-admins", - "node_id": "T_kwDOCaaRBM4Ay3VZ", - "parent_team_id": "13333847", - "parent_team_read_id": "13333847", - "parent_team_read_slug": "django-prometheus", - "privacy": "closed", - "slug": "django-prometheus-admins" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_team" - ] - }, - { - "index_key": "django-simple-history", - "schema_version": 0, - "attributes": { - "create_default_maintainer": false, - "description": "Admin team for the django-simple-history repository", - "etag": "W/\"d0f896c678a4d6987b45e71e4f22a83474626506d90a1e87a9e22f33353ce152\"", - "id": "13286901", - "ldap_dn": "", - "members_count": 2, - "name": "django-simple-history-admins", - "node_id": "T_kwDOCaaRBM4Ayr31", - "parent_team_id": "13286898", - "parent_team_read_id": "13286898", - "parent_team_read_slug": "django-simple-history", - "privacy": "closed", - "slug": "django-simple-history-admins" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "eyJzY2hlbWFfdmVyc2lvbiI6IjAifQ==", - "dependencies": [ - "github_team.repo_team" - ] - }, - { - "index_key": "django-tailwind-cli", - "schema_version": 0, - "attributes": { - "create_default_maintainer": false, - "description": "Admin team for the django-tailwind-cli repository", - "etag": "W/\"3a7359d38703c04abe75db6226c8fcee5a52dfec29c01970f4e7b52a6fd76d64\"", - "id": "11394000", - "ldap_dn": "", - "members_count": 1, - "name": "django-tailwind-cli-admins", - "node_id": "T_kwDOCaaRBM4ArdvQ", - "parent_team_id": "11393999", - "parent_team_read_id": "11393999", - "parent_team_read_slug": "django-tailwind-cli", - "privacy": "closed", - "slug": "django-tailwind-cli-admins" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_team" - ] - }, - { - "index_key": "django-tasks-scheduler", - "schema_version": 0, - "attributes": { - "create_default_maintainer": false, - "description": "Admin team for the django-tasks-scheduler repository", - "etag": "W/\"25c7a9af7bbffa5480ce74657e9441629a48c03057e6ce16f92fd040cca89af7\"", - "id": "10707221", - "ldap_dn": "", - "members_count": 1, - "name": "django-tasks-scheduler-admins", - "node_id": "T_kwDOCaaRBM4Ao2EV", - "parent_team_id": "10707217", - "parent_team_read_id": "10707217", - "parent_team_read_slug": "django-tasks-scheduler", - "privacy": "closed", - "slug": "django-tasks-scheduler-admins" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_team" - ] - }, - { - "index_key": "django-typer", - "schema_version": 0, - "attributes": { - "create_default_maintainer": false, - "description": "Admin team for the django-typer repository", - "etag": "W/\"38726b713574cc9c3d10ad6489a3d86f4ef5e077da1e3d848ed84f9ab662c447\"", - "id": "11217214", - "ldap_dn": "", - "members_count": 2, - "name": "django-typer-admins", - "node_id": "T_kwDOCaaRBM4Aqyk-", - "parent_team_id": "11217213", - "parent_team_read_id": "11217213", - "parent_team_read_slug": "django-typer", - "privacy": "closed", - "slug": "django-typer-admins" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_team" - ] - }, - { - "index_key": "django-valkey", - "schema_version": 0, - "attributes": { - "create_default_maintainer": false, - "description": "Admin team for the django-valkey repository", - "etag": "W/\"0ad2a3fc69034104d1a2c3c337d8a35717ecad3d4b8cc1a1855bf4f8aedd0a97\"", - "id": "13334520", - "ldap_dn": "", - "members_count": 1, - "name": "django-valkey-admins", - "node_id": "T_kwDOCaaRBM4Ay3f4", - "parent_team_id": "13334519", - "parent_team_read_id": "13334519", - "parent_team_read_slug": "django-valkey", - "privacy": "closed", - "slug": "django-valkey-admins" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_team" - ] - }, - { - "index_key": "drf-excel", - "schema_version": 0, - "attributes": { - "create_default_maintainer": false, - "description": "Admin team for the drf-excel repository", - "etag": "W/\"b9d767d363ae342810d48aa7ce703de1828198c41c33695e8e8169663dd70109\"", - "id": "11341702", - "ldap_dn": "", - "members_count": 2, - "name": "drf-excel-admins", - "node_id": "T_kwDOCaaRBM4ArQ-G", - "parent_team_id": "11341700", - "parent_team_read_id": "11341700", - "parent_team_read_slug": "drf-excel", - "privacy": "closed", - "slug": "drf-excel-admins" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_team" - ] - } - ] - }, - { - "mode": "managed", - "type": "github_team", - "name": "repo_committer_team", - "provider": "provider[\"registry.terraform.io/integrations/github\"]", - "instances": [ - { - "index_key": "axe-selenium-python", - "schema_version": 0, - "attributes": { - "create_default_maintainer": false, - "description": "Committers team for the axe-selenium-python repository", - "etag": "W/\"8b372c8bd9fa0d3c35b2bbf4f9544e6a076cd41261befaccd6d05a65d6bb3e2c\"", - "id": "14236310", - "ldap_dn": "", - "members_count": 0, - "name": "axe-selenium-python-committers", - "node_id": "T_kwDOCaaRBM4A2TqW", - "parent_team_id": "14236309", - "parent_team_read_id": "14236309", - "parent_team_read_slug": "axe-selenium-python", - "privacy": "closed", - "slug": "axe-selenium-python-committers" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_team" - ] - }, - { - "index_key": "best-practices", - "schema_version": 0, - "attributes": { - "create_default_maintainer": false, - "description": "Committers team for the best-practices repository", - "etag": "W/\"5a037ab06c90e215ee037e35c16c7057b9dda74978b2280b2a04f354d284450d\"", - "id": "9757668", - "ldap_dn": "", - "members_count": 1, - "name": "best-practices-committers", - "node_id": "T_kwDOCaaRBM4AlOPk", - "parent_team_id": "9757678", - "parent_team_read_id": "9757678", - "parent_team_read_slug": "best-practices", - "privacy": "closed", - "slug": "best-practices-committers" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_team" - ] - }, - { - "index_key": "django-click", - "schema_version": 0, - "attributes": { - "create_default_maintainer": false, - "description": "Committers team for the django-click repository", - "etag": "W/\"5122202fb8043525a1a51422c2a30928018b494dee2747ffc0f32c1ff01bd811\"", - "id": "12315700", - "ldap_dn": "", - "members_count": 1, - "name": "django-click-committers", - "node_id": "T_kwDOCaaRBM4Au-w0", - "parent_team_id": "12315699", - "parent_team_read_id": "12315699", - "parent_team_read_slug": "django-click", - "privacy": "closed", - "slug": "django-click-committers" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_team" - ] - }, - { - "index_key": "django-cookie-consent", - "schema_version": 0, - "attributes": { - "create_default_maintainer": false, - "description": "Committers team for the django-cookie-consent repository", - "etag": "W/\"7cba0ca6c519109cf86147b9273499b90ff89ff3882725a27bbc6f02d5ea9545\"", - "id": "13287526", - "ldap_dn": "", - "members_count": 1, - "name": "django-cookie-consent-committers", - "node_id": "T_kwDOCaaRBM4AysBm", - "parent_team_id": "13287524", - "parent_team_read_id": "13287524", - "parent_team_read_slug": "django-cookie-consent", - "privacy": "closed", - "slug": "django-cookie-consent-committers" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_team" - ] - }, - { - "index_key": "django-debug-toolbar", - "schema_version": 0, - "attributes": { - "create_default_maintainer": false, - "description": "Committers team for the django-debug-toolbar repository", - "etag": "W/\"e3ef04436477b76b504866b3ce4732cebd6dfae0e04127cb853d28af493d9801\"", - "id": "11354340", - "ldap_dn": "", - "members_count": 2, - "name": "django-debug-toolbar-committers", - "node_id": "T_kwDOCaaRBM4ArUDk", - "parent_team_id": "11354339", - "parent_team_read_id": "11354339", - "parent_team_read_slug": "django-debug-toolbar", - "privacy": "closed", - "slug": "django-debug-toolbar-committers" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_team" - ] - }, - { - "index_key": "django-enum", - "schema_version": 0, - "attributes": { - "create_default_maintainer": false, - "description": "Committers team for the django-enum repository", - "etag": "W/\"131548eec956790a3e673602a5fa78731199753a2e5d62260b9fb400d874e28b\"", - "id": "12828750", - "ldap_dn": "", - "members_count": 0, - "name": "django-enum-committers", - "node_id": "T_kwDOCaaRBM4Aw8BO", - "parent_team_id": "12828748", - "parent_team_read_id": "12828748", - "parent_team_read_slug": "django-enum", - "privacy": "closed", - "slug": "django-enum-committers" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_team" - ] - }, - { - "index_key": "django-fsm-2", - "schema_version": 0, - "attributes": { - "create_default_maintainer": false, - "description": "Committers team for the django-fsm-2 repository", - "etag": "W/\"c31a6f470294785a158a9435ace2b4eccfd0dea48631188d2d981b0db4b34923\"", - "id": "10870433", - "ldap_dn": "", - "members_count": 0, - "name": "django-fsm-2-committers", - "node_id": "T_kwDOCaaRBM4Apd6h", - "parent_team_id": "10870431", - "parent_team_read_id": "10870431", - "parent_team_read_slug": "django-fsm-2", - "privacy": "closed", - "slug": "django-fsm-2-committers" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_team" - ] - }, - { - "index_key": "django-prometheus", - "schema_version": 0, - "attributes": { - "create_default_maintainer": false, - "description": "Committers team for the django-prometheus repository", - "etag": "W/\"14d03c00525d3340e0dc548cd4d2642ef617db43b1dfad8466ca692a71c86bff\"", - "id": "13333848", - "ldap_dn": "", - "members_count": 0, - "name": "django-prometheus-committers", - "node_id": "T_kwDOCaaRBM4Ay3VY", - "parent_team_id": "13333847", - "parent_team_read_id": "13333847", - "parent_team_read_slug": "django-prometheus", - "privacy": "closed", - "slug": "django-prometheus-committers" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_team" - ] - }, - { - "index_key": "django-simple-history", - "schema_version": 0, - "attributes": { - "create_default_maintainer": false, - "description": "Committers team for the django-simple-history repository", - "etag": "W/\"f0238525e1f06627cd74f11233207922c880fbad29d1015bbb903e9b5260e1f5\"", - "id": "13286900", - "ldap_dn": "", - "members_count": 0, - "name": "django-simple-history-committers", - "node_id": "T_kwDOCaaRBM4Ayr30", - "parent_team_id": "13286898", - "parent_team_read_id": "13286898", - "parent_team_read_slug": "django-simple-history", - "privacy": "closed", - "slug": "django-simple-history-committers" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "eyJzY2hlbWFfdmVyc2lvbiI6IjAifQ==", - "dependencies": [ - "github_team.repo_team" - ] - }, - { - "index_key": "django-tailwind-cli", - "schema_version": 0, - "attributes": { - "create_default_maintainer": false, - "description": "Committers team for the django-tailwind-cli repository", - "etag": "W/\"1f13248bbf957fc4b5bb70a5b1d980e3ba9f19520dd5935b0eb412b07735ffaf\"", - "id": "11394001", - "ldap_dn": "", - "members_count": 0, - "name": "django-tailwind-cli-committers", - "node_id": "T_kwDOCaaRBM4ArdvR", - "parent_team_id": "11393999", - "parent_team_read_id": "11393999", - "parent_team_read_slug": "django-tailwind-cli", - "privacy": "closed", - "slug": "django-tailwind-cli-committers" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_team" - ] - }, - { - "index_key": "django-tasks-scheduler", - "schema_version": 0, - "attributes": { - "create_default_maintainer": false, - "description": "Committers team for the django-tasks-scheduler repository", - "etag": "W/\"8f038ac96223cefd39be48636c82fab559c866510e8de7fd2533d7de79feedbe\"", - "id": "10707220", - "ldap_dn": "", - "members_count": 2, - "name": "django-tasks-scheduler-committers", - "node_id": "T_kwDOCaaRBM4Ao2EU", - "parent_team_id": "10707217", - "parent_team_read_id": "10707217", - "parent_team_read_slug": "django-tasks-scheduler", - "privacy": "closed", - "slug": "django-tasks-scheduler-committers" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_team" - ] - }, - { - "index_key": "django-typer", - "schema_version": 0, - "attributes": { - "create_default_maintainer": false, - "description": "Committers team for the django-typer repository", - "etag": "W/\"241c8fa9d2ab7c309003c093b062bfb1c039b518d768355ee57c80552a131b84\"", - "id": "11217215", - "ldap_dn": "", - "members_count": 0, - "name": "django-typer-committers", - "node_id": "T_kwDOCaaRBM4Aqyk_", - "parent_team_id": "11217213", - "parent_team_read_id": "11217213", - "parent_team_read_slug": "django-typer", - "privacy": "closed", - "slug": "django-typer-committers" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_team" - ] - }, - { - "index_key": "django-valkey", - "schema_version": 0, - "attributes": { - "create_default_maintainer": false, - "description": "Committers team for the django-valkey repository", - "etag": "W/\"3ae8d8bf12a31aaf3e6446f714c46e6a87651cd286038937c2fff23ffb416046\"", - "id": "13334521", - "ldap_dn": "", - "members_count": 0, - "name": "django-valkey-committers", - "node_id": "T_kwDOCaaRBM4Ay3f5", - "parent_team_id": "13334519", - "parent_team_read_id": "13334519", - "parent_team_read_slug": "django-valkey", - "privacy": "closed", - "slug": "django-valkey-committers" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_team" - ] - }, - { - "index_key": "drf-excel", - "schema_version": 0, - "attributes": { - "create_default_maintainer": false, - "description": "Committers team for the drf-excel repository", - "etag": "W/\"9ea6247aba2e630db5a8458f35acac215817072a526d4d433364ab85a3c072ad\"", - "id": "11341703", - "ldap_dn": "", - "members_count": 1, - "name": "drf-excel-committers", - "node_id": "T_kwDOCaaRBM4ArQ-H", - "parent_team_id": "11341700", - "parent_team_read_id": "11341700", - "parent_team_read_slug": "drf-excel", - "privacy": "closed", - "slug": "drf-excel-committers" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_team" - ] - } - ] - }, - { - "mode": "managed", - "type": "github_team", - "name": "repo_team", - "provider": "provider[\"registry.terraform.io/integrations/github\"]", - "instances": [ - { - "index_key": "axe-selenium-python", - "schema_version": 0, - "attributes": { - "create_default_maintainer": false, - "description": "Main team for the axe-selenium-python repository", - "etag": "W/\"aa16d5b523c9b1d07c0bfc2feceec1e36ed1a9f01074360afe4b67f9eb76fa38\"", - "id": "14236309", - "ldap_dn": "", - "members_count": 2, - "name": "axe-selenium-python", - "node_id": "T_kwDOCaaRBM4A2TqV", - "parent_team_id": "", - "parent_team_read_id": "", - "parent_team_read_slug": "", - "privacy": "closed", - "slug": "axe-selenium-python" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==" - }, - { - "index_key": "best-practices", - "schema_version": 0, - "attributes": { - "create_default_maintainer": false, - "description": "Main team for the best-practices repository", - "etag": "W/\"fea8ddf124465ec6048bc415c62fa198fa31e67880de00b963cdd121e2058116\"", - "id": "9757678", - "ldap_dn": "", - "members_count": 6, - "name": "best-practices", - "node_id": "T_kwDOCaaRBM4AlOPu", - "parent_team_id": "", - "parent_team_read_id": "", - "parent_team_read_slug": "", - "privacy": "closed", - "slug": "best-practices" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==" - }, - { - "index_key": "django-click", - "schema_version": 0, - "attributes": { - "create_default_maintainer": false, - "description": "Main team for the django-click repository", - "etag": "W/\"a943ab0dec3f3aaf6383ed16ed28b3fdac5ae57197c354a30ae64bac21d84fa9\"", - "id": "12315699", - "ldap_dn": "", - "members_count": 3, - "name": "django-click", - "node_id": "T_kwDOCaaRBM4Au-wz", - "parent_team_id": "", - "parent_team_read_id": "", - "parent_team_read_slug": "", - "privacy": "closed", - "slug": "django-click" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==" - }, - { - "index_key": "django-cookie-consent", - "schema_version": 0, - "attributes": { - "create_default_maintainer": false, - "description": "Main team for the django-cookie-consent repository", - "etag": "W/\"3a3556a6142536571cf3bf33701fffbcefa21f713bb077d22706fbccc83fe4d6\"", - "id": "13287524", - "ldap_dn": "", - "members_count": 2, - "name": "django-cookie-consent", - "node_id": "T_kwDOCaaRBM4AysBk", - "parent_team_id": "", - "parent_team_read_id": "", - "parent_team_read_slug": "", - "privacy": "closed", - "slug": "django-cookie-consent" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==" - }, - { - "index_key": "django-debug-toolbar", - "schema_version": 0, - "attributes": { - "create_default_maintainer": false, - "description": "Main team for the django-debug-toolbar repository", - "etag": "W/\"557a630ecb0563f23b476db8a7545f31f67198ecb9cfbfbab55e81c2d310897b\"", - "id": "11354339", - "ldap_dn": "", - "members_count": 14, - "name": "django-debug-toolbar", - "node_id": "T_kwDOCaaRBM4ArUDj", - "parent_team_id": "", - "parent_team_read_id": "", - "parent_team_read_slug": "", - "privacy": "closed", - "slug": "django-debug-toolbar" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==" - }, - { - "index_key": "django-enum", - "schema_version": 0, - "attributes": { - "create_default_maintainer": false, - "description": "Main team for the django-enum repository", - "etag": "W/\"53d755d0ebad8d8ccafdedcce6059a21a923b990b942864ffc0a25e7a7cf945b\"", - "id": "12828748", - "ldap_dn": "", - "members_count": 1, - "name": "django-enum", - "node_id": "T_kwDOCaaRBM4Aw8BM", - "parent_team_id": "", - "parent_team_read_id": "", - "parent_team_read_slug": "", - "privacy": "closed", - "slug": "django-enum" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==" - }, - { - "index_key": "django-fsm-2", - "schema_version": 0, - "attributes": { - "create_default_maintainer": false, - "description": "Main team for the django-fsm-2 repository", - "etag": "W/\"52364710686a5ee16685e9cf4886b5f3e492fd7f2129f60f035a571518510556\"", - "id": "10870431", - "ldap_dn": "", - "members_count": 3, - "name": "django-fsm-2", - "node_id": "T_kwDOCaaRBM4Apd6f", - "parent_team_id": "", - "parent_team_read_id": "", - "parent_team_read_slug": "", - "privacy": "closed", - "slug": "django-fsm-2" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==" - }, - { - "index_key": "django-prometheus", - "schema_version": 0, - "attributes": { - "create_default_maintainer": false, - "description": "Main team for the django-prometheus repository", - "etag": "W/\"96e3f9996ed4e65290bf1587e5078af21d71aca499ec15fc9162c6aaab93260c\"", - "id": "13333847", - "ldap_dn": "", - "members_count": 1, - "name": "django-prometheus", - "node_id": "T_kwDOCaaRBM4Ay3VX", - "parent_team_id": "", - "parent_team_read_id": "", - "parent_team_read_slug": "", - "privacy": "closed", - "slug": "django-prometheus" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==" - }, - { - "index_key": "django-simple-history", - "schema_version": 0, - "attributes": { - "create_default_maintainer": false, - "description": "Main team for the django-simple-history repository", - "etag": "W/\"7e0303bced30a4ffc52a3a30f4a20b3e51d04c8ceed1ffd5996cbc0dd2001265\"", - "id": "13286898", - "ldap_dn": "", - "members_count": 2, - "name": "django-simple-history", - "node_id": "T_kwDOCaaRBM4Ayr3y", - "parent_team_id": "", - "parent_team_read_id": "", - "parent_team_read_slug": "", - "privacy": "closed", - "slug": "django-simple-history" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "eyJzY2hlbWFfdmVyc2lvbiI6IjAifQ==" - }, - { - "index_key": "django-tailwind-cli", - "schema_version": 0, - "attributes": { - "create_default_maintainer": false, - "description": "Main team for the django-tailwind-cli repository", - "etag": "W/\"b4e8eac611fab4a37231285a81498e27227a4857e32533d4e443c586af3ebb5e\"", - "id": "11393999", - "ldap_dn": "", - "members_count": 1, - "name": "django-tailwind-cli", - "node_id": "T_kwDOCaaRBM4ArdvP", - "parent_team_id": "", - "parent_team_read_id": "", - "parent_team_read_slug": "", - "privacy": "closed", - "slug": "django-tailwind-cli" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==" - }, - { - "index_key": "django-tasks-scheduler", - "schema_version": 0, - "attributes": { - "create_default_maintainer": false, - "description": "Main team for the django-tasks-scheduler repository", - "etag": "W/\"3470f04d33eb592033b39ac5f023c2c3c28ab5bd6186cb641b8c0b4143e7585e\"", - "id": "10707217", - "ldap_dn": "", - "members_count": 3, - "name": "django-tasks-scheduler", - "node_id": "T_kwDOCaaRBM4Ao2ER", - "parent_team_id": "", - "parent_team_read_id": "", - "parent_team_read_slug": "", - "privacy": "closed", - "slug": "django-tasks-scheduler" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==" - }, - { - "index_key": "django-typer", - "schema_version": 0, - "attributes": { - "create_default_maintainer": false, - "description": "Main team for the django-typer repository", - "etag": "W/\"b7760c610a071b6a0af0bf0765c69b4fa866922f62afe82a5509fe9ef957ec07\"", - "id": "11217213", - "ldap_dn": "", - "members_count": 2, - "name": "django-typer", - "node_id": "T_kwDOCaaRBM4Aqyk9", - "parent_team_id": "", - "parent_team_read_id": "", - "parent_team_read_slug": "", - "privacy": "closed", - "slug": "django-typer" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==" - }, - { - "index_key": "django-valkey", - "schema_version": 0, - "attributes": { - "create_default_maintainer": false, - "description": "Main team for the django-valkey repository", - "etag": "W/\"ca83497b3e3acbae2b0c6dd35f5efb9139f8a20e609324b7e6077014ee9306b5\"", - "id": "13334519", - "ldap_dn": "", - "members_count": 1, - "name": "django-valkey", - "node_id": "T_kwDOCaaRBM4Ay3f3", - "parent_team_id": "", - "parent_team_read_id": "", - "parent_team_read_slug": "", - "privacy": "closed", - "slug": "django-valkey" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==" - }, - { - "index_key": "drf-excel", - "schema_version": 0, - "attributes": { - "create_default_maintainer": false, - "description": "Main team for the drf-excel repository", - "etag": "W/\"f7f780c680b60219a01e34077d7a34050c6eb61d6f62456f2dc573246f722049\"", - "id": "11341700", - "ldap_dn": "", - "members_count": 4, - "name": "drf-excel", - "node_id": "T_kwDOCaaRBM4ArQ-E", - "parent_team_id": "", - "parent_team_read_id": "", - "parent_team_read_slug": "", - "privacy": "closed", - "slug": "drf-excel" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==" - } - ] - }, - { - "mode": "managed", - "type": "github_team_members", - "name": "org_designers_team_members", - "provider": "provider[\"registry.terraform.io/integrations/github\"]", - "instances": [ - { - "schema_version": 0, - "attributes": { - "id": "14084892", - "members": [ - { - "role": "member", - "username": "Shrikantgiri25" - }, - { - "role": "member", - "username": "Violette-Allotey" - }, - { - "role": "member", - "username": "Zakui" - }, - { - "role": "member", - "username": "akshayvinchurkar" - }, - { - "role": "member", - "username": "federicobond" - }, - { - "role": "member", - "username": "jmgutu" - }, - { - "role": "member", - "username": "johnatanmoran" - }, - { - "role": "member", - "username": "mzemlickis" - }, - { - "role": "member", - "username": "okotdaniel" - }, - { - "role": "member", - "username": "p-r-a-v-i-n" - }, - { - "role": "member", - "username": "vinlawz" - }, - { - "role": "member", - "username": "viscofuse" - } - ], - "team_id": "14084892" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.org_designers_team" - ] - } - ] - }, - { - "mode": "managed", - "type": "github_team_members", - "name": "org_team_members", - "provider": "provider[\"registry.terraform.io/integrations/github\"]", - "instances": [ - { - "index_key": "Admins", - "schema_version": 0, - "attributes": { - "id": "9763562", - "members": [ - { - "role": "maintainer", - "username": "Stormheg" - }, - { - "role": "maintainer", - "username": "cunla" - }, - { - "role": "maintainer", - "username": "ryancheley" - }, - { - "role": "maintainer", - "username": "tim-schilling" - }, - { - "role": "maintainer", - "username": "williln" - } - ], - "team_id": "9763562" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "eyJzY2hlbWFfdmVyc2lvbiI6IjAifQ==", - "dependencies": [ - "github_team.org_teams" - ] - }, - { - "index_key": "super-admins", - "schema_version": 0, - "attributes": { - "id": "15586545", - "members": [ - { - "role": "maintainer", - "username": "Stormheg" - }, - { - "role": "maintainer", - "username": "cunla" - }, - { - "role": "maintainer", - "username": "ryancheley" - }, - { - "role": "maintainer", - "username": "tim-schilling" - }, - { - "role": "maintainer", - "username": "williln" - } - ], - "team_id": "15586545" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.org_teams" - ] - } - ] - }, - { - "mode": "managed", - "type": "github_team_members", - "name": "repo_admin_members", - "provider": "provider[\"registry.terraform.io/integrations/github\"]", - "instances": [ - { - "index_key": "axe-selenium-python", - "schema_version": 0, - "attributes": { - "id": "axe-selenium-python-admins", - "members": [ - { - "role": "member", - "username": "knyghty" - }, - { - "role": "member", - "username": "thibaudcolas" - } - ], - "team_id": "axe-selenium-python-admins" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_admin_team", - "github_team.repo_team" - ] - }, - { - "index_key": "best-practices", - "schema_version": 0, - "attributes": { - "id": "best-practices-admins", - "members": [ - { - "role": "maintainer", - "username": "Stormheg" - }, - { - "role": "maintainer", - "username": "cunla" - }, - { - "role": "maintainer", - "username": "ryancheley" - }, - { - "role": "maintainer", - "username": "tim-schilling" - }, - { - "role": "maintainer", - "username": "williln" - } - ], - "team_id": "best-practices-admins" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_admin_team", - "github_team.repo_team" - ] - }, - { - "index_key": "django-click", - "schema_version": 0, - "attributes": { - "id": "django-click-admins", - "members": [ - { - "role": "member", - "username": "FlipperPA" - }, - { - "role": "member", - "username": "GaretJax" - } - ], - "team_id": "django-click-admins" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_admin_team", - "github_team.repo_team" - ] - }, - { - "index_key": "django-cookie-consent", - "schema_version": 0, - "attributes": { - "id": "django-cookie-consent-admins", - "members": [ - { - "role": "member", - "username": "sergei-maertens" - } - ], - "team_id": "django-cookie-consent-admins" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_admin_team", - "github_team.repo_team" - ] - }, - { - "index_key": "django-debug-toolbar", - "schema_version": 0, - "attributes": { - "id": "django-debug-toolbar-admins", - "members": [ - { - "role": "maintainer", - "username": "tim-schilling" - }, - { - "role": "member", - "username": "matthiask" - } - ], - "team_id": "django-debug-toolbar-admins" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_admin_team", - "github_team.repo_team" - ] - }, - { - "index_key": "django-enum", - "schema_version": 0, - "attributes": { - "id": "django-enum-admins", - "members": [ - { - "role": "member", - "username": "bckohan" - } - ], - "team_id": "django-enum-admins" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_admin_team", - "github_team.repo_team" - ] - }, - { - "index_key": "django-fsm-2", - "schema_version": 0, - "attributes": { - "id": "django-fsm-2-admins", - "members": [ - { - "role": "member", - "username": "Natim" - }, - { - "role": "member", - "username": "pfouque" - } - ], - "team_id": "django-fsm-2-admins" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_admin_team", - "github_team.repo_team" - ] - }, - { - "index_key": "django-prometheus", - "schema_version": 0, - "attributes": { - "id": "django-prometheus-admins", - "members": [ - { - "role": "member", - "username": "asherf" - } - ], - "team_id": "django-prometheus-admins" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_admin_team", - "github_team.repo_team" - ] - }, - { - "index_key": "django-simple-history", - "schema_version": 0, - "attributes": { - "id": "django-simple-history-admins", - "members": [ - { - "role": "maintainer", - "username": "tim-schilling" - }, - { - "role": "member", - "username": "ddabble" - } - ], - "team_id": "django-simple-history-admins" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_admin_team", - "github_team.repo_team" - ] - }, - { - "index_key": "django-tailwind-cli", - "schema_version": 0, - "attributes": { - "id": "django-tailwind-cli-admins", - "members": [ - { - "role": "member", - "username": "oliverandrich" - } - ], - "team_id": "django-tailwind-cli-admins" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_admin_team", - "github_team.repo_team" - ] - }, - { - "index_key": "django-tasks-scheduler", - "schema_version": 0, - "attributes": { - "id": "django-tasks-scheduler-admins", - "members": [ - { - "role": "maintainer", - "username": "cunla" - } - ], - "team_id": "django-tasks-scheduler-admins" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_admin_team", - "github_team.repo_team" - ] - }, - { - "index_key": "django-typer", - "schema_version": 0, - "attributes": { - "id": "django-typer-admins", - "members": [ - { - "role": "member", - "username": "bckohan" - }, - { - "role": "member", - "username": "oliverandrich" - } - ], - "team_id": "django-typer-admins" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_admin_team", - "github_team.repo_team" - ] - }, - { - "index_key": "django-valkey", - "schema_version": 0, - "attributes": { - "id": "django-valkey-admins", - "members": [ - { - "role": "member", - "username": "amirreza8002" - } - ], - "team_id": "django-valkey-admins" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_admin_team", - "github_team.repo_team" - ] - }, - { - "index_key": "drf-excel", - "schema_version": 0, - "attributes": { - "id": "drf-excel-admins", - "members": [ - { - "role": "member", - "username": "FlipperPA" - }, - { - "role": "member", - "username": "browniebroke" - } - ], - "team_id": "drf-excel-admins" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_admin_team", - "github_team.repo_team" - ] - } - ] - }, - { - "mode": "managed", - "type": "github_team_members", - "name": "repo_committer_team_members", - "provider": "provider[\"registry.terraform.io/integrations/github\"]", - "instances": [ - { - "index_key": "best-practices", - "schema_version": 0, - "attributes": { - "id": "best-practices-committers", - "members": [ - { - "role": "member", - "username": "priyapahwa" - } - ], - "team_id": "best-practices-committers" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_committer_team", - "github_team.repo_team" - ] - }, - { - "index_key": "django-click", - "schema_version": 0, - "attributes": { - "id": "django-click-committers", - "members": [ - { - "role": "member", - "username": "ulgens" - } - ], - "team_id": "django-click-committers" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_committer_team", - "github_team.repo_team" - ] - }, - { - "index_key": "django-cookie-consent", - "schema_version": 0, - "attributes": { - "id": "django-cookie-consent-committers", - "members": [ - { - "role": "member", - "username": "MrCordeiro" - } - ], - "team_id": "django-cookie-consent-committers" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_committer_team", - "github_team.repo_team" - ] - }, - { - "index_key": "django-debug-toolbar", - "schema_version": 0, - "attributes": { - "id": "django-debug-toolbar-committers", - "members": [ - { - "role": "member", - "username": "elineda" - }, - { - "role": "member", - "username": "salty-ivy" - } - ], - "team_id": "django-debug-toolbar-committers" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_committer_team", - "github_team.repo_team" - ] - }, - { - "index_key": "django-tasks-scheduler", - "schema_version": 0, - "attributes": { - "id": "django-tasks-scheduler-committers", - "members": [ - { - "role": "member", - "username": "DhavalGojiya" - }, - { - "role": "member", - "username": "cclauss" - } - ], - "team_id": "django-tasks-scheduler-committers" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_committer_team", - "github_team.repo_team" - ] - }, - { - "index_key": "drf-excel", - "schema_version": 0, - "attributes": { - "id": "drf-excel-committers", - "members": [ - { - "role": "member", - "username": "rptmat57" - } - ], - "team_id": "drf-excel-committers" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_committer_team", - "github_team.repo_team" - ] - } - ] - }, - { - "mode": "managed", - "type": "github_team_members", - "name": "repo_team_members", - "provider": "provider[\"registry.terraform.io/integrations/github\"]", - "instances": [ - { - "index_key": "axe-selenium-python", - "schema_version": 0, - "attributes": { - "id": "axe-selenium-python", - "members": [ - { - "role": "member", - "username": "knyghty" - }, - { - "role": "member", - "username": "thibaudcolas" - } - ], - "team_id": "axe-selenium-python" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_team" - ] - }, - { - "index_key": "best-practices", - "schema_version": 0, - "attributes": { - "id": "best-practices", - "members": [ - { - "role": "maintainer", - "username": "Stormheg" - }, - { - "role": "maintainer", - "username": "cunla" - }, - { - "role": "maintainer", - "username": "ryancheley" - }, - { - "role": "maintainer", - "username": "tim-schilling" - }, - { - "role": "maintainer", - "username": "williln" - }, - { - "role": "member", - "username": "priyapahwa" - } - ], - "team_id": "best-practices" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_team" - ] - }, - { - "index_key": "django-click", - "schema_version": 0, - "attributes": { - "id": "django-click", - "members": [ - { - "role": "member", - "username": "FlipperPA" - }, - { - "role": "member", - "username": "GaretJax" - }, - { - "role": "member", - "username": "ulgens" - } - ], - "team_id": "django-click" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_team" - ] - }, - { - "index_key": "django-cookie-consent", - "schema_version": 0, - "attributes": { - "id": "django-cookie-consent", - "members": [ - { - "role": "member", - "username": "MrCordeiro" - }, - { - "role": "member", - "username": "sergei-maertens" - } - ], - "team_id": "django-cookie-consent" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_team" - ] - }, - { - "index_key": "django-debug-toolbar", - "schema_version": 0, - "attributes": { - "id": "django-debug-toolbar", - "members": [ - { - "role": "maintainer", - "username": "tim-schilling" - }, - { - "role": "member", - "username": "Chiemezuo" - }, - { - "role": "member", - "username": "JohananOppongAmoateng" - }, - { - "role": "member", - "username": "VeldaKiara" - }, - { - "role": "member", - "username": "Zakui" - }, - { - "role": "member", - "username": "andoriyaprashant" - }, - { - "role": "member", - "username": "blingblin-g" - }, - { - "role": "member", - "username": "devatbosch" - }, - { - "role": "member", - "username": "dr-rompecabezas" - }, - { - "role": "member", - "username": "elineda" - }, - { - "role": "member", - "username": "federicobond" - }, - { - "role": "member", - "username": "jmgutu" - }, - { - "role": "member", - "username": "matthiask" - }, - { - "role": "member", - "username": "salty-ivy" - } - ], - "team_id": "django-debug-toolbar" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_team" - ] - }, - { - "index_key": "django-enum", - "schema_version": 0, - "attributes": { - "id": "django-enum", - "members": [ - { - "role": "member", - "username": "bckohan" - } - ], - "team_id": "django-enum" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_team" - ] - }, - { - "index_key": "django-fsm-2", - "schema_version": 0, - "attributes": { - "id": "django-fsm-2", - "members": [ - { - "role": "member", - "username": "Natim" - }, - { - "role": "member", - "username": "giovannicimolin" - }, - { - "role": "member", - "username": "pfouque" - } - ], - "team_id": "django-fsm-2" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_team" - ] - }, - { - "index_key": "django-prometheus", - "schema_version": 0, - "attributes": { - "id": "django-prometheus", - "members": [ - { - "role": "member", - "username": "asherf" - } - ], - "team_id": "django-prometheus" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_team" - ] - }, - { - "index_key": "django-simple-history", - "schema_version": 0, - "attributes": { - "id": "django-simple-history", - "members": [ - { - "role": "maintainer", - "username": "tim-schilling" - }, - { - "role": "member", - "username": "ddabble" - } - ], - "team_id": "django-simple-history" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_team" - ] - }, - { - "index_key": "django-tailwind-cli", - "schema_version": 0, - "attributes": { - "id": "django-tailwind-cli", - "members": [ - { - "role": "member", - "username": "oliverandrich" - } - ], - "team_id": "django-tailwind-cli" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_team" - ] - }, - { - "index_key": "django-tasks-scheduler", - "schema_version": 0, - "attributes": { - "id": "django-tasks-scheduler", - "members": [ - { - "role": "maintainer", - "username": "cunla" - }, - { - "role": "member", - "username": "DhavalGojiya" - }, - { - "role": "member", - "username": "cclauss" - } - ], - "team_id": "django-tasks-scheduler" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_team" - ] - }, - { - "index_key": "django-typer", - "schema_version": 0, - "attributes": { - "id": "django-typer", - "members": [ - { - "role": "member", - "username": "bckohan" - }, - { - "role": "member", - "username": "oliverandrich" - } - ], - "team_id": "django-typer" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_team" - ] - }, - { - "index_key": "django-valkey", - "schema_version": 0, - "attributes": { - "id": "django-valkey", - "members": [ - { - "role": "member", - "username": "amirreza8002" - } - ], - "team_id": "django-valkey" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_team" - ] - }, - { - "index_key": "drf-excel", - "schema_version": 0, - "attributes": { - "id": "drf-excel", - "members": [ - { - "role": "member", - "username": "FlipperPA" - }, - { - "role": "member", - "username": "browniebroke" - }, - { - "role": "member", - "username": "justbackend" - }, - { - "role": "member", - "username": "rptmat57" - } - ], - "team_id": "drf-excel" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_team" - ] - } - ] - }, - { - "mode": "managed", - "type": "github_team_repository", - "name": "repo_admin_team_access", - "provider": "provider[\"registry.terraform.io/integrations/github\"]", - "instances": [ - { - "index_key": "axe-selenium-python", - "schema_version": 0, - "attributes": { - "etag": "W/\"60c36677839c5964797174ea5770e8b304312e4393f4f31f44307f84225888a2\"", - "id": "14236311:axe-selenium-python", - "permission": "admin", - "repository": "axe-selenium-python", - "team_id": "axe-selenium-python-admins" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_admin_team", - "github_team.repo_team" - ] - }, - { - "index_key": "best-practices", - "schema_version": 0, - "attributes": { - "etag": "W/\"e8eb42b3afacd8c4bf6067e5fdb02b1c3f6e0f59f1e8e0bafa16b8720dc0b2a3\"", - "id": "9757650:best-practices", - "permission": "admin", - "repository": "best-practices", - "team_id": "best-practices-admins" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_admin_team", - "github_team.repo_team" - ] - }, - { - "index_key": "django-click", - "schema_version": 0, - "attributes": { - "etag": "W/\"a587a0dbcda5677e43d7b654626b7773616fe5a0ebe80329c2f5c3bc3e262d9d\"", - "id": "12315701:django-click", - "permission": "admin", - "repository": "django-click", - "team_id": "django-click-admins" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_admin_team", - "github_team.repo_team" - ] - }, - { - "index_key": "django-cookie-consent", - "schema_version": 0, - "attributes": { - "etag": "W/\"615e6fec0a51cc159136c8d351c06a322883877b3cbfca1a8964548e77975f1f\"", - "id": "13287527:django-cookie-consent", - "permission": "admin", - "repository": "django-cookie-consent", - "team_id": "django-cookie-consent-admins" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_admin_team", - "github_team.repo_team" - ] - }, - { - "index_key": "django-debug-toolbar", - "schema_version": 0, - "attributes": { - "etag": "W/\"78e6747ba16b287bd91838f122f392c8c23c1f2eef8d40f9bf674a3f075c747e\"", - "id": "11354341:django-debug-toolbar", - "permission": "admin", - "repository": "django-debug-toolbar", - "team_id": "django-debug-toolbar-admins" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_admin_team", - "github_team.repo_team" - ] - }, - { - "index_key": "django-enum", - "schema_version": 0, - "attributes": { - "etag": "W/\"eb67fbfe762315fcc56fc611473293bd4b7914be5aa2a062185d50bf98a1272d\"", - "id": "12828751:django-enum", - "permission": "admin", - "repository": "django-enum", - "team_id": "django-enum-admins" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_admin_team", - "github_team.repo_team" - ] - }, - { - "index_key": "django-fsm-2", - "schema_version": 0, - "attributes": { - "etag": "W/\"b3d95aada5511e7faf5e37baf129d0e596099a616e542f7a128eec963bbe7513\"", - "id": "10870432:django-fsm-2", - "permission": "admin", - "repository": "django-fsm-2", - "team_id": "django-fsm-2-admins" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_admin_team", - "github_team.repo_team" - ] - }, - { - "index_key": "django-prometheus", - "schema_version": 0, - "attributes": { - "etag": "W/\"f817343e7b9ae1bc7a82d8ceeaf87d6c7b6f3d144ba54640acd8278804c7ea3e\"", - "id": "13333849:django-prometheus", - "permission": "admin", - "repository": "django-prometheus", - "team_id": "django-prometheus-admins" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_admin_team", - "github_team.repo_team" - ] - }, - { - "index_key": "django-simple-history", - "schema_version": 0, - "attributes": { - "etag": "W/\"b86c23a0f069e33083ddc64a6b2dc5a8e4b5c7d08d478740c0569ef9dd380aaa\"", - "id": "13286901:django-simple-history", - "permission": "admin", - "repository": "django-simple-history", - "team_id": "django-simple-history-admins" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_admin_team", - "github_team.repo_team" - ] - }, - { - "index_key": "django-tailwind-cli", - "schema_version": 0, - "attributes": { - "etag": "W/\"fed639b4a2a5f6bcaad8979a9a7b807ceb09a17461deb8bd69d644d8c0d8a2ea\"", - "id": "11394000:django-tailwind-cli", - "permission": "admin", - "repository": "django-tailwind-cli", - "team_id": "django-tailwind-cli-admins" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_admin_team", - "github_team.repo_team" - ] - }, - { - "index_key": "django-tasks-scheduler", - "schema_version": 0, - "attributes": { - "etag": "W/\"90b127a31fba83768dd71030416c2bb12fa39717ffcdf2de3305939f225c0b83\"", - "id": "10707221:django-tasks-scheduler", - "permission": "admin", - "repository": "django-tasks-scheduler", - "team_id": "django-tasks-scheduler-admins" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_admin_team", - "github_team.repo_team" - ] - }, - { - "index_key": "django-typer", - "schema_version": 0, - "attributes": { - "etag": "W/\"5b55beb3c70ed9c8b8f71f9061e030fab229813dd290d575d4e6bf5b376387fd\"", - "id": "11217214:django-typer", - "permission": "admin", - "repository": "django-typer", - "team_id": "django-typer-admins" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_admin_team", - "github_team.repo_team" - ] - }, - { - "index_key": "django-valkey", - "schema_version": 0, - "attributes": { - "etag": "W/\"215142dcf3549cd641496584f684dbc4b1c6c29fe2d6914b1bd21d826f6d794c\"", - "id": "13334520:django-valkey", - "permission": "admin", - "repository": "django-valkey", - "team_id": "django-valkey-admins" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_admin_team", - "github_team.repo_team" - ] - }, - { - "index_key": "drf-excel", - "schema_version": 0, - "attributes": { - "etag": "W/\"05a8a920f012097870fb8a298e0e56d107341f1d45645d9673a74ef8030c07e3\"", - "id": "11341702:drf-excel", - "permission": "admin", - "repository": "drf-excel", - "team_id": "drf-excel-admins" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_admin_team", - "github_team.repo_team" - ] - } - ] - }, - { - "mode": "managed", - "type": "github_team_repository", - "name": "repo_committer_team_access", - "provider": "provider[\"registry.terraform.io/integrations/github\"]", - "instances": [ - { - "index_key": "axe-selenium-python", - "schema_version": 0, - "attributes": { - "etag": "W/\"0d368165178af04042c8e4a553f3e22996be62ceca4c1c6b82f8435576127e03\"", - "id": "14236310:axe-selenium-python", - "permission": "maintain", - "repository": "axe-selenium-python", - "team_id": "axe-selenium-python-committers" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_committer_team", - "github_team.repo_team" - ] - }, - { - "index_key": "best-practices", - "schema_version": 0, - "attributes": { - "etag": "W/\"dafb7c0ad512bc98e7a86a32a40e1b74a352e80b9ec03fe5d6ee1a2ffb3f7082\"", - "id": "9757668:best-practices", - "permission": "maintain", - "repository": "best-practices", - "team_id": "best-practices-committers" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_committer_team", - "github_team.repo_team" - ] - }, - { - "index_key": "django-click", - "schema_version": 0, - "attributes": { - "etag": "W/\"d0538b69847f82541d7fdc134bc0a8a5522e71fb3149515636c078bba7f8ec22\"", - "id": "12315700:django-click", - "permission": "maintain", - "repository": "django-click", - "team_id": "django-click-committers" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_committer_team", - "github_team.repo_team" - ] - }, - { - "index_key": "django-cookie-consent", - "schema_version": 0, - "attributes": { - "etag": "W/\"34d878c2bddf3341ff42985dca487e0e8d205940755ad5ef9fb4f1f3de3c9d47\"", - "id": "13287526:django-cookie-consent", - "permission": "maintain", - "repository": "django-cookie-consent", - "team_id": "django-cookie-consent-committers" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_committer_team", - "github_team.repo_team" - ] - }, - { - "index_key": "django-debug-toolbar", - "schema_version": 0, - "attributes": { - "etag": "W/\"68c2ce7b4b673cc839305bb6c541978ce9c6e70691ea743a4cc2d622f4b6895b\"", - "id": "11354340:django-debug-toolbar", - "permission": "maintain", - "repository": "django-debug-toolbar", - "team_id": "django-debug-toolbar-committers" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_committer_team", - "github_team.repo_team" - ] - }, - { - "index_key": "django-enum", - "schema_version": 0, - "attributes": { - "etag": "W/\"044026344f6d81c96bc9743495c0c0c5ddf2b7af7f913a2b638f26c7e87afd45\"", - "id": "12828750:django-enum", - "permission": "maintain", - "repository": "django-enum", - "team_id": "django-enum-committers" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_committer_team", - "github_team.repo_team" - ] - }, - { - "index_key": "django-fsm-2", - "schema_version": 0, - "attributes": { - "etag": "W/\"bcbfbbb770d832541346910a183f7cc0352c41f07ae4a459faf5ef8f4b1fbde9\"", - "id": "10870433:django-fsm-2", - "permission": "maintain", - "repository": "django-fsm-2", - "team_id": "django-fsm-2-committers" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_committer_team", - "github_team.repo_team" - ] - }, - { - "index_key": "django-prometheus", - "schema_version": 0, - "attributes": { - "etag": "W/\"06c60919e59122a2e480345baa72b54bbe8efa5961e0011b01655a35a59b7aea\"", - "id": "13333848:django-prometheus", - "permission": "maintain", - "repository": "django-prometheus", - "team_id": "django-prometheus-committers" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_committer_team", - "github_team.repo_team" - ] - }, - { - "index_key": "django-simple-history", - "schema_version": 0, - "attributes": { - "etag": "W/\"a0adcfd3e4408c29b2c774c4566d143e6a3ee3e8aa12b72cbc2aa36236afc6fa\"", - "id": "13286900:django-simple-history", - "permission": "maintain", - "repository": "django-simple-history", - "team_id": "django-simple-history-committers" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_committer_team", - "github_team.repo_team" - ] - }, - { - "index_key": "django-tailwind-cli", - "schema_version": 0, - "attributes": { - "etag": "W/\"78566ba3d97c6a1761b6950123dd5c77ea4f82f17cdbc024d29ba604f40005b9\"", - "id": "11394001:django-tailwind-cli", - "permission": "maintain", - "repository": "django-tailwind-cli", - "team_id": "django-tailwind-cli-committers" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_committer_team", - "github_team.repo_team" - ] - }, - { - "index_key": "django-tasks-scheduler", - "schema_version": 0, - "attributes": { - "etag": "W/\"aaf2bc97c47cb2f63c654e887697dda267010606410bcf8b3beccdc2bd755d5e\"", - "id": "10707220:django-tasks-scheduler", - "permission": "maintain", - "repository": "django-tasks-scheduler", - "team_id": "django-tasks-scheduler-committers" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_committer_team", - "github_team.repo_team" - ] - }, - { - "index_key": "django-typer", - "schema_version": 0, - "attributes": { - "etag": "W/\"c8f4acbfe754b7255d457045d7ba282e641d4559278f4bf09a2e771d092df36e\"", - "id": "11217215:django-typer", - "permission": "maintain", - "repository": "django-typer", - "team_id": "django-typer-committers" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_committer_team", - "github_team.repo_team" - ] - }, - { - "index_key": "django-valkey", - "schema_version": 0, - "attributes": { - "etag": "W/\"7a096004cb82de6e4536f5a99369a46d7764e17878ae1e3037ea8b5104f8a624\"", - "id": "13334521:django-valkey", - "permission": "maintain", - "repository": "django-valkey", - "team_id": "django-valkey-committers" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_committer_team", - "github_team.repo_team" - ] - }, - { - "index_key": "drf-excel", - "schema_version": 0, - "attributes": { - "etag": "W/\"2f3f10cca71e685ddbd072129db6cf060fdc2224a3bbedfb942c13cc8d3722d0\"", - "id": "11341703:drf-excel", - "permission": "maintain", - "repository": "drf-excel", - "team_id": "drf-excel-committers" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_committer_team", - "github_team.repo_team" - ] - } - ] - }, - { - "mode": "managed", - "type": "github_team_repository", - "name": "repo_team_access", - "provider": "provider[\"registry.terraform.io/integrations/github\"]", - "instances": [ - { - "index_key": "axe-selenium-python", - "schema_version": 0, - "attributes": { - "etag": "W/\"73ae70563a934bbd34e22cd47882c6e96bfa01c10a9bc57bcadf21a57add3eaa\"", - "id": "14236309:axe-selenium-python", - "permission": "triage", - "repository": "axe-selenium-python", - "team_id": "axe-selenium-python" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_team" - ] - }, - { - "index_key": "best-practices", - "schema_version": 0, - "attributes": { - "etag": "W/\"32bbc50bd689dfe6bad802b2ed3b275c65c82678cb683baf0fdb8775d2602a73\"", - "id": "9757678:best-practices", - "permission": "triage", - "repository": "best-practices", - "team_id": "best-practices" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_team" - ] - }, - { - "index_key": "django-click", - "schema_version": 0, - "attributes": { - "etag": "W/\"be01c1a2818de448ba76f41aa4bbfdfeffbd6794cb42fa468afd88f805875470\"", - "id": "12315699:django-click", - "permission": "triage", - "repository": "django-click", - "team_id": "django-click" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_team" - ] - }, - { - "index_key": "django-cookie-consent", - "schema_version": 0, - "attributes": { - "etag": "W/\"ad26fd419a3fd7a00d9e643344f7b0f6fb576db4c6d84900dfdce9b7cfac7ed4\"", - "id": "13287524:django-cookie-consent", - "permission": "triage", - "repository": "django-cookie-consent", - "team_id": "django-cookie-consent" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_team" - ] - }, - { - "index_key": "django-debug-toolbar", - "schema_version": 0, - "attributes": { - "etag": "W/\"2a22227cf595b34c302761a7c78a8a70eac11f7340634abd72b8cf447648de62\"", - "id": "11354339:django-debug-toolbar", - "permission": "triage", - "repository": "django-debug-toolbar", - "team_id": "django-debug-toolbar" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_team" - ] - }, - { - "index_key": "django-enum", - "schema_version": 0, - "attributes": { - "etag": "W/\"48e36882aeff82d71c81db508dcf612ac025f721367c4c5dd63c41aeb8bb3a38\"", - "id": "12828748:django-enum", - "permission": "triage", - "repository": "django-enum", - "team_id": "django-enum" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_team" - ] - }, - { - "index_key": "django-fsm-2", - "schema_version": 0, - "attributes": { - "etag": "W/\"5d16f91b6e1a24ec7d8166bee305e4cf09ea0ec4955f4fb497caa33fbde2a07a\"", - "id": "10870431:django-fsm-2", - "permission": "triage", - "repository": "django-fsm-2", - "team_id": "django-fsm-2" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_team" - ] - }, - { - "index_key": "django-prometheus", - "schema_version": 0, - "attributes": { - "etag": "W/\"9dba5030f376ad62e7d3f7dbd8eab691942b598333afc60a4b2639f901104cbd\"", - "id": "13333847:django-prometheus", - "permission": "triage", - "repository": "django-prometheus", - "team_id": "django-prometheus" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_team" - ] - }, - { - "index_key": "django-simple-history", - "schema_version": 0, - "attributes": { - "etag": "W/\"2938ae7e972a2a07aa5d9ef29076784bea7b71b6c0114ab6bb7b1016ef0b9761\"", - "id": "13286898:django-simple-history", - "permission": "triage", - "repository": "django-simple-history", - "team_id": "django-simple-history" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_team" - ] - }, - { - "index_key": "django-tailwind-cli", - "schema_version": 0, - "attributes": { - "etag": "W/\"d12bd01e4aaf68b2f615ec42aa7811c84d72c23b360ec6df299dde0c4c801bd4\"", - "id": "11393999:django-tailwind-cli", - "permission": "triage", - "repository": "django-tailwind-cli", - "team_id": "django-tailwind-cli" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_team" - ] - }, - { - "index_key": "django-tasks-scheduler", - "schema_version": 0, - "attributes": { - "etag": "W/\"4c589d755497b83afc67541a8aaca40c1b2c8260f23b6e8dee2b12b13a68330f\"", - "id": "10707217:django-tasks-scheduler", - "permission": "triage", - "repository": "django-tasks-scheduler", - "team_id": "django-tasks-scheduler" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_team" - ] - }, - { - "index_key": "django-typer", - "schema_version": 0, - "attributes": { - "etag": "W/\"a6f1036fd88a20f2546649cf4cb82ea3b233418949ffb7cd81c63847fac58af7\"", - "id": "11217213:django-typer", - "permission": "triage", - "repository": "django-typer", - "team_id": "django-typer" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_team" - ] - }, - { - "index_key": "django-valkey", - "schema_version": 0, - "attributes": { - "etag": "W/\"b9e719fff6d3d7bfa8aa4b769da43002468329d66827f2322692aa13efeaa6d9\"", - "id": "13334519:django-valkey", - "permission": "triage", - "repository": "django-valkey", - "team_id": "django-valkey" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_team" - ] - }, - { - "index_key": "drf-excel", - "schema_version": 0, - "attributes": { - "etag": "W/\"3cafab9834c1ca62cfa11e3bed9c7baca4d22b0e9494efcb978851fb5acdd2a9\"", - "id": "11341700:drf-excel", - "permission": "triage", - "repository": "drf-excel", - "team_id": "drf-excel" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_team" - ] - } - ] - }, - { - "mode": "managed", - "type": "github_team_settings", - "name": "this", - "provider": "provider[\"registry.terraform.io/integrations/github\"]", - "instances": [ - { - "index_key": "axe-selenium-python", - "schema_version": 0, - "attributes": { - "id": "T_kwDOCaaRBM4A2TqV", - "review_request_delegation": [ - { - "algorithm": "LOAD_BALANCE", - "member_count": 2, - "notify": false - } - ], - "team_id": "axe-selenium-python", - "team_slug": "axe-selenium-python", - "team_uid": "T_kwDOCaaRBM4A2TqV" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_team" - ] - }, - { - "index_key": "best-practices", - "schema_version": 0, - "attributes": { - "id": "T_kwDOCaaRBM4AlOPu", - "review_request_delegation": [ - { - "algorithm": "LOAD_BALANCE", - "member_count": 2, - "notify": false - } - ], - "team_id": "best-practices", - "team_slug": "best-practices", - "team_uid": "T_kwDOCaaRBM4AlOPu" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_team" - ] - }, - { - "index_key": "django-click", - "schema_version": 0, - "attributes": { - "id": "T_kwDOCaaRBM4Au-wz", - "review_request_delegation": [ - { - "algorithm": "LOAD_BALANCE", - "member_count": 2, - "notify": false - } - ], - "team_id": "django-click", - "team_slug": "django-click", - "team_uid": "T_kwDOCaaRBM4Au-wz" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_team" - ] - }, - { - "index_key": "django-cookie-consent", - "schema_version": 0, - "attributes": { - "id": "T_kwDOCaaRBM4AysBk", - "review_request_delegation": [ - { - "algorithm": "LOAD_BALANCE", - "member_count": 2, - "notify": false - } - ], - "team_id": "django-cookie-consent", - "team_slug": "django-cookie-consent", - "team_uid": "T_kwDOCaaRBM4AysBk" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_team" - ] - }, - { - "index_key": "django-debug-toolbar", - "schema_version": 0, - "attributes": { - "id": "T_kwDOCaaRBM4ArUDj", - "review_request_delegation": [ - { - "algorithm": "LOAD_BALANCE", - "member_count": 2, - "notify": false - } - ], - "team_id": "django-debug-toolbar", - "team_slug": "django-debug-toolbar", - "team_uid": "T_kwDOCaaRBM4ArUDj" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_team" - ] - }, - { - "index_key": "django-enum", - "schema_version": 0, - "attributes": { - "id": "T_kwDOCaaRBM4Aw8BM", - "review_request_delegation": [ - { - "algorithm": "LOAD_BALANCE", - "member_count": 2, - "notify": false - } - ], - "team_id": "django-enum", - "team_slug": "django-enum", - "team_uid": "T_kwDOCaaRBM4Aw8BM" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_team" - ] - }, - { - "index_key": "django-fsm-2", - "schema_version": 0, - "attributes": { - "id": "T_kwDOCaaRBM4Apd6f", - "review_request_delegation": [ - { - "algorithm": "LOAD_BALANCE", - "member_count": 2, - "notify": false - } - ], - "team_id": "django-fsm-2", - "team_slug": "django-fsm-2", - "team_uid": "T_kwDOCaaRBM4Apd6f" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_team" - ] - }, - { - "index_key": "django-prometheus", - "schema_version": 0, - "attributes": { - "id": "T_kwDOCaaRBM4Ay3VX", - "review_request_delegation": [ - { - "algorithm": "LOAD_BALANCE", - "member_count": 2, - "notify": false - } - ], - "team_id": "django-prometheus", - "team_slug": "django-prometheus", - "team_uid": "T_kwDOCaaRBM4Ay3VX" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_team" - ] - }, - { - "index_key": "django-simple-history", - "schema_version": 0, - "attributes": { - "id": "T_kwDOCaaRBM4Ayr3y", - "review_request_delegation": [ - { - "algorithm": "LOAD_BALANCE", - "member_count": 2, - "notify": false - } - ], - "team_id": "django-simple-history", - "team_slug": "django-simple-history", - "team_uid": "T_kwDOCaaRBM4Ayr3y" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "eyJzY2hlbWFfdmVyc2lvbiI6IjAifQ==", - "dependencies": [ - "github_team.repo_team" - ] - }, - { - "index_key": "django-tailwind-cli", - "schema_version": 0, - "attributes": { - "id": "T_kwDOCaaRBM4ArdvP", - "review_request_delegation": [ - { - "algorithm": "LOAD_BALANCE", - "member_count": 2, - "notify": false - } - ], - "team_id": "django-tailwind-cli", - "team_slug": "django-tailwind-cli", - "team_uid": "T_kwDOCaaRBM4ArdvP" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_team" - ] - }, - { - "index_key": "django-tasks-scheduler", - "schema_version": 0, - "attributes": { - "id": "T_kwDOCaaRBM4Ao2ER", - "review_request_delegation": [ - { - "algorithm": "LOAD_BALANCE", - "member_count": 2, - "notify": false - } - ], - "team_id": "django-tasks-scheduler", - "team_slug": "django-tasks-scheduler", - "team_uid": "T_kwDOCaaRBM4Ao2ER" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_team" - ] - }, - { - "index_key": "django-typer", - "schema_version": 0, - "attributes": { - "id": "T_kwDOCaaRBM4Aqyk9", - "review_request_delegation": [ - { - "algorithm": "LOAD_BALANCE", - "member_count": 2, - "notify": false - } - ], - "team_id": "django-typer", - "team_slug": "django-typer", - "team_uid": "T_kwDOCaaRBM4Aqyk9" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_team" - ] - }, - { - "index_key": "django-valkey", - "schema_version": 0, - "attributes": { - "id": "T_kwDOCaaRBM4Ay3f3", - "review_request_delegation": [ - { - "algorithm": "LOAD_BALANCE", - "member_count": 2, - "notify": false - } - ], - "team_id": "django-valkey", - "team_slug": "django-valkey", - "team_uid": "T_kwDOCaaRBM4Ay3f3" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_team" - ] - }, - { - "index_key": "drf-excel", - "schema_version": 0, - "attributes": { - "id": "T_kwDOCaaRBM4ArQ-E", - "review_request_delegation": [ - { - "algorithm": "LOAD_BALANCE", - "member_count": 2, - "notify": false - } - ], - "team_id": "drf-excel", - "team_slug": "drf-excel", - "team_uid": "T_kwDOCaaRBM4ArQ-E" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.repo_team" - ] - } - ] - } - ], - "check_results": null -} +{"version":4,"terraform_version":"1.11.1","serial":784,"lineage":"425397de-8394-a003-8a6c-bce854d9cc53","outputs":{"invalid_users":{"value":[],"type":["list","string"]}},"resources":[{"mode":"data","type":"github_users","name":"users","provider":"provider[\"registry.terraform.io/integrations/github\"]","instances":[{"schema_version":0,"attributes":{"emails":["me@youngkwang.dev","","","","jonathan@stoppani.name","wogur981208@gmail.com","","","mogost@aartemyev.ru","fernando_cordeiro@live.com","","","","","","","","","zakuijules@live.fr","","","akshay12345vin@gmail.com","","","hello@asherfoa.com","","jon.c.culver@gmail.com","bckohan@gmail.com","","","carlton.gibson@noumenal.es","","","","","","","derek.payton@gmail.com","felavid@gmail.com","elineda@elineda.ovh","federicobond@gmail.com","fsbraun@gmx.de","terzo.giannis@gmail.com","scalamoosh@gmail.com","","","","wogur981208@gmail.com","","","","","jnovinger@gmail.com","info@johnatanmoran.com","","josh@joshthomas.dev","","","tom@carrick.eu","uriel@corfa.fr","me@kytta.dev","leogregianin@gmail.com","manelclos@gmail.com","mk@feinheit.ch","","mkalioby@mkalioby.com","mnazrul.c@gmail.com","mzemlickis@gmail.com","info@akmiller.co.uk","","info@okotdaniel.com","oliver@andrich.me","","","paolo@melchiorre.org","","","pahwa.priya19@gmail.com","mathieu.rampant@gmail.com","","aman2001mi@gmail.com","","","","thibaudcolas@gmail.com","schillingt@better-simple.com","","","","vinlawz07@gmail.com","",""],"id":"e228fd6ad0fdac3cb4195558a7556b67","logins":["2ykwang","Chiemezuo","DhavalGojiya","FlipperPA","GaretJax","JaeHyuckSa","JohananOppongAmoateng","Josephchinedu","Mogost","MrCordeiro","Natim","RealOrangeOne","Shrikantgiri25","SinkuKumar","Stormheg","TimothyMalahy","VeldaKiara","Violette-Allotey","Zakui","adRn-s","adamghill","akshayvinchurkar","amirreza8002","andoriyaprashant","asherf","ayimdomnic","bahoo","bckohan","blingblin-g","browniebroke","carltongibson","cgl","clintonb","cunla","ddabble","deronnax","devatbosch","dmpayton","dr-rompecabezas","elineda","federicobond","fsbraun","g-nie","gav-fyi","giovannicimolin","input","jacklinke","JaeHyuckSa","jburns6789","jcjudkins","jezdez","jmgutu","jnovinger","johnatanmoran","johnfraney","joshuadavidthomas","justbackend","kevin-brown","knyghty","korfuri","kytta","leogregianin","manelclos","matthiask","mihrab34","mkalioby","mnislam01","mzemlickis","nanorepublica","niltonpimentel02","okotdaniel","oliverandrich","ontowhee","p-r-a-v-i-n","pauloxnet","peterthomassen","pfouque","priyapahwa","rptmat57","ryancheley","salty-ivy","sergei-maertens","sobolevn","testSchilling","thibaudcolas","tim-schilling","ulgens","unmonoqueteclea","vacarme","vinlawz","viscofuse","williln"],"node_ids":["MDQ6VXNlcjY4MzI3OTA=","MDQ6VXNlcjI5NDcwNTE2","MDQ6VXNlcjUzODU2NTU1","MDQ6VXNlcjY4MTY0","MDQ6VXNlcjg2MjM2","U_kgDOBj-X0w","MDQ6VXNlcjg4NDExNjE0","MDQ6VXNlcjQ3ODUyOTI1","MDQ6VXNlcjcyMTk2Mw==","MDQ6VXNlcjIwNTk4NTcx","MDQ6VXNlcjIyOTQ1Mw==","MDQ6VXNlcjY1Mjc0ODk=","MDQ6VXNlcjkxMTIyMzE5","MDQ6VXNlcjczNzg1Nzk1","MDQ6VXNlcjEzODU2NTE1","MDQ6VXNlcjUwMjE3Nzgz","MDQ6VXNlcjMyNTUyMjk2","MDQ6VXNlcjY4ODY2MjQ2","MDQ6VXNlcjE3NTQzODE4","MDQ6VXNlcjYyOTcxOTk1","MDQ6VXNlcjMxNzA0NQ==","MDQ6VXNlcjEwNTEwODg5","U_kgDOByTH3Q","U_kgDOB0B3aQ","MDQ6VXNlcjEyNjgwODg=","MDQ6VXNlcjYyMTU5MjU=","MDQ6VXNlcjQzMDQxNQ==","MDQ6VXNlcjI2MzIwNzQ5","MDQ6VXNlcjYwMDkwMzkx","MDQ6VXNlcjg2MTA0NA==","MDQ6VXNlcjY0Njg2","MDQ6VXNlcjE2MTUxNTA=","MDQ6VXNlcjkxMDUxMA==","MDQ6VXNlcjM0MTk3MjE=","MDQ6VXNlcjYwNTg3NDU=","MDQ6VXNlcjQzOTI3OQ==","U_kgDOCkDCgw","MDQ6VXNlcjE0OTkxOA==","MDQ6VXNlcjc2NzA4NDM=","MDQ6VXNlcjI0OTk2MDE2","MDQ6VXNlcjEzODQyNg==","MDQ6VXNlcjE2OTA0NDc3","MDQ6VXNlcjkwOTA0NDM=","MDQ6VXNlcjU4NTI5MQ==","MDQ6VXNlcjI3ODkzMzg1","MDQ6VXNlcjQ2Mjk4Nw==","MDQ6VXNlcjczNTU0Njcy","U_kgDOBj-X0w","U_kgDOBwTNvg","MDQ6VXNlcjM0NDE3NTcz","MDQ6VXNlcjE2MTA=","MDQ6VXNlcjE0NDExNjE=","MDQ6VXNlcjEwMzQ5OQ==","MDQ6VXNlcjUzNDIxMTM=","MDQ6VXNlcjE3Mjg1Mjg=","MDQ6VXNlcjE5ODk2MjY3","U_kgDOBYTIXg","MDQ6VXNlcjE5OTE4NTA=","MDQ6VXNlcjM4NzEzNTQ=","MDQ6VXNlcjExMjQyNjM=","MDQ6VXNlcjY1NjYyNDg=","MDQ6VXNlcjE2ODQwNTM=","MDQ6VXNlcjQ2MzgzMg==","MDQ6VXNlcjI2Mjc=","MDQ6VXNlcjM1NTYyMTMx","MDQ6VXNlcjEwNDE0MDIw","MDQ6VXNlcjI0OTI5NDY2","MDQ6VXNlcjQ1NTY5NDQ=","MDQ6VXNlcjE5OTc5NDA=","MDQ6VXNlcjYzNjA1NDg1","MDQ6VXNlcjQxNzQ0MDEy","MDQ6VXNlcjc1OA==","MDQ6VXNlcjgyNjA3NzIz","MDQ6VXNlcjkxMTI1NTQw","MDQ6VXNlcjUyMTA5Nw==","MDQ6VXNlcjQyNDI2ODM=","MDQ6VXNlcjgzMDAwMDE=","MDQ6VXNlcjc3MDc1NDQ5","MDQ6VXNlcjE0MzI5Mzg4","MDQ6VXNlcjk4NTc3Nzk=","MDQ6VXNlcjc0NTUzOTUx","MDQ6VXNlcjU1MTg1NTA=","MDQ6VXNlcjQ2NjAyNzU=","U_kgDOCdBRFg","MDQ6VXNlcjg3NzU4NQ==","MDQ6VXNlcjEyODEyMTU=","MDQ6VXNlcjE2NjYzNw==","MDQ6VXNlcjQ3MDU3NTc=","MDQ6VXNlcjUxMjM3MTE3","U_kgDOCxTEHw","MDQ6VXNlcjM1MTUwMDAx","MDQ6VXNlcjIyODYzMDQ="],"unknown_logins":[],"usernames":["2ykwang","Chiemezuo","DhavalGojiya","FlipperPA","GaretJax","JaeHyuckSa","JohananOppongAmoateng","Josephchinedu","Mogost","MrCordeiro","Natim","RealOrangeOne","Shrikantgiri25","SinkuKumar","Stormheg","TimothyMalahy","VeldaKiara","Violette-Allotey","Zakui","adRn-s","adamghill","akshayvinchurkar","amirreza8002","andoriyaprashant","asherf","ayimdomnic","bahoo","bckohan","blingblin-g","browniebroke","carltongibson","cgl","clintonb","cunla","ddabble","deronnax","devatbosch","dmpayton","dr-rompecabezas","elineda","federicobond","fsbraun","g-nie","gav-fyi","giovannicimolin","input","jacklinke","jaehyuckSa","jburns6789","jcjudkins","jezdez","jmgutu","jnovinger","johnatanmoran","johnfraney","joshuadavidthomas","justbackend","kevin-brown","knyghty","korfuri","kytta","leogregianin","manelclos","matthiask","mihrab34","mkalioby","mnislam01","mzemlickis","nanorepublica","niltonpimentel02","okotdaniel","oliverandrich","ontowhee","p-r-a-v-i-n","pauloxnet","peterthomassen","pfouque","priyapahwa","rptmat57","ryancheley","salty-ivy","sergei-maertens","sobolevn","testSchilling","thibaudcolas","tim-schilling","ulgens","unmonoqueteclea","vacarme","vinlawz","viscofuse","williln"]},"sensitive_attributes":[]}]},{"mode":"managed","type":"github_repository","name":"this","provider":"provider[\"registry.terraform.io/integrations/github\"]","instances":[{"index_key":".github","schema_version":1,"attributes":{"allow_auto_merge":false,"allow_merge_commit":false,"allow_rebase_merge":false,"allow_squash_merge":true,"allow_update_branch":true,"archive_on_destroy":true,"archived":false,"auto_init":false,"default_branch":"main","delete_branch_on_merge":true,"description":"A Special Repository.","etag":"W/\"ac350a50d35e38f6a30f8304696ffd37ab0e4fd4e2fe00dfe935644fe8e9633d\"","fork":"false","full_name":"django-commons/.github","git_clone_url":"git://github.com/django-commons/.github.git","gitignore_template":null,"has_discussions":true,"has_downloads":true,"has_issues":true,"has_projects":true,"has_wiki":false,"homepage_url":"","html_url":"https://github.com/django-commons/.github","http_clone_url":"https://github.com/django-commons/.github.git","id":".github","ignore_vulnerability_alerts_during_read":null,"is_template":false,"license_template":null,"merge_commit_message":"PR_TITLE","merge_commit_title":"MERGE_MESSAGE","name":".github","node_id":"R_kgDOLkyRSQ","pages":[],"primary_language":"","private":false,"repo_id":776769865,"security_and_analysis":[{"advanced_security":[],"code_security":[],"secret_scanning":[{"status":"disabled"}],"secret_scanning_ai_detection":[],"secret_scanning_non_provider_patterns":[],"secret_scanning_push_protection":[{"status":"disabled"}]}],"source_owner":"","source_repo":"","squash_merge_commit_message":"COMMIT_MESSAGES","squash_merge_commit_title":"COMMIT_OR_PR_TITLE","ssh_clone_url":"git@github.com:django-commons/.github.git","svn_url":"https://github.com/django-commons/.github","template":[],"topics":[],"visibility":"public","vulnerability_alerts":true,"web_commit_signoff_required":false},"sensitive_attributes":[],"private":"eyJzY2hlbWFfdmVyc2lvbiI6IjEifQ=="},{"index_key":"axe-selenium-python","schema_version":1,"attributes":{"allow_auto_merge":false,"allow_merge_commit":false,"allow_rebase_merge":true,"allow_squash_merge":true,"allow_update_branch":true,"archive_on_destroy":true,"archived":false,"auto_init":false,"default_branch":"main","delete_branch_on_merge":true,"description":"Automated web accessibility testing with Axe and Selenium","etag":"W/\"5f5751e289969fc1b5b5277a03c7a06cb542aeb68a73339b5917c38701545b6d\"","fork":"false","full_name":"django-commons/axe-selenium-python","git_clone_url":"git://github.com/django-commons/axe-selenium-python.git","gitignore_template":null,"has_discussions":true,"has_downloads":true,"has_issues":true,"has_projects":true,"has_wiki":false,"homepage_url":"","html_url":"https://github.com/django-commons/axe-selenium-python","http_clone_url":"https://github.com/django-commons/axe-selenium-python.git","id":"axe-selenium-python","ignore_vulnerability_alerts_during_read":null,"is_template":false,"license_template":null,"merge_commit_message":"PR_TITLE","merge_commit_title":"MERGE_MESSAGE","name":"axe-selenium-python","node_id":"MDEwOlJlcG9zaXRvcnk5NDEyOTM2NA==","pages":[],"primary_language":"Python","private":false,"repo_id":94129364,"security_and_analysis":[{"advanced_security":[],"code_security":[],"secret_scanning":[{"status":"disabled"}],"secret_scanning_ai_detection":[],"secret_scanning_non_provider_patterns":[],"secret_scanning_push_protection":[{"status":"disabled"}]}],"source_owner":"","source_repo":"","squash_merge_commit_message":"COMMIT_MESSAGES","squash_merge_commit_title":"COMMIT_OR_PR_TITLE","ssh_clone_url":"git@github.com:django-commons/axe-selenium-python.git","svn_url":"https://github.com/django-commons/axe-selenium-python","template":[],"topics":[],"visibility":"public","vulnerability_alerts":true,"web_commit_signoff_required":false},"sensitive_attributes":[],"private":"eyJzY2hlbWFfdmVyc2lvbiI6IjEifQ=="},{"index_key":"best-practices","schema_version":1,"attributes":{"allow_auto_merge":false,"allow_merge_commit":false,"allow_rebase_merge":false,"allow_squash_merge":true,"allow_update_branch":true,"archive_on_destroy":true,"archived":false,"auto_init":false,"default_branch":"main","delete_branch_on_merge":true,"description":"A sample project with best practices for Django Commons projects.","etag":"W/\"9214c62d209a20c93aa33adb10c9ce6d50e1ff3b9d9adcc0dc4eb21bef311f6a\"","fork":"false","full_name":"django-commons/best-practices","git_clone_url":"git://github.com/django-commons/best-practices.git","gitignore_template":null,"has_discussions":true,"has_downloads":true,"has_issues":true,"has_projects":true,"has_wiki":false,"homepage_url":"","html_url":"https://github.com/django-commons/best-practices","http_clone_url":"https://github.com/django-commons/best-practices.git","id":"best-practices","ignore_vulnerability_alerts_during_read":null,"is_template":false,"license_template":null,"merge_commit_message":"PR_TITLE","merge_commit_title":"MERGE_MESSAGE","name":"best-practices","node_id":"R_kgDOLkANrg","pages":[],"primary_language":"Python","private":false,"repo_id":775949742,"security_and_analysis":[{"advanced_security":[],"code_security":[],"secret_scanning":[{"status":"enabled"}],"secret_scanning_ai_detection":[],"secret_scanning_non_provider_patterns":[],"secret_scanning_push_protection":[{"status":"disabled"}]}],"source_owner":"","source_repo":"","squash_merge_commit_message":"COMMIT_MESSAGES","squash_merge_commit_title":"COMMIT_OR_PR_TITLE","ssh_clone_url":"git@github.com:django-commons/best-practices.git","svn_url":"https://github.com/django-commons/best-practices","template":[],"topics":["django","python","template"],"visibility":"public","vulnerability_alerts":true,"web_commit_signoff_required":false},"sensitive_attributes":[],"private":"eyJzY2hlbWFfdmVyc2lvbiI6IjEifQ=="},{"index_key":"controls","schema_version":1,"attributes":{"allow_auto_merge":false,"allow_merge_commit":true,"allow_rebase_merge":true,"allow_squash_merge":true,"allow_update_branch":true,"archive_on_destroy":true,"archived":false,"auto_init":false,"default_branch":"main","delete_branch_on_merge":true,"description":"The controls for managing Django Commons projects","etag":"W/\"f084475c86efee52b3ea6b4a718a753d81a2b481a6d5c14570c6b7c58391d2c5\"","fork":"false","full_name":"django-commons/controls","git_clone_url":"git://github.com/django-commons/controls.git","gitignore_template":null,"has_discussions":true,"has_downloads":true,"has_issues":true,"has_projects":true,"has_wiki":false,"homepage_url":"","html_url":"https://github.com/django-commons/controls","http_clone_url":"https://github.com/django-commons/controls.git","id":"controls","ignore_vulnerability_alerts_during_read":null,"is_template":false,"license_template":null,"merge_commit_message":"PR_TITLE","merge_commit_title":"MERGE_MESSAGE","name":"controls","node_id":"R_kgDOLkDK8g","pages":[],"primary_language":"","private":false,"repo_id":775998194,"security_and_analysis":[{"advanced_security":[],"code_security":[],"secret_scanning":[{"status":"disabled"}],"secret_scanning_ai_detection":[],"secret_scanning_non_provider_patterns":[],"secret_scanning_push_protection":[{"status":"disabled"}]}],"source_owner":"","source_repo":"","squash_merge_commit_message":"COMMIT_MESSAGES","squash_merge_commit_title":"COMMIT_OR_PR_TITLE","ssh_clone_url":"git@github.com:django-commons/controls.git","svn_url":"https://github.com/django-commons/controls","template":[],"topics":[],"visibility":"public","vulnerability_alerts":true,"web_commit_signoff_required":false},"sensitive_attributes":[],"private":"eyJzY2hlbWFfdmVyc2lvbiI6IjEifQ=="},{"index_key":"django-click","schema_version":1,"attributes":{"allow_auto_merge":false,"allow_merge_commit":true,"allow_rebase_merge":true,"allow_squash_merge":false,"allow_update_branch":true,"archive_on_destroy":true,"archived":false,"auto_init":false,"default_branch":"master","delete_branch_on_merge":true,"description":"Write Django management command using the click CLI library","etag":"W/\"da6efb4ed0899a0ace255869c36de0a6d7ae4c5ca6aaa52468825ccbc63e28c5\"","fork":"false","full_name":"django-commons/django-click","git_clone_url":"git://github.com/django-commons/django-click.git","gitignore_template":null,"has_discussions":false,"has_downloads":true,"has_issues":true,"has_projects":true,"has_wiki":false,"homepage_url":"","html_url":"https://github.com/django-commons/django-click","http_clone_url":"https://github.com/django-commons/django-click.git","id":"django-click","ignore_vulnerability_alerts_during_read":null,"is_template":false,"license_template":null,"merge_commit_message":"PR_TITLE","merge_commit_title":"MERGE_MESSAGE","name":"django-click","node_id":"MDEwOlJlcG9zaXRvcnk0MjI3NDc5Nw==","pages":[],"primary_language":"Python","private":false,"repo_id":42274797,"security_and_analysis":[{"advanced_security":[],"code_security":[],"secret_scanning":[{"status":"disabled"}],"secret_scanning_ai_detection":[],"secret_scanning_non_provider_patterns":[],"secret_scanning_push_protection":[{"status":"disabled"}]}],"source_owner":"","source_repo":"","squash_merge_commit_message":"COMMIT_MESSAGES","squash_merge_commit_title":"COMMIT_OR_PR_TITLE","ssh_clone_url":"git@github.com:django-commons/django-click.git","svn_url":"https://github.com/django-commons/django-click","template":[],"topics":[],"visibility":"public","vulnerability_alerts":true,"web_commit_signoff_required":false},"sensitive_attributes":[],"private":"eyJzY2hlbWFfdmVyc2lvbiI6IjEifQ=="},{"index_key":"django-cookie-consent","schema_version":1,"attributes":{"allow_auto_merge":false,"allow_merge_commit":true,"allow_rebase_merge":false,"allow_squash_merge":true,"allow_update_branch":true,"archive_on_destroy":true,"archived":false,"auto_init":false,"default_branch":"master","delete_branch_on_merge":true,"description":"Reusable application for managing various cookies and visitors consent for their use in Django project.","etag":"W/\"173aa1aa4b557aaf0df43a904e869e9ca939199b50a6297b2d882dc9f0047c9c\"","fork":"false","full_name":"django-commons/django-cookie-consent","git_clone_url":"git://github.com/django-commons/django-cookie-consent.git","gitignore_template":null,"has_discussions":false,"has_downloads":true,"has_issues":true,"has_projects":true,"has_wiki":false,"homepage_url":"https://django-cookie-consent.readthedocs.org/en/latest/","html_url":"https://github.com/django-commons/django-cookie-consent","http_clone_url":"https://github.com/django-commons/django-cookie-consent.git","id":"django-cookie-consent","ignore_vulnerability_alerts_during_read":null,"is_template":false,"license_template":null,"merge_commit_message":"PR_TITLE","merge_commit_title":"MERGE_MESSAGE","name":"django-cookie-consent","node_id":"MDEwOlJlcG9zaXRvcnkxMDU1NDY2Ng==","pages":[],"primary_language":"Python","private":false,"repo_id":10554666,"security_and_analysis":[{"advanced_security":[],"code_security":[],"secret_scanning":[{"status":"disabled"}],"secret_scanning_ai_detection":[],"secret_scanning_non_provider_patterns":[],"secret_scanning_push_protection":[{"status":"disabled"}]}],"source_owner":"","source_repo":"","squash_merge_commit_message":"COMMIT_MESSAGES","squash_merge_commit_title":"COMMIT_OR_PR_TITLE","ssh_clone_url":"git@github.com:django-commons/django-cookie-consent.git","svn_url":"https://github.com/django-commons/django-cookie-consent","template":[],"topics":[],"visibility":"public","vulnerability_alerts":true,"web_commit_signoff_required":false},"sensitive_attributes":[],"private":"eyJzY2hlbWFfdmVyc2lvbiI6IjEifQ=="},{"index_key":"django-debug-toolbar","schema_version":1,"attributes":{"allow_auto_merge":true,"allow_merge_commit":true,"allow_rebase_merge":true,"allow_squash_merge":true,"allow_update_branch":true,"archive_on_destroy":true,"archived":false,"auto_init":false,"default_branch":"main","delete_branch_on_merge":true,"description":"A configurable set of panels that display various debug information about the current request/response.","etag":"W/\"512845b0e7d9989cb568d0184d5a6a357e17fc929ae4a7d52386073745c6537f\"","fork":"false","full_name":"django-commons/django-debug-toolbar","git_clone_url":"git://github.com/django-commons/django-debug-toolbar.git","gitignore_template":null,"has_discussions":true,"has_downloads":true,"has_issues":true,"has_projects":true,"has_wiki":true,"homepage_url":"https://django-debug-toolbar.readthedocs.io","html_url":"https://github.com/django-commons/django-debug-toolbar","http_clone_url":"https://github.com/django-commons/django-debug-toolbar.git","id":"django-debug-toolbar","ignore_vulnerability_alerts_during_read":null,"is_template":false,"license_template":null,"merge_commit_message":"PR_TITLE","merge_commit_title":"MERGE_MESSAGE","name":"django-debug-toolbar","node_id":"MDEwOlJlcG9zaXRvcnk0NjkzOQ==","pages":[],"primary_language":"Python","private":false,"repo_id":46939,"security_and_analysis":[{"advanced_security":[],"code_security":[],"secret_scanning":[{"status":"enabled"}],"secret_scanning_ai_detection":[],"secret_scanning_non_provider_patterns":[],"secret_scanning_push_protection":[{"status":"enabled"}]}],"source_owner":"","source_repo":"","squash_merge_commit_message":"COMMIT_MESSAGES","squash_merge_commit_title":"COMMIT_OR_PR_TITLE","ssh_clone_url":"git@github.com:django-commons/django-debug-toolbar.git","svn_url":"https://github.com/django-commons/django-debug-toolbar","template":[],"topics":[],"visibility":"public","vulnerability_alerts":true,"web_commit_signoff_required":false},"sensitive_attributes":[],"private":"eyJzY2hlbWFfdmVyc2lvbiI6IjEifQ=="},{"index_key":"django-enum","schema_version":1,"attributes":{"allow_auto_merge":false,"allow_merge_commit":true,"allow_rebase_merge":true,"allow_squash_merge":true,"allow_update_branch":true,"archive_on_destroy":true,"archived":false,"auto_init":false,"default_branch":"main","delete_branch_on_merge":true,"description":"Full and natural support for enumerations as Django model fields.","etag":"W/\"9ecb31a9c857c9db01f236ed860ebfc448e480a5375423f6557fc8a04198a174\"","fork":"false","full_name":"django-commons/django-enum","git_clone_url":"git://github.com/django-commons/django-enum.git","gitignore_template":null,"has_discussions":true,"has_downloads":true,"has_issues":true,"has_projects":true,"has_wiki":false,"homepage_url":"https://django-enum.rtfd.io","html_url":"https://github.com/django-commons/django-enum","http_clone_url":"https://github.com/django-commons/django-enum.git","id":"django-enum","ignore_vulnerability_alerts_during_read":null,"is_template":false,"license_template":null,"merge_commit_message":"PR_TITLE","merge_commit_title":"MERGE_MESSAGE","name":"django-enum","node_id":"R_kgDOHrCyiQ","pages":[],"primary_language":"Python","private":false,"repo_id":514896521,"security_and_analysis":[{"advanced_security":[],"code_security":[],"secret_scanning":[{"status":"disabled"}],"secret_scanning_ai_detection":[],"secret_scanning_non_provider_patterns":[],"secret_scanning_push_protection":[{"status":"disabled"}]}],"source_owner":"","source_repo":"","squash_merge_commit_message":"COMMIT_MESSAGES","squash_merge_commit_title":"COMMIT_OR_PR_TITLE","ssh_clone_url":"git@github.com:django-commons/django-enum.git","svn_url":"https://github.com/django-commons/django-enum","template":[],"topics":["bitfield","bitfields","bitmask","database","databases","defines","django","enum","enumeration","enums","fields","flag","flags","mask","modelfields"],"visibility":"public","vulnerability_alerts":true,"web_commit_signoff_required":false},"sensitive_attributes":[],"private":"eyJzY2hlbWFfdmVyc2lvbiI6IjEifQ=="},{"index_key":"django-fsm-2","schema_version":1,"attributes":{"allow_auto_merge":false,"allow_merge_commit":false,"allow_rebase_merge":true,"allow_squash_merge":true,"allow_update_branch":true,"archive_on_destroy":true,"archived":false,"auto_init":false,"default_branch":"main","delete_branch_on_merge":true,"description":"Django friendly finite state machine support","etag":"W/\"ed335fedfda99c81029ffc7d929caf724136fb8efde6b001c68ef46450cb555b\"","fork":"false","full_name":"django-commons/django-fsm-2","git_clone_url":"git://github.com/django-commons/django-fsm-2.git","gitignore_template":null,"has_discussions":true,"has_downloads":true,"has_issues":true,"has_projects":true,"has_wiki":false,"homepage_url":"https://github.com/django-commons/django-fsm-2","html_url":"https://github.com/django-commons/django-fsm-2","http_clone_url":"https://github.com/django-commons/django-fsm-2.git","id":"django-fsm-2","ignore_vulnerability_alerts_during_read":null,"is_template":false,"license_template":null,"merge_commit_message":"BLANK","merge_commit_title":"PR_TITLE","name":"django-fsm-2","node_id":"R_kgDOIRc3Iw","pages":[],"primary_language":"Python","private":false,"repo_id":555169571,"security_and_analysis":[{"advanced_security":[],"code_security":[],"secret_scanning":[{"status":"disabled"}],"secret_scanning_ai_detection":[],"secret_scanning_non_provider_patterns":[],"secret_scanning_push_protection":[{"status":"disabled"}]}],"source_owner":"","source_repo":"","squash_merge_commit_message":"COMMIT_MESSAGES","squash_merge_commit_title":"COMMIT_OR_PR_TITLE","ssh_clone_url":"git@github.com:django-commons/django-fsm-2.git","svn_url":"https://github.com/django-commons/django-fsm-2","template":[],"topics":[],"visibility":"public","vulnerability_alerts":true,"web_commit_signoff_required":false},"sensitive_attributes":[],"private":"eyJzY2hlbWFfdmVyc2lvbiI6IjEifQ=="},{"index_key":"django-prometheus","schema_version":1,"attributes":{"allow_auto_merge":false,"allow_merge_commit":true,"allow_rebase_merge":true,"allow_squash_merge":true,"allow_update_branch":true,"archive_on_destroy":true,"archived":false,"auto_init":false,"default_branch":"master","delete_branch_on_merge":true,"description":"Export Django monitoring metrics for Prometheus.io","etag":"W/\"a65db355096d3b5a8aba2f7ef345a015ab649a6ec372ff31266ecc368534a210\"","fork":"false","full_name":"django-commons/django-prometheus","git_clone_url":"git://github.com/django-commons/django-prometheus.git","gitignore_template":null,"has_discussions":false,"has_downloads":true,"has_issues":true,"has_projects":true,"has_wiki":false,"homepage_url":"","html_url":"https://github.com/django-commons/django-prometheus","http_clone_url":"https://github.com/django-commons/django-prometheus.git","id":"django-prometheus","ignore_vulnerability_alerts_during_read":null,"is_template":false,"license_template":null,"merge_commit_message":"PR_TITLE","merge_commit_title":"MERGE_MESSAGE","name":"django-prometheus","node_id":"MDEwOlJlcG9zaXRvcnkzMzQzMzA5Mg==","pages":[],"primary_language":"Python","private":false,"repo_id":33433092,"security_and_analysis":[{"advanced_security":[],"code_security":[],"secret_scanning":[{"status":"disabled"}],"secret_scanning_ai_detection":[],"secret_scanning_non_provider_patterns":[],"secret_scanning_push_protection":[{"status":"disabled"}]}],"source_owner":"","source_repo":"","squash_merge_commit_message":"COMMIT_MESSAGES","squash_merge_commit_title":"COMMIT_OR_PR_TITLE","ssh_clone_url":"git@github.com:django-commons/django-prometheus.git","svn_url":"https://github.com/django-commons/django-prometheus","template":[],"topics":["django","django-prometheus","exported-metrics","metrics","monitoring","prometheus","prometheus-client","python"],"visibility":"public","vulnerability_alerts":true,"web_commit_signoff_required":false},"sensitive_attributes":[],"private":"eyJzY2hlbWFfdmVyc2lvbiI6IjEifQ=="},{"index_key":"django-simple-history","schema_version":1,"attributes":{"allow_auto_merge":false,"allow_merge_commit":true,"allow_rebase_merge":false,"allow_squash_merge":true,"allow_update_branch":true,"archive_on_destroy":true,"archived":false,"auto_init":false,"default_branch":"master","delete_branch_on_merge":true,"description":"Store model history and view/revert changes from admin site.","etag":"W/\"c38a59315e43a0cd63abcf8311fef8e2c3f41dd754b3c9ed4afc52e20f8cc747\"","fork":"false","full_name":"django-commons/django-simple-history","git_clone_url":"git://github.com/django-commons/django-simple-history.git","gitignore_template":null,"has_discussions":true,"has_downloads":true,"has_issues":true,"has_projects":true,"has_wiki":true,"homepage_url":"https://django-simple-history.readthedocs.org","html_url":"https://github.com/django-commons/django-simple-history","http_clone_url":"https://github.com/django-commons/django-simple-history.git","id":"django-simple-history","ignore_vulnerability_alerts_during_read":null,"is_template":false,"license_template":null,"merge_commit_message":"PR_TITLE","merge_commit_title":"MERGE_MESSAGE","name":"django-simple-history","node_id":"MDEwOlJlcG9zaXRvcnkxNDQ3ODgy","pages":[],"primary_language":"Python","private":false,"repo_id":1447882,"security_and_analysis":[{"advanced_security":[],"code_security":[],"secret_scanning":[{"status":"enabled"}],"secret_scanning_ai_detection":[],"secret_scanning_non_provider_patterns":[],"secret_scanning_push_protection":[{"status":"enabled"}]}],"source_owner":"","source_repo":"","squash_merge_commit_message":"COMMIT_MESSAGES","squash_merge_commit_title":"COMMIT_OR_PR_TITLE","ssh_clone_url":"git@github.com:django-commons/django-simple-history.git","svn_url":"https://github.com/django-commons/django-simple-history","template":[],"topics":[],"visibility":"public","vulnerability_alerts":true,"web_commit_signoff_required":false},"sensitive_attributes":[],"private":"eyJzY2hlbWFfdmVyc2lvbiI6IjEifQ=="},{"index_key":"django-tailwind-cli","schema_version":1,"attributes":{"allow_auto_merge":false,"allow_merge_commit":false,"allow_rebase_merge":false,"allow_squash_merge":true,"allow_update_branch":true,"archive_on_destroy":true,"archived":false,"auto_init":false,"default_branch":"main","delete_branch_on_merge":true,"description":"Django and Tailwind integration based on the prebuilt Tailwind CSS CLI.","etag":"W/\"9ef828fcf454a0388b78ae41a780fc5462526844acbedfe8011b9fc2dae31eaf\"","fork":"false","full_name":"django-commons/django-tailwind-cli","git_clone_url":"git://github.com/django-commons/django-tailwind-cli.git","gitignore_template":null,"has_discussions":true,"has_downloads":true,"has_issues":true,"has_projects":true,"has_wiki":false,"homepage_url":"https://django-tailwind-cli.rtfd.io/","html_url":"https://github.com/django-commons/django-tailwind-cli","http_clone_url":"https://github.com/django-commons/django-tailwind-cli.git","id":"django-tailwind-cli","ignore_vulnerability_alerts_during_read":null,"is_template":false,"license_template":null,"merge_commit_message":"PR_TITLE","merge_commit_title":"MERGE_MESSAGE","name":"django-tailwind-cli","node_id":"R_kgDOISkAkA","pages":[],"primary_language":"Python","private":false,"repo_id":556335248,"security_and_analysis":[{"advanced_security":[],"code_security":[],"secret_scanning":[{"status":"disabled"}],"secret_scanning_ai_detection":[],"secret_scanning_non_provider_patterns":[],"secret_scanning_push_protection":[{"status":"disabled"}]}],"source_owner":"","source_repo":"","squash_merge_commit_message":"COMMIT_MESSAGES","squash_merge_commit_title":"COMMIT_OR_PR_TITLE","ssh_clone_url":"git@github.com:django-commons/django-tailwind-cli.git","svn_url":"https://github.com/django-commons/django-tailwind-cli","template":[],"topics":["django","django-application","python","tailwind","tailwind-css","tailwindcss"],"visibility":"public","vulnerability_alerts":true,"web_commit_signoff_required":false},"sensitive_attributes":[],"private":"eyJzY2hlbWFfdmVyc2lvbiI6IjEifQ=="},{"index_key":"django-tasks-scheduler","schema_version":1,"attributes":{"allow_auto_merge":false,"allow_merge_commit":true,"allow_rebase_merge":false,"allow_squash_merge":true,"allow_update_branch":true,"archive_on_destroy":true,"archived":false,"auto_init":false,"default_branch":"master","delete_branch_on_merge":true,"description":"Schedule async tasks using redis protocol. Redis/ValKey/Dragonfly or any broker using the redis protocol can be used.","etag":"W/\"b5bd59ac3c52adf18f6a08254529fcd527478b8f802ba77609409b8fa9073746\"","fork":"false","full_name":"django-commons/django-tasks-scheduler","git_clone_url":"git://github.com/django-commons/django-tasks-scheduler.git","gitignore_template":null,"has_discussions":true,"has_downloads":true,"has_issues":true,"has_projects":true,"has_wiki":false,"homepage_url":"https://django-tasks-scheduler.readthedocs.io/","html_url":"https://github.com/django-commons/django-tasks-scheduler","http_clone_url":"https://github.com/django-commons/django-tasks-scheduler.git","id":"django-tasks-scheduler","ignore_vulnerability_alerts_during_read":null,"is_template":false,"license_template":null,"merge_commit_message":"PR_TITLE","merge_commit_title":"MERGE_MESSAGE","name":"django-tasks-scheduler","node_id":"R_kgDOJzK5Kg","pages":[],"primary_language":"Python","private":false,"repo_id":657635626,"security_and_analysis":[{"advanced_security":[],"code_security":[],"secret_scanning":[{"status":"disabled"}],"secret_scanning_ai_detection":[],"secret_scanning_non_provider_patterns":[],"secret_scanning_push_protection":[{"status":"disabled"}]}],"source_owner":"","source_repo":"","squash_merge_commit_message":"COMMIT_MESSAGES","squash_merge_commit_title":"COMMIT_OR_PR_TITLE","ssh_clone_url":"git@github.com:django-commons/django-tasks-scheduler.git","svn_url":"https://github.com/django-commons/django-tasks-scheduler","template":[],"topics":["background-jobs","django","django-application","job-queue","python","redis","scheduled-jobs","scheduled-tasks","task-queue","valkey"],"visibility":"public","vulnerability_alerts":true,"web_commit_signoff_required":false},"sensitive_attributes":[],"private":"eyJzY2hlbWFfdmVyc2lvbiI6IjEifQ=="},{"index_key":"django-typer","schema_version":1,"attributes":{"allow_auto_merge":false,"allow_merge_commit":true,"allow_rebase_merge":true,"allow_squash_merge":true,"allow_update_branch":true,"archive_on_destroy":true,"archived":false,"auto_init":false,"default_branch":"main","delete_branch_on_merge":true,"description":"Use Typer (type hints) to define the interface for your Django management commands.","etag":"W/\"c8018a77dc281c8eb7be7de3e9a81f0127b45718dc019ac878c5ea242b04b0f6\"","fork":"false","full_name":"django-commons/django-typer","git_clone_url":"git://github.com/django-commons/django-typer.git","gitignore_template":null,"has_discussions":true,"has_downloads":true,"has_issues":true,"has_projects":true,"has_wiki":true,"homepage_url":"https://django-typer.rtfd.io","html_url":"https://github.com/django-commons/django-typer","http_clone_url":"https://github.com/django-commons/django-typer.git","id":"django-typer","ignore_vulnerability_alerts_during_read":null,"is_template":false,"license_template":null,"merge_commit_message":"PR_TITLE","merge_commit_title":"MERGE_MESSAGE","name":"django-typer","node_id":"R_kgDOKkMk_Q","pages":[],"primary_language":"Python","private":false,"repo_id":709043453,"security_and_analysis":[{"advanced_security":[],"code_security":[],"secret_scanning":[{"status":"enabled"}],"secret_scanning_ai_detection":[],"secret_scanning_non_provider_patterns":[],"secret_scanning_push_protection":[{"status":"enabled"}]}],"source_owner":"","source_repo":"","squash_merge_commit_message":"COMMIT_MESSAGES","squash_merge_commit_title":"COMMIT_OR_PR_TITLE","ssh_clone_url":"git@github.com:django-commons/django-typer.git","svn_url":"https://github.com/django-commons/django-typer","template":[],"topics":["admin","cli","click","command-line","commands","django","management","python","python3","shell","terminal","typehints","typer"],"visibility":"public","vulnerability_alerts":true,"web_commit_signoff_required":false},"sensitive_attributes":[],"private":"eyJzY2hlbWFfdmVyc2lvbiI6IjEifQ=="},{"index_key":"django-valkey","schema_version":1,"attributes":{"allow_auto_merge":true,"allow_merge_commit":true,"allow_rebase_merge":true,"allow_squash_merge":true,"allow_update_branch":true,"archive_on_destroy":true,"archived":false,"auto_init":false,"default_branch":"main","delete_branch_on_merge":false,"description":"a Valkey backend for django","etag":"W/\"42358337689048e797234d896b3c33c2c864390ebfbd58bfceefbc2496a9e141\"","fork":"false","full_name":"django-commons/django-valkey","git_clone_url":"git://github.com/django-commons/django-valkey.git","gitignore_template":null,"has_discussions":true,"has_downloads":true,"has_issues":true,"has_projects":true,"has_wiki":false,"homepage_url":"https://django-valkey.readthedocs.io/en/latest/","html_url":"https://github.com/django-commons/django-valkey","http_clone_url":"https://github.com/django-commons/django-valkey.git","id":"django-valkey","ignore_vulnerability_alerts_during_read":null,"is_template":false,"license_template":null,"merge_commit_message":"PR_TITLE","merge_commit_title":"MERGE_MESSAGE","name":"django-valkey","node_id":"R_kgDOMsI4lw","pages":[],"primary_language":"Python","private":false,"repo_id":851589271,"security_and_analysis":[{"advanced_security":[],"code_security":[],"secret_scanning":[{"status":"disabled"}],"secret_scanning_ai_detection":[],"secret_scanning_non_provider_patterns":[],"secret_scanning_push_protection":[{"status":"disabled"}]}],"source_owner":"","source_repo":"","squash_merge_commit_message":"COMMIT_MESSAGES","squash_merge_commit_title":"COMMIT_OR_PR_TITLE","ssh_clone_url":"git@github.com:django-commons/django-valkey.git","svn_url":"https://github.com/django-commons/django-valkey","template":[],"topics":["backend","cache","database","django","python","session","valkey","valkey-client"],"visibility":"public","vulnerability_alerts":true,"web_commit_signoff_required":false},"sensitive_attributes":[],"private":"eyJzY2hlbWFfdmVyc2lvbiI6IjEifQ=="},{"index_key":"drf-excel","schema_version":1,"attributes":{"allow_auto_merge":false,"allow_merge_commit":true,"allow_rebase_merge":true,"allow_squash_merge":true,"allow_update_branch":true,"archive_on_destroy":true,"archived":false,"auto_init":false,"default_branch":"main","delete_branch_on_merge":true,"description":"An XLSX spreadsheet renderer for Django REST Framework.","etag":"W/\"0a684b721c621ee7ab85891c12177aba97464c7462ba6b0aaccbdbd33ab98289\"","fork":"false","full_name":"django-commons/drf-excel","git_clone_url":"git://github.com/django-commons/drf-excel.git","gitignore_template":null,"has_discussions":false,"has_downloads":true,"has_issues":true,"has_projects":true,"has_wiki":false,"homepage_url":"","html_url":"https://github.com/django-commons/drf-excel","http_clone_url":"https://github.com/django-commons/drf-excel.git","id":"drf-excel","ignore_vulnerability_alerts_during_read":null,"is_template":false,"license_template":null,"merge_commit_message":"PR_TITLE","merge_commit_title":"MERGE_MESSAGE","name":"drf-excel","node_id":"MDEwOlJlcG9zaXRvcnkxMDU2ODYwODA=","pages":[],"primary_language":"Python","private":false,"repo_id":105686080,"security_and_analysis":[{"advanced_security":[],"code_security":[],"secret_scanning":[{"status":"disabled"}],"secret_scanning_ai_detection":[],"secret_scanning_non_provider_patterns":[],"secret_scanning_push_protection":[{"status":"disabled"}]}],"source_owner":"","source_repo":"","squash_merge_commit_message":"COMMIT_MESSAGES","squash_merge_commit_title":"COMMIT_OR_PR_TITLE","ssh_clone_url":"git@github.com:django-commons/drf-excel.git","svn_url":"https://github.com/django-commons/drf-excel","template":[],"topics":[],"visibility":"public","vulnerability_alerts":true,"web_commit_signoff_required":false},"sensitive_attributes":[],"private":"eyJzY2hlbWFfdmVyc2lvbiI6IjEifQ=="},{"index_key":"membership","schema_version":1,"attributes":{"allow_auto_merge":false,"allow_merge_commit":false,"allow_rebase_merge":true,"allow_squash_merge":true,"allow_update_branch":true,"archive_on_destroy":true,"archived":false,"auto_init":false,"default_branch":"main","delete_branch_on_merge":true,"description":"Membership repository for the django-commons organization.","etag":"W/\"9c5c270c4dfc9aa051791ba5dce9d16200a0f1baba4390ebb7d0693fa0f641ae\"","fork":"false","full_name":"django-commons/membership","git_clone_url":"git://github.com/django-commons/membership.git","gitignore_template":null,"has_discussions":true,"has_downloads":true,"has_issues":true,"has_projects":true,"has_wiki":false,"homepage_url":"","html_url":"https://github.com/django-commons/membership","http_clone_url":"https://github.com/django-commons/membership.git","id":"membership","ignore_vulnerability_alerts_during_read":null,"is_template":false,"license_template":null,"merge_commit_message":"PR_TITLE","merge_commit_title":"MERGE_MESSAGE","name":"membership","node_id":"R_kgDOLklIpA","pages":[],"primary_language":"HCL","private":false,"repo_id":776554660,"security_and_analysis":[{"advanced_security":[],"code_security":[],"secret_scanning":[{"status":"disabled"}],"secret_scanning_ai_detection":[],"secret_scanning_non_provider_patterns":[],"secret_scanning_push_protection":[{"status":"disabled"}]}],"source_owner":"","source_repo":"","squash_merge_commit_message":"COMMIT_MESSAGES","squash_merge_commit_title":"COMMIT_OR_PR_TITLE","ssh_clone_url":"git@github.com:django-commons/membership.git","svn_url":"https://github.com/django-commons/membership","template":[],"topics":[],"visibility":"public","vulnerability_alerts":true,"web_commit_signoff_required":false},"sensitive_attributes":[],"private":"eyJzY2hlbWFfdmVyc2lvbiI6IjEifQ=="}]},{"mode":"managed","type":"github_repository_collaborators","name":"this","provider":"provider[\"registry.terraform.io/integrations/github\"]","instances":[{"index_key":"axe-selenium-python","schema_version":0,"attributes":{"id":"axe-selenium-python","ignore_team":[{"team_id":"admins"}],"invitation_ids":{},"repository":"axe-selenium-python","team":[{"permission":"admin","team_id":"axe-selenium-python-admins"},{"permission":"maintain","team_id":"axe-selenium-python-committers"},{"permission":"triage","team_id":"axe-selenium-python"}],"user":[]},"sensitive_attributes":[],"private":"bnVsbA==","dependencies":["github_repository.this","github_team.org_teams","github_team.repo_admin_team","github_team.repo_committer_team","github_team.repo_team"]},{"index_key":"best-practices","schema_version":0,"attributes":{"id":"best-practices","ignore_team":[{"team_id":"admins"}],"invitation_ids":{},"repository":"best-practices","team":[{"permission":"admin","team_id":"best-practices-admins"},{"permission":"maintain","team_id":"best-practices-committers"},{"permission":"triage","team_id":"best-practices"}],"user":[]},"sensitive_attributes":[],"private":"bnVsbA==","dependencies":["github_repository.this","github_team.org_teams","github_team.repo_admin_team","github_team.repo_committer_team","github_team.repo_team"]},{"index_key":"django-click","schema_version":0,"attributes":{"id":"django-click","ignore_team":[{"team_id":"admins"}],"invitation_ids":{},"repository":"django-click","team":[{"permission":"admin","team_id":"django-click-admins"},{"permission":"maintain","team_id":"django-click-committers"},{"permission":"triage","team_id":"django-click"}],"user":[]},"sensitive_attributes":[],"private":"bnVsbA==","dependencies":["github_repository.this","github_team.org_teams","github_team.repo_admin_team","github_team.repo_committer_team","github_team.repo_team"]},{"index_key":"django-cookie-consent","schema_version":0,"attributes":{"id":"django-cookie-consent","ignore_team":[{"team_id":"admins"}],"invitation_ids":{},"repository":"django-cookie-consent","team":[{"permission":"admin","team_id":"django-cookie-consent-admins"},{"permission":"maintain","team_id":"django-cookie-consent-committers"},{"permission":"triage","team_id":"django-cookie-consent"}],"user":[]},"sensitive_attributes":[],"private":"bnVsbA==","dependencies":["github_repository.this","github_team.org_teams","github_team.repo_admin_team","github_team.repo_committer_team","github_team.repo_team"]},{"index_key":"django-debug-toolbar","schema_version":0,"attributes":{"id":"django-debug-toolbar","ignore_team":[{"team_id":"admins"}],"invitation_ids":{},"repository":"django-debug-toolbar","team":[{"permission":"admin","team_id":"django-debug-toolbar-admins"},{"permission":"maintain","team_id":"django-debug-toolbar-committers"},{"permission":"triage","team_id":"django-debug-toolbar"}],"user":[]},"sensitive_attributes":[],"private":"bnVsbA==","dependencies":["github_repository.this","github_team.org_teams","github_team.repo_admin_team","github_team.repo_committer_team","github_team.repo_team"]},{"index_key":"django-enum","schema_version":0,"attributes":{"id":"django-enum","ignore_team":[{"team_id":"admins"}],"invitation_ids":{},"repository":"django-enum","team":[{"permission":"admin","team_id":"django-enum-admins"},{"permission":"maintain","team_id":"django-enum-committers"},{"permission":"triage","team_id":"django-enum"}],"user":[]},"sensitive_attributes":[],"private":"bnVsbA==","dependencies":["github_repository.this","github_team.org_teams","github_team.repo_admin_team","github_team.repo_committer_team","github_team.repo_team"]},{"index_key":"django-fsm-2","schema_version":0,"attributes":{"id":"django-fsm-2","ignore_team":[{"team_id":"admins"}],"invitation_ids":{},"repository":"django-fsm-2","team":[{"permission":"admin","team_id":"django-fsm-2-admins"},{"permission":"maintain","team_id":"django-fsm-2-committers"},{"permission":"triage","team_id":"django-fsm-2"}],"user":[]},"sensitive_attributes":[],"private":"bnVsbA==","dependencies":["github_repository.this","github_team.org_teams","github_team.repo_admin_team","github_team.repo_committer_team","github_team.repo_team"]},{"index_key":"django-prometheus","schema_version":0,"attributes":{"id":"django-prometheus","ignore_team":[{"team_id":"admins"}],"invitation_ids":{},"repository":"django-prometheus","team":[{"permission":"admin","team_id":"django-prometheus-admins"},{"permission":"maintain","team_id":"django-prometheus-committers"},{"permission":"triage","team_id":"django-prometheus"}],"user":[]},"sensitive_attributes":[],"private":"bnVsbA==","dependencies":["github_repository.this","github_team.org_teams","github_team.repo_admin_team","github_team.repo_committer_team","github_team.repo_team"]},{"index_key":"django-simple-history","schema_version":0,"attributes":{"id":"django-simple-history","ignore_team":[{"team_id":"admins"}],"invitation_ids":{},"repository":"django-simple-history","team":[{"permission":"admin","team_id":"django-simple-history-admins"},{"permission":"maintain","team_id":"django-simple-history-committers"},{"permission":"triage","team_id":"django-simple-history"}],"user":[]},"sensitive_attributes":[],"private":"bnVsbA==","dependencies":["github_repository.this","github_team.org_teams","github_team.repo_admin_team","github_team.repo_committer_team","github_team.repo_team"]},{"index_key":"django-tailwind-cli","schema_version":0,"attributes":{"id":"django-tailwind-cli","ignore_team":[{"team_id":"admins"}],"invitation_ids":{},"repository":"django-tailwind-cli","team":[{"permission":"admin","team_id":"django-tailwind-cli-admins"},{"permission":"maintain","team_id":"django-tailwind-cli-committers"},{"permission":"triage","team_id":"django-tailwind-cli"}],"user":[]},"sensitive_attributes":[],"private":"bnVsbA==","dependencies":["github_repository.this","github_team.org_teams","github_team.repo_admin_team","github_team.repo_committer_team","github_team.repo_team"]},{"index_key":"django-tasks-scheduler","schema_version":0,"attributes":{"id":"django-tasks-scheduler","ignore_team":[{"team_id":"admins"}],"invitation_ids":{},"repository":"django-tasks-scheduler","team":[{"permission":"admin","team_id":"django-tasks-scheduler-admins"},{"permission":"maintain","team_id":"django-tasks-scheduler-committers"},{"permission":"triage","team_id":"django-tasks-scheduler"}],"user":[]},"sensitive_attributes":[],"private":"bnVsbA==","dependencies":["github_repository.this","github_team.org_teams","github_team.repo_admin_team","github_team.repo_committer_team","github_team.repo_team"]},{"index_key":"django-typer","schema_version":0,"attributes":{"id":"django-typer","ignore_team":[{"team_id":"admins"}],"invitation_ids":{},"repository":"django-typer","team":[{"permission":"admin","team_id":"django-typer-admins"},{"permission":"maintain","team_id":"django-typer-committers"},{"permission":"triage","team_id":"django-typer"}],"user":[]},"sensitive_attributes":[],"private":"bnVsbA==","dependencies":["github_repository.this","github_team.org_teams","github_team.repo_admin_team","github_team.repo_committer_team","github_team.repo_team"]},{"index_key":"django-valkey","schema_version":0,"attributes":{"id":"django-valkey","ignore_team":[{"team_id":"admins"}],"invitation_ids":{},"repository":"django-valkey","team":[{"permission":"admin","team_id":"django-valkey-admins"},{"permission":"maintain","team_id":"django-valkey-committers"},{"permission":"triage","team_id":"django-valkey"}],"user":[]},"sensitive_attributes":[],"private":"bnVsbA==","dependencies":["github_repository.this","github_team.org_teams","github_team.repo_admin_team","github_team.repo_committer_team","github_team.repo_team"]},{"index_key":"drf-excel","schema_version":0,"attributes":{"id":"drf-excel","ignore_team":[{"team_id":"admins"}],"invitation_ids":{},"repository":"drf-excel","team":[{"permission":"admin","team_id":"drf-excel-admins"},{"permission":"maintain","team_id":"drf-excel-committers"},{"permission":"triage","team_id":"drf-excel"}],"user":[]},"sensitive_attributes":[],"private":"bnVsbA==","dependencies":["github_repository.this","github_team.org_teams","github_team.repo_admin_team","github_team.repo_committer_team","github_team.repo_team"]}]},{"mode":"managed","type":"github_repository_environment","name":"pypi","provider":"provider[\"registry.terraform.io/integrations/github\"]","instances":[{"index_key":"axe-selenium-python","schema_version":0,"attributes":{"can_admins_bypass":true,"deployment_branch_policy":[],"environment":"pypi","id":"axe-selenium-python:pypi","prevent_self_review":false,"repository":"axe-selenium-python","reviewers":[{"teams":[14236311],"users":[]}],"wait_timer":0},"sensitive_attributes":[],"private":"bnVsbA==","dependencies":["github_team.repo_admin_team","github_team.repo_team"]},{"index_key":"best-practices","schema_version":0,"attributes":{"can_admins_bypass":true,"deployment_branch_policy":[],"environment":"pypi","id":"best-practices:pypi","prevent_self_review":false,"repository":"best-practices","reviewers":[{"teams":[9757650],"users":[]}],"wait_timer":0},"sensitive_attributes":[],"private":"eyJzY2hlbWFfdmVyc2lvbiI6IjAifQ==","dependencies":["github_team.repo_admin_team","github_team.repo_team"]},{"index_key":"django-click","schema_version":0,"attributes":{"can_admins_bypass":true,"deployment_branch_policy":[],"environment":"pypi","id":"django-click:pypi","prevent_self_review":false,"repository":"django-click","reviewers":[{"teams":[12315701],"users":[]}],"wait_timer":0},"sensitive_attributes":[],"private":"bnVsbA==","dependencies":["github_team.repo_admin_team","github_team.repo_team"]},{"index_key":"django-cookie-consent","schema_version":0,"attributes":{"can_admins_bypass":true,"deployment_branch_policy":[],"environment":"pypi","id":"django-cookie-consent:pypi","prevent_self_review":false,"repository":"django-cookie-consent","reviewers":[{"teams":[13287527],"users":[]}],"wait_timer":0},"sensitive_attributes":[],"private":"bnVsbA==","dependencies":["github_team.repo_admin_team","github_team.repo_team"]},{"index_key":"django-debug-toolbar","schema_version":0,"attributes":{"can_admins_bypass":true,"deployment_branch_policy":[],"environment":"pypi","id":"django-debug-toolbar:pypi","prevent_self_review":false,"repository":"django-debug-toolbar","reviewers":[{"teams":[11354341],"users":[]}],"wait_timer":0},"sensitive_attributes":[],"private":"bnVsbA==","dependencies":["github_team.repo_admin_team","github_team.repo_team"]},{"index_key":"django-enum","schema_version":0,"attributes":{"can_admins_bypass":true,"deployment_branch_policy":[],"environment":"pypi","id":"django-enum:pypi","prevent_self_review":false,"repository":"django-enum","reviewers":[{"teams":[12828751],"users":[]}],"wait_timer":0},"sensitive_attributes":[],"private":"bnVsbA==","dependencies":["github_team.repo_admin_team","github_team.repo_team"]},{"index_key":"django-fsm-2","schema_version":0,"attributes":{"can_admins_bypass":true,"deployment_branch_policy":[],"environment":"pypi","id":"django-fsm-2:pypi","prevent_self_review":false,"repository":"django-fsm-2","reviewers":[{"teams":[10870432],"users":[]}],"wait_timer":0},"sensitive_attributes":[],"private":"eyJzY2hlbWFfdmVyc2lvbiI6IjAifQ==","dependencies":["github_team.repo_admin_team","github_team.repo_team"]},{"index_key":"django-prometheus","schema_version":0,"attributes":{"can_admins_bypass":true,"deployment_branch_policy":[],"environment":"pypi","id":"django-prometheus:pypi","prevent_self_review":false,"repository":"django-prometheus","reviewers":[{"teams":[13333849],"users":[]}],"wait_timer":0},"sensitive_attributes":[],"private":"bnVsbA==","dependencies":["github_team.repo_admin_team","github_team.repo_team"]},{"index_key":"django-simple-history","schema_version":0,"attributes":{"can_admins_bypass":true,"deployment_branch_policy":[],"environment":"pypi","id":"django-simple-history:pypi","prevent_self_review":false,"repository":"django-simple-history","reviewers":[{"teams":[13286901],"users":[]}],"wait_timer":0},"sensitive_attributes":[],"private":"eyJzY2hlbWFfdmVyc2lvbiI6IjAifQ==","dependencies":["github_team.repo_admin_team","github_team.repo_team"]},{"index_key":"django-tailwind-cli","schema_version":0,"attributes":{"can_admins_bypass":true,"deployment_branch_policy":[],"environment":"pypi","id":"django-tailwind-cli:pypi","prevent_self_review":false,"repository":"django-tailwind-cli","reviewers":[{"teams":[11394000],"users":[]}],"wait_timer":0},"sensitive_attributes":[],"private":"bnVsbA==","dependencies":["github_team.repo_admin_team","github_team.repo_team"]},{"index_key":"django-tasks-scheduler","schema_version":0,"attributes":{"can_admins_bypass":true,"deployment_branch_policy":[],"environment":"pypi","id":"django-tasks-scheduler:pypi","prevent_self_review":false,"repository":"django-tasks-scheduler","reviewers":[{"teams":[10707221],"users":[]}],"wait_timer":0},"sensitive_attributes":[],"private":"bnVsbA==","dependencies":["github_team.repo_admin_team","github_team.repo_team"]},{"index_key":"django-typer","schema_version":0,"attributes":{"can_admins_bypass":true,"deployment_branch_policy":[],"environment":"pypi","id":"django-typer:pypi","prevent_self_review":false,"repository":"django-typer","reviewers":[{"teams":[11217214],"users":[]}],"wait_timer":0},"sensitive_attributes":[],"private":"bnVsbA==","dependencies":["github_team.repo_admin_team","github_team.repo_team"]},{"index_key":"django-valkey","schema_version":0,"attributes":{"can_admins_bypass":true,"deployment_branch_policy":[],"environment":"pypi","id":"django-valkey:pypi","prevent_self_review":false,"repository":"django-valkey","reviewers":[{"teams":[13334520],"users":[]}],"wait_timer":0},"sensitive_attributes":[],"private":"bnVsbA==","dependencies":["github_team.repo_admin_team","github_team.repo_team"]},{"index_key":"drf-excel","schema_version":0,"attributes":{"can_admins_bypass":true,"deployment_branch_policy":[],"environment":"pypi","id":"drf-excel:pypi","prevent_self_review":false,"repository":"drf-excel","reviewers":[{"teams":[11341702],"users":[]}],"wait_timer":0},"sensitive_attributes":[],"private":"bnVsbA==","dependencies":["github_team.repo_admin_team","github_team.repo_team"]}]},{"mode":"managed","type":"github_repository_environment","name":"testpypi","provider":"provider[\"registry.terraform.io/integrations/github\"]","instances":[{"index_key":"axe-selenium-python","schema_version":0,"attributes":{"can_admins_bypass":true,"deployment_branch_policy":[],"environment":"testpypi","id":"axe-selenium-python:testpypi","prevent_self_review":false,"repository":"axe-selenium-python","reviewers":[],"wait_timer":0},"sensitive_attributes":[],"private":"bnVsbA=="},{"index_key":"best-practices","schema_version":0,"attributes":{"can_admins_bypass":true,"deployment_branch_policy":[],"environment":"testpypi","id":"best-practices:testpypi","prevent_self_review":null,"repository":"best-practices","reviewers":[],"wait_timer":0},"sensitive_attributes":[],"private":"eyJzY2hlbWFfdmVyc2lvbiI6IjAifQ=="},{"index_key":"django-click","schema_version":0,"attributes":{"can_admins_bypass":true,"deployment_branch_policy":[],"environment":"testpypi","id":"django-click:testpypi","prevent_self_review":false,"repository":"django-click","reviewers":[],"wait_timer":0},"sensitive_attributes":[],"private":"bnVsbA=="},{"index_key":"django-cookie-consent","schema_version":0,"attributes":{"can_admins_bypass":true,"deployment_branch_policy":[],"environment":"testpypi","id":"django-cookie-consent:testpypi","prevent_self_review":false,"repository":"django-cookie-consent","reviewers":[],"wait_timer":0},"sensitive_attributes":[],"private":"bnVsbA=="},{"index_key":"django-debug-toolbar","schema_version":0,"attributes":{"can_admins_bypass":true,"deployment_branch_policy":[],"environment":"testpypi","id":"django-debug-toolbar:testpypi","prevent_self_review":false,"repository":"django-debug-toolbar","reviewers":[],"wait_timer":0},"sensitive_attributes":[],"private":"bnVsbA=="},{"index_key":"django-enum","schema_version":0,"attributes":{"can_admins_bypass":true,"deployment_branch_policy":[],"environment":"testpypi","id":"django-enum:testpypi","prevent_self_review":false,"repository":"django-enum","reviewers":[],"wait_timer":0},"sensitive_attributes":[],"private":"bnVsbA=="},{"index_key":"django-fsm-2","schema_version":0,"attributes":{"can_admins_bypass":true,"deployment_branch_policy":[],"environment":"testpypi","id":"django-fsm-2:testpypi","prevent_self_review":null,"repository":"django-fsm-2","reviewers":[],"wait_timer":0},"sensitive_attributes":[],"private":"eyJzY2hlbWFfdmVyc2lvbiI6IjAifQ=="},{"index_key":"django-prometheus","schema_version":0,"attributes":{"can_admins_bypass":true,"deployment_branch_policy":[],"environment":"testpypi","id":"django-prometheus:testpypi","prevent_self_review":false,"repository":"django-prometheus","reviewers":[],"wait_timer":0},"sensitive_attributes":[],"private":"bnVsbA=="},{"index_key":"django-simple-history","schema_version":0,"attributes":{"can_admins_bypass":true,"deployment_branch_policy":[],"environment":"testpypi","id":"django-simple-history:testpypi","prevent_self_review":null,"repository":"django-simple-history","reviewers":[],"wait_timer":0},"sensitive_attributes":[],"private":"eyJzY2hlbWFfdmVyc2lvbiI6IjAifQ=="},{"index_key":"django-tailwind-cli","schema_version":0,"attributes":{"can_admins_bypass":true,"deployment_branch_policy":[],"environment":"testpypi","id":"django-tailwind-cli:testpypi","prevent_self_review":false,"repository":"django-tailwind-cli","reviewers":[],"wait_timer":0},"sensitive_attributes":[],"private":"bnVsbA=="},{"index_key":"django-tasks-scheduler","schema_version":0,"attributes":{"can_admins_bypass":true,"deployment_branch_policy":[],"environment":"testpypi","id":"django-tasks-scheduler:testpypi","prevent_self_review":false,"repository":"django-tasks-scheduler","reviewers":[],"wait_timer":0},"sensitive_attributes":[],"private":"bnVsbA=="},{"index_key":"django-typer","schema_version":0,"attributes":{"can_admins_bypass":true,"deployment_branch_policy":[],"environment":"testpypi","id":"django-typer:testpypi","prevent_self_review":false,"repository":"django-typer","reviewers":[],"wait_timer":0},"sensitive_attributes":[],"private":"bnVsbA=="},{"index_key":"django-valkey","schema_version":0,"attributes":{"can_admins_bypass":true,"deployment_branch_policy":[],"environment":"testpypi","id":"django-valkey:testpypi","prevent_self_review":false,"repository":"django-valkey","reviewers":[],"wait_timer":0},"sensitive_attributes":[],"private":"bnVsbA=="},{"index_key":"drf-excel","schema_version":0,"attributes":{"can_admins_bypass":true,"deployment_branch_policy":[],"environment":"testpypi","id":"drf-excel:testpypi","prevent_self_review":false,"repository":"drf-excel","reviewers":[],"wait_timer":0},"sensitive_attributes":[],"private":"bnVsbA=="}]},{"mode":"managed","type":"github_team","name":"repo_admin_team","provider":"provider[\"registry.terraform.io/integrations/github\"]","instances":[{"index_key":"axe-selenium-python","schema_version":0,"attributes":{"create_default_maintainer":false,"description":"Admin team for the axe-selenium-python repository","etag":"W/\"1b716a4778cf4e1484e4092a91e53292612564219b7bfa6d2d2bd8c02997417e\"","id":"14236311","ldap_dn":"","members_count":2,"name":"axe-selenium-python-admins","node_id":"T_kwDOCaaRBM4A2TqX","parent_team_id":"14236309","parent_team_read_id":"14236309","parent_team_read_slug":"axe-selenium-python","privacy":"closed","slug":"axe-selenium-python-admins"},"sensitive_attributes":[],"private":"bnVsbA==","dependencies":["github_team.repo_team"]},{"index_key":"best-practices","schema_version":0,"attributes":{"create_default_maintainer":false,"description":"Admin team for the best-practices repository","etag":"W/\"a9952481b09f4a3b97bb23e258710cd776ab139c891bc4070a4ec94b00d3bb69\"","id":"9757650","ldap_dn":"","members_count":5,"name":"best-practices-admins","node_id":"T_kwDOCaaRBM4AlOPS","parent_team_id":"9757678","parent_team_read_id":"9757678","parent_team_read_slug":"best-practices","privacy":"closed","slug":"best-practices-admins"},"sensitive_attributes":[],"private":"bnVsbA==","dependencies":["github_team.repo_team"]},{"index_key":"django-click","schema_version":0,"attributes":{"create_default_maintainer":false,"description":"Admin team for the django-click repository","etag":"W/\"53141d12174bc422fe289a2eeaa70d180aa0d81b46797da15541c36df8e5415d\"","id":"12315701","ldap_dn":"","members_count":2,"name":"django-click-admins","node_id":"T_kwDOCaaRBM4Au-w1","parent_team_id":"12315699","parent_team_read_id":"12315699","parent_team_read_slug":"django-click","privacy":"closed","slug":"django-click-admins"},"sensitive_attributes":[],"private":"bnVsbA==","dependencies":["github_team.repo_team"]},{"index_key":"django-cookie-consent","schema_version":0,"attributes":{"create_default_maintainer":false,"description":"Admin team for the django-cookie-consent repository","etag":"W/\"409dcbf7cf68c3abf3e19ca123c05fd6d7da91dc505f3deb975abdadb8e32bd0\"","id":"13287527","ldap_dn":"","members_count":1,"name":"django-cookie-consent-admins","node_id":"T_kwDOCaaRBM4AysBn","parent_team_id":"13287524","parent_team_read_id":"13287524","parent_team_read_slug":"django-cookie-consent","privacy":"closed","slug":"django-cookie-consent-admins"},"sensitive_attributes":[],"private":"bnVsbA==","dependencies":["github_team.repo_team"]},{"index_key":"django-debug-toolbar","schema_version":0,"attributes":{"create_default_maintainer":false,"description":"Admin team for the django-debug-toolbar repository","etag":"W/\"dbcbea2d83a5dcf5827b865f6770dcaa6f1d8a83d3df5a3fc7421ed91958d347\"","id":"11354341","ldap_dn":"","members_count":2,"name":"django-debug-toolbar-admins","node_id":"T_kwDOCaaRBM4ArUDl","parent_team_id":"11354339","parent_team_read_id":"11354339","parent_team_read_slug":"django-debug-toolbar","privacy":"closed","slug":"django-debug-toolbar-admins"},"sensitive_attributes":[],"private":"bnVsbA==","dependencies":["github_team.repo_team"]},{"index_key":"django-enum","schema_version":0,"attributes":{"create_default_maintainer":false,"description":"Admin team for the django-enum repository","etag":"W/\"54df55825e4db3c96d95e41e8d146477bd05bb7cc0cb22d39f8967099ccf46d5\"","id":"12828751","ldap_dn":"","members_count":1,"name":"django-enum-admins","node_id":"T_kwDOCaaRBM4Aw8BP","parent_team_id":"12828748","parent_team_read_id":"12828748","parent_team_read_slug":"django-enum","privacy":"closed","slug":"django-enum-admins"},"sensitive_attributes":[],"private":"bnVsbA==","dependencies":["github_team.repo_team"]},{"index_key":"django-fsm-2","schema_version":0,"attributes":{"create_default_maintainer":false,"description":"Admin team for the django-fsm-2 repository","etag":"W/\"49618d76308a955741eb7bec48810a41807a9363a46c67a7a1c6dffacf251fa9\"","id":"10870432","ldap_dn":"","members_count":2,"name":"django-fsm-2-admins","node_id":"T_kwDOCaaRBM4Apd6g","parent_team_id":"10870431","parent_team_read_id":"10870431","parent_team_read_slug":"django-fsm-2","privacy":"closed","slug":"django-fsm-2-admins"},"sensitive_attributes":[],"private":"bnVsbA==","dependencies":["github_team.repo_team"]},{"index_key":"django-prometheus","schema_version":0,"attributes":{"create_default_maintainer":false,"description":"Admin team for the django-prometheus repository","etag":"W/\"b5a7d45bad487cf990128d4a507fc441c8540573ea69c630b8219f63d7229863\"","id":"13333849","ldap_dn":"","members_count":1,"name":"django-prometheus-admins","node_id":"T_kwDOCaaRBM4Ay3VZ","parent_team_id":"13333847","parent_team_read_id":"13333847","parent_team_read_slug":"django-prometheus","privacy":"closed","slug":"django-prometheus-admins"},"sensitive_attributes":[],"private":"bnVsbA==","dependencies":["github_team.repo_team"]},{"index_key":"django-simple-history","schema_version":0,"attributes":{"create_default_maintainer":false,"description":"Admin team for the django-simple-history repository","etag":"W/\"d0f896c678a4d6987b45e71e4f22a83474626506d90a1e87a9e22f33353ce152\"","id":"13286901","ldap_dn":"","members_count":2,"name":"django-simple-history-admins","node_id":"T_kwDOCaaRBM4Ayr31","parent_team_id":"13286898","parent_team_read_id":"13286898","parent_team_read_slug":"django-simple-history","privacy":"closed","slug":"django-simple-history-admins"},"sensitive_attributes":[],"private":"eyJzY2hlbWFfdmVyc2lvbiI6IjAifQ==","dependencies":["github_team.repo_team"]},{"index_key":"django-tailwind-cli","schema_version":0,"attributes":{"create_default_maintainer":false,"description":"Admin team for the django-tailwind-cli repository","etag":"W/\"3a7359d38703c04abe75db6226c8fcee5a52dfec29c01970f4e7b52a6fd76d64\"","id":"11394000","ldap_dn":"","members_count":1,"name":"django-tailwind-cli-admins","node_id":"T_kwDOCaaRBM4ArdvQ","parent_team_id":"11393999","parent_team_read_id":"11393999","parent_team_read_slug":"django-tailwind-cli","privacy":"closed","slug":"django-tailwind-cli-admins"},"sensitive_attributes":[],"private":"bnVsbA==","dependencies":["github_team.repo_team"]},{"index_key":"django-tasks-scheduler","schema_version":0,"attributes":{"create_default_maintainer":false,"description":"Admin team for the django-tasks-scheduler repository","etag":"W/\"25c7a9af7bbffa5480ce74657e9441629a48c03057e6ce16f92fd040cca89af7\"","id":"10707221","ldap_dn":"","members_count":1,"name":"django-tasks-scheduler-admins","node_id":"T_kwDOCaaRBM4Ao2EV","parent_team_id":"10707217","parent_team_read_id":"10707217","parent_team_read_slug":"django-tasks-scheduler","privacy":"closed","slug":"django-tasks-scheduler-admins"},"sensitive_attributes":[],"private":"bnVsbA==","dependencies":["github_team.repo_team"]},{"index_key":"django-typer","schema_version":0,"attributes":{"create_default_maintainer":false,"description":"Admin team for the django-typer repository","etag":"W/\"38726b713574cc9c3d10ad6489a3d86f4ef5e077da1e3d848ed84f9ab662c447\"","id":"11217214","ldap_dn":"","members_count":2,"name":"django-typer-admins","node_id":"T_kwDOCaaRBM4Aqyk-","parent_team_id":"11217213","parent_team_read_id":"11217213","parent_team_read_slug":"django-typer","privacy":"closed","slug":"django-typer-admins"},"sensitive_attributes":[],"private":"bnVsbA==","dependencies":["github_team.repo_team"]},{"index_key":"django-valkey","schema_version":0,"attributes":{"create_default_maintainer":false,"description":"Admin team for the django-valkey repository","etag":"W/\"0ad2a3fc69034104d1a2c3c337d8a35717ecad3d4b8cc1a1855bf4f8aedd0a97\"","id":"13334520","ldap_dn":"","members_count":1,"name":"django-valkey-admins","node_id":"T_kwDOCaaRBM4Ay3f4","parent_team_id":"13334519","parent_team_read_id":"13334519","parent_team_read_slug":"django-valkey","privacy":"closed","slug":"django-valkey-admins"},"sensitive_attributes":[],"private":"bnVsbA==","dependencies":["github_team.repo_team"]},{"index_key":"drf-excel","schema_version":0,"attributes":{"create_default_maintainer":false,"description":"Admin team for the drf-excel repository","etag":"W/\"b9d767d363ae342810d48aa7ce703de1828198c41c33695e8e8169663dd70109\"","id":"11341702","ldap_dn":"","members_count":2,"name":"drf-excel-admins","node_id":"T_kwDOCaaRBM4ArQ-G","parent_team_id":"11341700","parent_team_read_id":"11341700","parent_team_read_slug":"drf-excel","privacy":"closed","slug":"drf-excel-admins"},"sensitive_attributes":[],"private":"bnVsbA==","dependencies":["github_team.repo_team"]}]},{"mode":"managed","type":"github_team","name":"repo_committer_team","provider":"provider[\"registry.terraform.io/integrations/github\"]","instances":[{"index_key":"axe-selenium-python","schema_version":0,"attributes":{"create_default_maintainer":false,"description":"Committers team for the axe-selenium-python repository","etag":"W/\"8b372c8bd9fa0d3c35b2bbf4f9544e6a076cd41261befaccd6d05a65d6bb3e2c\"","id":"14236310","ldap_dn":"","members_count":0,"name":"axe-selenium-python-committers","node_id":"T_kwDOCaaRBM4A2TqW","parent_team_id":"14236309","parent_team_read_id":"14236309","parent_team_read_slug":"axe-selenium-python","privacy":"closed","slug":"axe-selenium-python-committers"},"sensitive_attributes":[],"private":"bnVsbA==","dependencies":["github_team.repo_team"]},{"index_key":"best-practices","schema_version":0,"attributes":{"create_default_maintainer":false,"description":"Committers team for the best-practices repository","etag":"W/\"5a037ab06c90e215ee037e35c16c7057b9dda74978b2280b2a04f354d284450d\"","id":"9757668","ldap_dn":"","members_count":1,"name":"best-practices-committers","node_id":"T_kwDOCaaRBM4AlOPk","parent_team_id":"9757678","parent_team_read_id":"9757678","parent_team_read_slug":"best-practices","privacy":"closed","slug":"best-practices-committers"},"sensitive_attributes":[],"private":"bnVsbA==","dependencies":["github_team.repo_team"]},{"index_key":"django-click","schema_version":0,"attributes":{"create_default_maintainer":false,"description":"Committers team for the django-click repository","etag":"W/\"5122202fb8043525a1a51422c2a30928018b494dee2747ffc0f32c1ff01bd811\"","id":"12315700","ldap_dn":"","members_count":1,"name":"django-click-committers","node_id":"T_kwDOCaaRBM4Au-w0","parent_team_id":"12315699","parent_team_read_id":"12315699","parent_team_read_slug":"django-click","privacy":"closed","slug":"django-click-committers"},"sensitive_attributes":[],"private":"bnVsbA==","dependencies":["github_team.repo_team"]},{"index_key":"django-cookie-consent","schema_version":0,"attributes":{"create_default_maintainer":false,"description":"Committers team for the django-cookie-consent repository","etag":"W/\"7cba0ca6c519109cf86147b9273499b90ff89ff3882725a27bbc6f02d5ea9545\"","id":"13287526","ldap_dn":"","members_count":1,"name":"django-cookie-consent-committers","node_id":"T_kwDOCaaRBM4AysBm","parent_team_id":"13287524","parent_team_read_id":"13287524","parent_team_read_slug":"django-cookie-consent","privacy":"closed","slug":"django-cookie-consent-committers"},"sensitive_attributes":[],"private":"bnVsbA==","dependencies":["github_team.repo_team"]},{"index_key":"django-debug-toolbar","schema_version":0,"attributes":{"create_default_maintainer":false,"description":"Committers team for the django-debug-toolbar repository","etag":"W/\"e3ef04436477b76b504866b3ce4732cebd6dfae0e04127cb853d28af493d9801\"","id":"11354340","ldap_dn":"","members_count":2,"name":"django-debug-toolbar-committers","node_id":"T_kwDOCaaRBM4ArUDk","parent_team_id":"11354339","parent_team_read_id":"11354339","parent_team_read_slug":"django-debug-toolbar","privacy":"closed","slug":"django-debug-toolbar-committers"},"sensitive_attributes":[],"private":"bnVsbA==","dependencies":["github_team.repo_team"]},{"index_key":"django-enum","schema_version":0,"attributes":{"create_default_maintainer":false,"description":"Committers team for the django-enum repository","etag":"W/\"131548eec956790a3e673602a5fa78731199753a2e5d62260b9fb400d874e28b\"","id":"12828750","ldap_dn":"","members_count":0,"name":"django-enum-committers","node_id":"T_kwDOCaaRBM4Aw8BO","parent_team_id":"12828748","parent_team_read_id":"12828748","parent_team_read_slug":"django-enum","privacy":"closed","slug":"django-enum-committers"},"sensitive_attributes":[],"private":"bnVsbA==","dependencies":["github_team.repo_team"]},{"index_key":"django-fsm-2","schema_version":0,"attributes":{"create_default_maintainer":false,"description":"Committers team for the django-fsm-2 repository","etag":"W/\"c31a6f470294785a158a9435ace2b4eccfd0dea48631188d2d981b0db4b34923\"","id":"10870433","ldap_dn":"","members_count":0,"name":"django-fsm-2-committers","node_id":"T_kwDOCaaRBM4Apd6h","parent_team_id":"10870431","parent_team_read_id":"10870431","parent_team_read_slug":"django-fsm-2","privacy":"closed","slug":"django-fsm-2-committers"},"sensitive_attributes":[],"private":"bnVsbA==","dependencies":["github_team.repo_team"]},{"index_key":"django-prometheus","schema_version":0,"attributes":{"create_default_maintainer":false,"description":"Committers team for the django-prometheus repository","etag":"W/\"14d03c00525d3340e0dc548cd4d2642ef617db43b1dfad8466ca692a71c86bff\"","id":"13333848","ldap_dn":"","members_count":0,"name":"django-prometheus-committers","node_id":"T_kwDOCaaRBM4Ay3VY","parent_team_id":"13333847","parent_team_read_id":"13333847","parent_team_read_slug":"django-prometheus","privacy":"closed","slug":"django-prometheus-committers"},"sensitive_attributes":[],"private":"bnVsbA==","dependencies":["github_team.repo_team"]},{"index_key":"django-simple-history","schema_version":0,"attributes":{"create_default_maintainer":false,"description":"Committers team for the django-simple-history repository","etag":"W/\"f0238525e1f06627cd74f11233207922c880fbad29d1015bbb903e9b5260e1f5\"","id":"13286900","ldap_dn":"","members_count":0,"name":"django-simple-history-committers","node_id":"T_kwDOCaaRBM4Ayr30","parent_team_id":"13286898","parent_team_read_id":"13286898","parent_team_read_slug":"django-simple-history","privacy":"closed","slug":"django-simple-history-committers"},"sensitive_attributes":[],"private":"eyJzY2hlbWFfdmVyc2lvbiI6IjAifQ==","dependencies":["github_team.repo_team"]},{"index_key":"django-tailwind-cli","schema_version":0,"attributes":{"create_default_maintainer":false,"description":"Committers team for the django-tailwind-cli repository","etag":"W/\"1f13248bbf957fc4b5bb70a5b1d980e3ba9f19520dd5935b0eb412b07735ffaf\"","id":"11394001","ldap_dn":"","members_count":0,"name":"django-tailwind-cli-committers","node_id":"T_kwDOCaaRBM4ArdvR","parent_team_id":"11393999","parent_team_read_id":"11393999","parent_team_read_slug":"django-tailwind-cli","privacy":"closed","slug":"django-tailwind-cli-committers"},"sensitive_attributes":[],"private":"bnVsbA==","dependencies":["github_team.repo_team"]},{"index_key":"django-tasks-scheduler","schema_version":0,"attributes":{"create_default_maintainer":false,"description":"Committers team for the django-tasks-scheduler repository","etag":"W/\"8f038ac96223cefd39be48636c82fab559c866510e8de7fd2533d7de79feedbe\"","id":"10707220","ldap_dn":"","members_count":2,"name":"django-tasks-scheduler-committers","node_id":"T_kwDOCaaRBM4Ao2EU","parent_team_id":"10707217","parent_team_read_id":"10707217","parent_team_read_slug":"django-tasks-scheduler","privacy":"closed","slug":"django-tasks-scheduler-committers"},"sensitive_attributes":[],"private":"bnVsbA==","dependencies":["github_team.repo_team"]},{"index_key":"django-typer","schema_version":0,"attributes":{"create_default_maintainer":false,"description":"Committers team for the django-typer repository","etag":"W/\"241c8fa9d2ab7c309003c093b062bfb1c039b518d768355ee57c80552a131b84\"","id":"11217215","ldap_dn":"","members_count":0,"name":"django-typer-committers","node_id":"T_kwDOCaaRBM4Aqyk_","parent_team_id":"11217213","parent_team_read_id":"11217213","parent_team_read_slug":"django-typer","privacy":"closed","slug":"django-typer-committers"},"sensitive_attributes":[],"private":"bnVsbA==","dependencies":["github_team.repo_team"]},{"index_key":"django-valkey","schema_version":0,"attributes":{"create_default_maintainer":false,"description":"Committers team for the django-valkey repository","etag":"W/\"3ae8d8bf12a31aaf3e6446f714c46e6a87651cd286038937c2fff23ffb416046\"","id":"13334521","ldap_dn":"","members_count":0,"name":"django-valkey-committers","node_id":"T_kwDOCaaRBM4Ay3f5","parent_team_id":"13334519","parent_team_read_id":"13334519","parent_team_read_slug":"django-valkey","privacy":"closed","slug":"django-valkey-committers"},"sensitive_attributes":[],"private":"bnVsbA==","dependencies":["github_team.repo_team"]},{"index_key":"drf-excel","schema_version":0,"attributes":{"create_default_maintainer":false,"description":"Committers team for the drf-excel repository","etag":"W/\"9ea6247aba2e630db5a8458f35acac215817072a526d4d433364ab85a3c072ad\"","id":"11341703","ldap_dn":"","members_count":1,"name":"drf-excel-committers","node_id":"T_kwDOCaaRBM4ArQ-H","parent_team_id":"11341700","parent_team_read_id":"11341700","parent_team_read_slug":"drf-excel","privacy":"closed","slug":"drf-excel-committers"},"sensitive_attributes":[],"private":"bnVsbA==","dependencies":["github_team.repo_team"]}]},{"mode":"managed","type":"github_team","name":"repo_team","provider":"provider[\"registry.terraform.io/integrations/github\"]","instances":[{"index_key":"axe-selenium-python","schema_version":0,"attributes":{"create_default_maintainer":false,"description":"Main team for the axe-selenium-python repository","etag":"W/\"aa16d5b523c9b1d07c0bfc2feceec1e36ed1a9f01074360afe4b67f9eb76fa38\"","id":"14236309","ldap_dn":"","members_count":2,"name":"axe-selenium-python","node_id":"T_kwDOCaaRBM4A2TqV","parent_team_id":"","parent_team_read_id":"","parent_team_read_slug":"","privacy":"closed","slug":"axe-selenium-python"},"sensitive_attributes":[],"private":"bnVsbA=="},{"index_key":"best-practices","schema_version":0,"attributes":{"create_default_maintainer":false,"description":"Main team for the best-practices repository","etag":"W/\"fea8ddf124465ec6048bc415c62fa198fa31e67880de00b963cdd121e2058116\"","id":"9757678","ldap_dn":"","members_count":6,"name":"best-practices","node_id":"T_kwDOCaaRBM4AlOPu","parent_team_id":"","parent_team_read_id":"","parent_team_read_slug":"","privacy":"closed","slug":"best-practices"},"sensitive_attributes":[],"private":"bnVsbA=="},{"index_key":"django-click","schema_version":0,"attributes":{"create_default_maintainer":false,"description":"Main team for the django-click repository","etag":"W/\"a943ab0dec3f3aaf6383ed16ed28b3fdac5ae57197c354a30ae64bac21d84fa9\"","id":"12315699","ldap_dn":"","members_count":3,"name":"django-click","node_id":"T_kwDOCaaRBM4Au-wz","parent_team_id":"","parent_team_read_id":"","parent_team_read_slug":"","privacy":"closed","slug":"django-click"},"sensitive_attributes":[],"private":"bnVsbA=="},{"index_key":"django-cookie-consent","schema_version":0,"attributes":{"create_default_maintainer":false,"description":"Main team for the django-cookie-consent repository","etag":"W/\"3a3556a6142536571cf3bf33701fffbcefa21f713bb077d22706fbccc83fe4d6\"","id":"13287524","ldap_dn":"","members_count":2,"name":"django-cookie-consent","node_id":"T_kwDOCaaRBM4AysBk","parent_team_id":"","parent_team_read_id":"","parent_team_read_slug":"","privacy":"closed","slug":"django-cookie-consent"},"sensitive_attributes":[],"private":"bnVsbA=="},{"index_key":"django-debug-toolbar","schema_version":0,"attributes":{"create_default_maintainer":false,"description":"Main team for the django-debug-toolbar repository","etag":"W/\"557a630ecb0563f23b476db8a7545f31f67198ecb9cfbfbab55e81c2d310897b\"","id":"11354339","ldap_dn":"","members_count":14,"name":"django-debug-toolbar","node_id":"T_kwDOCaaRBM4ArUDj","parent_team_id":"","parent_team_read_id":"","parent_team_read_slug":"","privacy":"closed","slug":"django-debug-toolbar"},"sensitive_attributes":[],"private":"bnVsbA=="},{"index_key":"django-enum","schema_version":0,"attributes":{"create_default_maintainer":false,"description":"Main team for the django-enum repository","etag":"W/\"53d755d0ebad8d8ccafdedcce6059a21a923b990b942864ffc0a25e7a7cf945b\"","id":"12828748","ldap_dn":"","members_count":1,"name":"django-enum","node_id":"T_kwDOCaaRBM4Aw8BM","parent_team_id":"","parent_team_read_id":"","parent_team_read_slug":"","privacy":"closed","slug":"django-enum"},"sensitive_attributes":[],"private":"bnVsbA=="},{"index_key":"django-fsm-2","schema_version":0,"attributes":{"create_default_maintainer":false,"description":"Main team for the django-fsm-2 repository","etag":"W/\"52364710686a5ee16685e9cf4886b5f3e492fd7f2129f60f035a571518510556\"","id":"10870431","ldap_dn":"","members_count":3,"name":"django-fsm-2","node_id":"T_kwDOCaaRBM4Apd6f","parent_team_id":"","parent_team_read_id":"","parent_team_read_slug":"","privacy":"closed","slug":"django-fsm-2"},"sensitive_attributes":[],"private":"bnVsbA=="},{"index_key":"django-prometheus","schema_version":0,"attributes":{"create_default_maintainer":false,"description":"Main team for the django-prometheus repository","etag":"W/\"96e3f9996ed4e65290bf1587e5078af21d71aca499ec15fc9162c6aaab93260c\"","id":"13333847","ldap_dn":"","members_count":1,"name":"django-prometheus","node_id":"T_kwDOCaaRBM4Ay3VX","parent_team_id":"","parent_team_read_id":"","parent_team_read_slug":"","privacy":"closed","slug":"django-prometheus"},"sensitive_attributes":[],"private":"bnVsbA=="},{"index_key":"django-simple-history","schema_version":0,"attributes":{"create_default_maintainer":false,"description":"Main team for the django-simple-history repository","etag":"W/\"7e0303bced30a4ffc52a3a30f4a20b3e51d04c8ceed1ffd5996cbc0dd2001265\"","id":"13286898","ldap_dn":"","members_count":2,"name":"django-simple-history","node_id":"T_kwDOCaaRBM4Ayr3y","parent_team_id":"","parent_team_read_id":"","parent_team_read_slug":"","privacy":"closed","slug":"django-simple-history"},"sensitive_attributes":[],"private":"eyJzY2hlbWFfdmVyc2lvbiI6IjAifQ=="},{"index_key":"django-tailwind-cli","schema_version":0,"attributes":{"create_default_maintainer":false,"description":"Main team for the django-tailwind-cli repository","etag":"W/\"b4e8eac611fab4a37231285a81498e27227a4857e32533d4e443c586af3ebb5e\"","id":"11393999","ldap_dn":"","members_count":1,"name":"django-tailwind-cli","node_id":"T_kwDOCaaRBM4ArdvP","parent_team_id":"","parent_team_read_id":"","parent_team_read_slug":"","privacy":"closed","slug":"django-tailwind-cli"},"sensitive_attributes":[],"private":"bnVsbA=="},{"index_key":"django-tasks-scheduler","schema_version":0,"attributes":{"create_default_maintainer":false,"description":"Main team for the django-tasks-scheduler repository","etag":"W/\"3470f04d33eb592033b39ac5f023c2c3c28ab5bd6186cb641b8c0b4143e7585e\"","id":"10707217","ldap_dn":"","members_count":3,"name":"django-tasks-scheduler","node_id":"T_kwDOCaaRBM4Ao2ER","parent_team_id":"","parent_team_read_id":"","parent_team_read_slug":"","privacy":"closed","slug":"django-tasks-scheduler"},"sensitive_attributes":[],"private":"bnVsbA=="},{"index_key":"django-typer","schema_version":0,"attributes":{"create_default_maintainer":false,"description":"Main team for the django-typer repository","etag":"W/\"b7760c610a071b6a0af0bf0765c69b4fa866922f62afe82a5509fe9ef957ec07\"","id":"11217213","ldap_dn":"","members_count":2,"name":"django-typer","node_id":"T_kwDOCaaRBM4Aqyk9","parent_team_id":"","parent_team_read_id":"","parent_team_read_slug":"","privacy":"closed","slug":"django-typer"},"sensitive_attributes":[],"private":"bnVsbA=="},{"index_key":"django-valkey","schema_version":0,"attributes":{"create_default_maintainer":false,"description":"Main team for the django-valkey repository","etag":"W/\"ca83497b3e3acbae2b0c6dd35f5efb9139f8a20e609324b7e6077014ee9306b5\"","id":"13334519","ldap_dn":"","members_count":1,"name":"django-valkey","node_id":"T_kwDOCaaRBM4Ay3f3","parent_team_id":"","parent_team_read_id":"","parent_team_read_slug":"","privacy":"closed","slug":"django-valkey"},"sensitive_attributes":[],"private":"bnVsbA=="},{"index_key":"drf-excel","schema_version":0,"attributes":{"create_default_maintainer":false,"description":"Main team for the drf-excel repository","etag":"W/\"f7f780c680b60219a01e34077d7a34050c6eb61d6f62456f2dc573246f722049\"","id":"11341700","ldap_dn":"","members_count":4,"name":"drf-excel","node_id":"T_kwDOCaaRBM4ArQ-E","parent_team_id":"","parent_team_read_id":"","parent_team_read_slug":"","privacy":"closed","slug":"drf-excel"},"sensitive_attributes":[],"private":"bnVsbA=="}]},{"mode":"managed","type":"github_team_members","name":"repo_admin_members","provider":"provider[\"registry.terraform.io/integrations/github\"]","instances":[{"index_key":"axe-selenium-python","schema_version":0,"attributes":{"id":"axe-selenium-python-admins","members":[{"role":"member","username":"knyghty"},{"role":"member","username":"thibaudcolas"}],"team_id":"axe-selenium-python-admins"},"sensitive_attributes":[],"private":"bnVsbA==","dependencies":["github_team.repo_admin_team","github_team.repo_team"]},{"index_key":"best-practices","schema_version":0,"attributes":{"id":"best-practices-admins","members":[{"role":"maintainer","username":"Stormheg"},{"role":"maintainer","username":"cunla"},{"role":"maintainer","username":"ryancheley"},{"role":"maintainer","username":"tim-schilling"},{"role":"maintainer","username":"williln"}],"team_id":"best-practices-admins"},"sensitive_attributes":[],"private":"bnVsbA==","dependencies":["github_team.repo_admin_team","github_team.repo_team"]},{"index_key":"django-click","schema_version":0,"attributes":{"id":"django-click-admins","members":[{"role":"member","username":"FlipperPA"},{"role":"member","username":"GaretJax"}],"team_id":"django-click-admins"},"sensitive_attributes":[],"private":"bnVsbA==","dependencies":["github_team.repo_admin_team","github_team.repo_team"]},{"index_key":"django-cookie-consent","schema_version":0,"attributes":{"id":"django-cookie-consent-admins","members":[{"role":"member","username":"sergei-maertens"}],"team_id":"django-cookie-consent-admins"},"sensitive_attributes":[],"private":"bnVsbA==","dependencies":["github_team.repo_admin_team","github_team.repo_team"]},{"index_key":"django-debug-toolbar","schema_version":0,"attributes":{"id":"django-debug-toolbar-admins","members":[{"role":"maintainer","username":"tim-schilling"},{"role":"member","username":"matthiask"}],"team_id":"django-debug-toolbar-admins"},"sensitive_attributes":[],"private":"bnVsbA==","dependencies":["github_team.repo_admin_team","github_team.repo_team"]},{"index_key":"django-enum","schema_version":0,"attributes":{"id":"django-enum-admins","members":[{"role":"member","username":"bckohan"}],"team_id":"django-enum-admins"},"sensitive_attributes":[],"private":"bnVsbA==","dependencies":["github_team.repo_admin_team","github_team.repo_team"]},{"index_key":"django-fsm-2","schema_version":0,"attributes":{"id":"django-fsm-2-admins","members":[{"role":"member","username":"Natim"},{"role":"member","username":"pfouque"}],"team_id":"django-fsm-2-admins"},"sensitive_attributes":[],"private":"bnVsbA==","dependencies":["github_team.repo_admin_team","github_team.repo_team"]},{"index_key":"django-prometheus","schema_version":0,"attributes":{"id":"django-prometheus-admins","members":[{"role":"member","username":"asherf"}],"team_id":"django-prometheus-admins"},"sensitive_attributes":[],"private":"bnVsbA==","dependencies":["github_team.repo_admin_team","github_team.repo_team"]},{"index_key":"django-simple-history","schema_version":0,"attributes":{"id":"django-simple-history-admins","members":[{"role":"maintainer","username":"tim-schilling"},{"role":"member","username":"ddabble"}],"team_id":"django-simple-history-admins"},"sensitive_attributes":[],"private":"bnVsbA==","dependencies":["github_team.repo_admin_team","github_team.repo_team"]},{"index_key":"django-tailwind-cli","schema_version":0,"attributes":{"id":"django-tailwind-cli-admins","members":[{"role":"member","username":"oliverandrich"}],"team_id":"django-tailwind-cli-admins"},"sensitive_attributes":[],"private":"bnVsbA==","dependencies":["github_team.repo_admin_team","github_team.repo_team"]},{"index_key":"django-tasks-scheduler","schema_version":0,"attributes":{"id":"django-tasks-scheduler-admins","members":[{"role":"maintainer","username":"cunla"}],"team_id":"django-tasks-scheduler-admins"},"sensitive_attributes":[],"private":"bnVsbA==","dependencies":["github_team.repo_admin_team","github_team.repo_team"]},{"index_key":"django-typer","schema_version":0,"attributes":{"id":"django-typer-admins","members":[{"role":"member","username":"bckohan"},{"role":"member","username":"oliverandrich"}],"team_id":"django-typer-admins"},"sensitive_attributes":[],"private":"bnVsbA==","dependencies":["github_team.repo_admin_team","github_team.repo_team"]},{"index_key":"django-valkey","schema_version":0,"attributes":{"id":"django-valkey-admins","members":[{"role":"member","username":"amirreza8002"}],"team_id":"django-valkey-admins"},"sensitive_attributes":[],"private":"bnVsbA==","dependencies":["github_team.repo_admin_team","github_team.repo_team"]},{"index_key":"drf-excel","schema_version":0,"attributes":{"id":"drf-excel-admins","members":[{"role":"member","username":"FlipperPA"},{"role":"member","username":"browniebroke"}],"team_id":"drf-excel-admins"},"sensitive_attributes":[],"private":"bnVsbA==","dependencies":["github_team.repo_admin_team","github_team.repo_team"]}]},{"mode":"managed","type":"github_team_members","name":"repo_committer_team_members","provider":"provider[\"registry.terraform.io/integrations/github\"]","instances":[{"index_key":"best-practices","schema_version":0,"attributes":{"id":"best-practices-committers","members":[{"role":"member","username":"priyapahwa"}],"team_id":"best-practices-committers"},"sensitive_attributes":[],"private":"bnVsbA==","dependencies":["github_team.repo_committer_team","github_team.repo_team"]},{"index_key":"django-click","schema_version":0,"attributes":{"id":"django-click-committers","members":[{"role":"member","username":"ulgens"}],"team_id":"django-click-committers"},"sensitive_attributes":[],"private":"bnVsbA==","dependencies":["github_team.repo_committer_team","github_team.repo_team"]},{"index_key":"django-cookie-consent","schema_version":0,"attributes":{"id":"django-cookie-consent-committers","members":[{"role":"member","username":"MrCordeiro"}],"team_id":"django-cookie-consent-committers"},"sensitive_attributes":[],"private":"bnVsbA==","dependencies":["github_team.repo_committer_team","github_team.repo_team"]},{"index_key":"django-debug-toolbar","schema_version":0,"attributes":{"id":"django-debug-toolbar-committers","members":[{"role":"member","username":"elineda"},{"role":"member","username":"salty-ivy"}],"team_id":"django-debug-toolbar-committers"},"sensitive_attributes":[],"private":"bnVsbA==","dependencies":["github_team.repo_committer_team","github_team.repo_team"]},{"index_key":"django-tasks-scheduler","schema_version":0,"attributes":{"id":"django-tasks-scheduler-committers","members":[{"role":"member","username":"DhavalGojiya"},{"role":"member","username":"cclauss"}],"team_id":"django-tasks-scheduler-committers"},"sensitive_attributes":[],"private":"bnVsbA==","dependencies":["github_team.repo_committer_team","github_team.repo_team"]},{"index_key":"drf-excel","schema_version":0,"attributes":{"id":"drf-excel-committers","members":[{"role":"member","username":"rptmat57"}],"team_id":"drf-excel-committers"},"sensitive_attributes":[],"private":"bnVsbA==","dependencies":["github_team.repo_committer_team","github_team.repo_team"]}]},{"mode":"managed","type":"github_team_members","name":"repo_team_members","provider":"provider[\"registry.terraform.io/integrations/github\"]","instances":[{"index_key":"axe-selenium-python","schema_version":0,"attributes":{"id":"axe-selenium-python","members":[{"role":"member","username":"knyghty"},{"role":"member","username":"thibaudcolas"}],"team_id":"axe-selenium-python"},"sensitive_attributes":[],"private":"bnVsbA==","dependencies":["github_team.repo_team"]},{"index_key":"best-practices","schema_version":0,"attributes":{"id":"best-practices","members":[{"role":"maintainer","username":"Stormheg"},{"role":"maintainer","username":"cunla"},{"role":"maintainer","username":"ryancheley"},{"role":"maintainer","username":"tim-schilling"},{"role":"maintainer","username":"williln"},{"role":"member","username":"priyapahwa"}],"team_id":"best-practices"},"sensitive_attributes":[],"private":"bnVsbA==","dependencies":["github_team.repo_team"]},{"index_key":"django-click","schema_version":0,"attributes":{"id":"django-click","members":[{"role":"member","username":"FlipperPA"},{"role":"member","username":"GaretJax"},{"role":"member","username":"ulgens"}],"team_id":"django-click"},"sensitive_attributes":[],"private":"bnVsbA==","dependencies":["github_team.repo_team"]},{"index_key":"django-cookie-consent","schema_version":0,"attributes":{"id":"django-cookie-consent","members":[{"role":"member","username":"MrCordeiro"},{"role":"member","username":"sergei-maertens"}],"team_id":"django-cookie-consent"},"sensitive_attributes":[],"private":"bnVsbA==","dependencies":["github_team.repo_team"]},{"index_key":"django-debug-toolbar","schema_version":0,"attributes":{"id":"django-debug-toolbar","members":[{"role":"maintainer","username":"tim-schilling"},{"role":"member","username":"Chiemezuo"},{"role":"member","username":"JohananOppongAmoateng"},{"role":"member","username":"VeldaKiara"},{"role":"member","username":"Zakui"},{"role":"member","username":"andoriyaprashant"},{"role":"member","username":"blingblin-g"},{"role":"member","username":"devatbosch"},{"role":"member","username":"dr-rompecabezas"},{"role":"member","username":"elineda"},{"role":"member","username":"federicobond"},{"role":"member","username":"jmgutu"},{"role":"member","username":"matthiask"},{"role":"member","username":"salty-ivy"}],"team_id":"django-debug-toolbar"},"sensitive_attributes":[],"private":"bnVsbA==","dependencies":["github_team.repo_team"]},{"index_key":"django-enum","schema_version":0,"attributes":{"id":"django-enum","members":[{"role":"member","username":"bckohan"}],"team_id":"django-enum"},"sensitive_attributes":[],"private":"bnVsbA==","dependencies":["github_team.repo_team"]},{"index_key":"django-fsm-2","schema_version":0,"attributes":{"id":"django-fsm-2","members":[{"role":"member","username":"Natim"},{"role":"member","username":"giovannicimolin"},{"role":"member","username":"pfouque"}],"team_id":"django-fsm-2"},"sensitive_attributes":[],"private":"bnVsbA==","dependencies":["github_team.repo_team"]},{"index_key":"django-prometheus","schema_version":0,"attributes":{"id":"django-prometheus","members":[{"role":"member","username":"asherf"}],"team_id":"django-prometheus"},"sensitive_attributes":[],"private":"bnVsbA==","dependencies":["github_team.repo_team"]},{"index_key":"django-simple-history","schema_version":0,"attributes":{"id":"django-simple-history","members":[{"role":"maintainer","username":"tim-schilling"},{"role":"member","username":"ddabble"}],"team_id":"django-simple-history"},"sensitive_attributes":[],"private":"bnVsbA==","dependencies":["github_team.repo_team"]},{"index_key":"django-tailwind-cli","schema_version":0,"attributes":{"id":"django-tailwind-cli","members":[{"role":"member","username":"oliverandrich"}],"team_id":"django-tailwind-cli"},"sensitive_attributes":[],"private":"bnVsbA==","dependencies":["github_team.repo_team"]},{"index_key":"django-tasks-scheduler","schema_version":0,"attributes":{"id":"django-tasks-scheduler","members":[{"role":"maintainer","username":"cunla"},{"role":"member","username":"DhavalGojiya"},{"role":"member","username":"cclauss"}],"team_id":"django-tasks-scheduler"},"sensitive_attributes":[],"private":"bnVsbA==","dependencies":["github_team.repo_team"]},{"index_key":"django-typer","schema_version":0,"attributes":{"id":"django-typer","members":[{"role":"member","username":"bckohan"},{"role":"member","username":"oliverandrich"}],"team_id":"django-typer"},"sensitive_attributes":[],"private":"bnVsbA==","dependencies":["github_team.repo_team"]},{"index_key":"django-valkey","schema_version":0,"attributes":{"id":"django-valkey","members":[{"role":"member","username":"amirreza8002"}],"team_id":"django-valkey"},"sensitive_attributes":[],"private":"bnVsbA==","dependencies":["github_team.repo_team"]},{"index_key":"drf-excel","schema_version":0,"attributes":{"id":"drf-excel","members":[{"role":"member","username":"FlipperPA"},{"role":"member","username":"browniebroke"},{"role":"member","username":"justbackend"},{"role":"member","username":"rptmat57"}],"team_id":"drf-excel"},"sensitive_attributes":[],"private":"bnVsbA==","dependencies":["github_team.repo_team"]}]},{"mode":"managed","type":"github_team_repository","name":"repo_admin_team_access","provider":"provider[\"registry.terraform.io/integrations/github\"]","instances":[{"index_key":"axe-selenium-python","schema_version":0,"attributes":{"etag":"W/\"60c36677839c5964797174ea5770e8b304312e4393f4f31f44307f84225888a2\"","id":"14236311:axe-selenium-python","permission":"admin","repository":"axe-selenium-python","team_id":"axe-selenium-python-admins"},"sensitive_attributes":[],"private":"bnVsbA==","dependencies":["github_team.repo_admin_team","github_team.repo_team"]},{"index_key":"best-practices","schema_version":0,"attributes":{"etag":"W/\"e8eb42b3afacd8c4bf6067e5fdb02b1c3f6e0f59f1e8e0bafa16b8720dc0b2a3\"","id":"9757650:best-practices","permission":"admin","repository":"best-practices","team_id":"best-practices-admins"},"sensitive_attributes":[],"private":"bnVsbA==","dependencies":["github_team.repo_admin_team","github_team.repo_team"]},{"index_key":"django-click","schema_version":0,"attributes":{"etag":"W/\"fe4b06cf576758dac79f09094e174d7af6b3f4606320da4229b9050bc43c5571\"","id":"12315701:django-click","permission":"admin","repository":"django-click","team_id":"django-click-admins"},"sensitive_attributes":[],"private":"bnVsbA==","dependencies":["github_team.repo_admin_team","github_team.repo_team"]},{"index_key":"django-cookie-consent","schema_version":0,"attributes":{"etag":"W/\"615e6fec0a51cc159136c8d351c06a322883877b3cbfca1a8964548e77975f1f\"","id":"13287527:django-cookie-consent","permission":"admin","repository":"django-cookie-consent","team_id":"django-cookie-consent-admins"},"sensitive_attributes":[],"private":"bnVsbA==","dependencies":["github_team.repo_admin_team","github_team.repo_team"]},{"index_key":"django-debug-toolbar","schema_version":0,"attributes":{"etag":"W/\"2d6717b127804a30225264bca48909e2eaaf1ffb0751924d4c052c6b1d459d1c\"","id":"11354341:django-debug-toolbar","permission":"admin","repository":"django-debug-toolbar","team_id":"django-debug-toolbar-admins"},"sensitive_attributes":[],"private":"bnVsbA==","dependencies":["github_team.repo_admin_team","github_team.repo_team"]},{"index_key":"django-enum","schema_version":0,"attributes":{"etag":"W/\"eb67fbfe762315fcc56fc611473293bd4b7914be5aa2a062185d50bf98a1272d\"","id":"12828751:django-enum","permission":"admin","repository":"django-enum","team_id":"django-enum-admins"},"sensitive_attributes":[],"private":"bnVsbA==","dependencies":["github_team.repo_admin_team","github_team.repo_team"]},{"index_key":"django-fsm-2","schema_version":0,"attributes":{"etag":"W/\"a33b6638e44c963412bf8e945653a29bff5908994215d6998eb6cb344c05c4c6\"","id":"10870432:django-fsm-2","permission":"admin","repository":"django-fsm-2","team_id":"django-fsm-2-admins"},"sensitive_attributes":[],"private":"bnVsbA==","dependencies":["github_team.repo_admin_team","github_team.repo_team"]},{"index_key":"django-prometheus","schema_version":0,"attributes":{"etag":"W/\"f817343e7b9ae1bc7a82d8ceeaf87d6c7b6f3d144ba54640acd8278804c7ea3e\"","id":"13333849:django-prometheus","permission":"admin","repository":"django-prometheus","team_id":"django-prometheus-admins"},"sensitive_attributes":[],"private":"bnVsbA==","dependencies":["github_team.repo_admin_team","github_team.repo_team"]},{"index_key":"django-simple-history","schema_version":0,"attributes":{"etag":"W/\"b86c23a0f069e33083ddc64a6b2dc5a8e4b5c7d08d478740c0569ef9dd380aaa\"","id":"13286901:django-simple-history","permission":"admin","repository":"django-simple-history","team_id":"django-simple-history-admins"},"sensitive_attributes":[],"private":"bnVsbA==","dependencies":["github_team.repo_admin_team","github_team.repo_team"]},{"index_key":"django-tailwind-cli","schema_version":0,"attributes":{"etag":"W/\"fed639b4a2a5f6bcaad8979a9a7b807ceb09a17461deb8bd69d644d8c0d8a2ea\"","id":"11394000:django-tailwind-cli","permission":"admin","repository":"django-tailwind-cli","team_id":"django-tailwind-cli-admins"},"sensitive_attributes":[],"private":"bnVsbA==","dependencies":["github_team.repo_admin_team","github_team.repo_team"]},{"index_key":"django-tasks-scheduler","schema_version":0,"attributes":{"etag":"W/\"90b127a31fba83768dd71030416c2bb12fa39717ffcdf2de3305939f225c0b83\"","id":"10707221:django-tasks-scheduler","permission":"admin","repository":"django-tasks-scheduler","team_id":"django-tasks-scheduler-admins"},"sensitive_attributes":[],"private":"bnVsbA==","dependencies":["github_team.repo_admin_team","github_team.repo_team"]},{"index_key":"django-typer","schema_version":0,"attributes":{"etag":"W/\"20f31092a4b9cbaa12074a85031bc2b502b92f6eedc7e6a963535a5c1d431a77\"","id":"11217214:django-typer","permission":"admin","repository":"django-typer","team_id":"django-typer-admins"},"sensitive_attributes":[],"private":"bnVsbA==","dependencies":["github_team.repo_admin_team","github_team.repo_team"]},{"index_key":"django-valkey","schema_version":0,"attributes":{"etag":"W/\"215142dcf3549cd641496584f684dbc4b1c6c29fe2d6914b1bd21d826f6d794c\"","id":"13334520:django-valkey","permission":"admin","repository":"django-valkey","team_id":"django-valkey-admins"},"sensitive_attributes":[],"private":"bnVsbA==","dependencies":["github_team.repo_admin_team","github_team.repo_team"]},{"index_key":"drf-excel","schema_version":0,"attributes":{"etag":"W/\"05a8a920f012097870fb8a298e0e56d107341f1d45645d9673a74ef8030c07e3\"","id":"11341702:drf-excel","permission":"admin","repository":"drf-excel","team_id":"drf-excel-admins"},"sensitive_attributes":[],"private":"bnVsbA==","dependencies":["github_team.repo_admin_team","github_team.repo_team"]}]},{"mode":"managed","type":"github_team_repository","name":"repo_committer_team_access","provider":"provider[\"registry.terraform.io/integrations/github\"]","instances":[{"index_key":"axe-selenium-python","schema_version":0,"attributes":{"etag":"W/\"0d368165178af04042c8e4a553f3e22996be62ceca4c1c6b82f8435576127e03\"","id":"14236310:axe-selenium-python","permission":"maintain","repository":"axe-selenium-python","team_id":"axe-selenium-python-committers"},"sensitive_attributes":[],"private":"bnVsbA==","dependencies":["github_team.repo_committer_team","github_team.repo_team"]},{"index_key":"best-practices","schema_version":0,"attributes":{"etag":"W/\"dafb7c0ad512bc98e7a86a32a40e1b74a352e80b9ec03fe5d6ee1a2ffb3f7082\"","id":"9757668:best-practices","permission":"maintain","repository":"best-practices","team_id":"best-practices-committers"},"sensitive_attributes":[],"private":"bnVsbA==","dependencies":["github_team.repo_committer_team","github_team.repo_team"]},{"index_key":"django-click","schema_version":0,"attributes":{"etag":"W/\"f19c1f14fde70f95e509c62de5536688245bde50a5a96ecc457c9be8d3bdcdaa\"","id":"12315700:django-click","permission":"maintain","repository":"django-click","team_id":"django-click-committers"},"sensitive_attributes":[],"private":"bnVsbA==","dependencies":["github_team.repo_committer_team","github_team.repo_team"]},{"index_key":"django-cookie-consent","schema_version":0,"attributes":{"etag":"W/\"34d878c2bddf3341ff42985dca487e0e8d205940755ad5ef9fb4f1f3de3c9d47\"","id":"13287526:django-cookie-consent","permission":"maintain","repository":"django-cookie-consent","team_id":"django-cookie-consent-committers"},"sensitive_attributes":[],"private":"bnVsbA==","dependencies":["github_team.repo_committer_team","github_team.repo_team"]},{"index_key":"django-debug-toolbar","schema_version":0,"attributes":{"etag":"W/\"e5244e1917245c13a27aaee1ab731aee3365fdb5d67fd740a99945bc2e7cc10c\"","id":"11354340:django-debug-toolbar","permission":"maintain","repository":"django-debug-toolbar","team_id":"django-debug-toolbar-committers"},"sensitive_attributes":[],"private":"bnVsbA==","dependencies":["github_team.repo_committer_team","github_team.repo_team"]},{"index_key":"django-enum","schema_version":0,"attributes":{"etag":"W/\"044026344f6d81c96bc9743495c0c0c5ddf2b7af7f913a2b638f26c7e87afd45\"","id":"12828750:django-enum","permission":"maintain","repository":"django-enum","team_id":"django-enum-committers"},"sensitive_attributes":[],"private":"bnVsbA==","dependencies":["github_team.repo_committer_team","github_team.repo_team"]},{"index_key":"django-fsm-2","schema_version":0,"attributes":{"etag":"W/\"5e3ffc73a654c677bd927fced5cbef1dbf6813c619e46c965ce86f0d61876961\"","id":"10870433:django-fsm-2","permission":"maintain","repository":"django-fsm-2","team_id":"django-fsm-2-committers"},"sensitive_attributes":[],"private":"bnVsbA==","dependencies":["github_team.repo_committer_team","github_team.repo_team"]},{"index_key":"django-prometheus","schema_version":0,"attributes":{"etag":"W/\"06c60919e59122a2e480345baa72b54bbe8efa5961e0011b01655a35a59b7aea\"","id":"13333848:django-prometheus","permission":"maintain","repository":"django-prometheus","team_id":"django-prometheus-committers"},"sensitive_attributes":[],"private":"bnVsbA==","dependencies":["github_team.repo_committer_team","github_team.repo_team"]},{"index_key":"django-simple-history","schema_version":0,"attributes":{"etag":"W/\"a0adcfd3e4408c29b2c774c4566d143e6a3ee3e8aa12b72cbc2aa36236afc6fa\"","id":"13286900:django-simple-history","permission":"maintain","repository":"django-simple-history","team_id":"django-simple-history-committers"},"sensitive_attributes":[],"private":"bnVsbA==","dependencies":["github_team.repo_committer_team","github_team.repo_team"]},{"index_key":"django-tailwind-cli","schema_version":0,"attributes":{"etag":"W/\"78566ba3d97c6a1761b6950123dd5c77ea4f82f17cdbc024d29ba604f40005b9\"","id":"11394001:django-tailwind-cli","permission":"maintain","repository":"django-tailwind-cli","team_id":"django-tailwind-cli-committers"},"sensitive_attributes":[],"private":"bnVsbA==","dependencies":["github_team.repo_committer_team","github_team.repo_team"]},{"index_key":"django-tasks-scheduler","schema_version":0,"attributes":{"etag":"W/\"aaf2bc97c47cb2f63c654e887697dda267010606410bcf8b3beccdc2bd755d5e\"","id":"10707220:django-tasks-scheduler","permission":"maintain","repository":"django-tasks-scheduler","team_id":"django-tasks-scheduler-committers"},"sensitive_attributes":[],"private":"bnVsbA==","dependencies":["github_team.repo_committer_team","github_team.repo_team"]},{"index_key":"django-typer","schema_version":0,"attributes":{"etag":"W/\"77988d9faeeb8a042bf07d1159b9764dfb2ef46f91439e9696f454e7360f8d50\"","id":"11217215:django-typer","permission":"maintain","repository":"django-typer","team_id":"django-typer-committers"},"sensitive_attributes":[],"private":"bnVsbA==","dependencies":["github_team.repo_committer_team","github_team.repo_team"]},{"index_key":"django-valkey","schema_version":0,"attributes":{"etag":"W/\"7a096004cb82de6e4536f5a99369a46d7764e17878ae1e3037ea8b5104f8a624\"","id":"13334521:django-valkey","permission":"maintain","repository":"django-valkey","team_id":"django-valkey-committers"},"sensitive_attributes":[],"private":"bnVsbA==","dependencies":["github_team.repo_committer_team","github_team.repo_team"]},{"index_key":"drf-excel","schema_version":0,"attributes":{"etag":"W/\"2f3f10cca71e685ddbd072129db6cf060fdc2224a3bbedfb942c13cc8d3722d0\"","id":"11341703:drf-excel","permission":"maintain","repository":"drf-excel","team_id":"drf-excel-committers"},"sensitive_attributes":[],"private":"bnVsbA==","dependencies":["github_team.repo_committer_team","github_team.repo_team"]}]},{"mode":"managed","type":"github_team_repository","name":"repo_team_access","provider":"provider[\"registry.terraform.io/integrations/github\"]","instances":[{"index_key":"axe-selenium-python","schema_version":0,"attributes":{"etag":"W/\"73ae70563a934bbd34e22cd47882c6e96bfa01c10a9bc57bcadf21a57add3eaa\"","id":"14236309:axe-selenium-python","permission":"triage","repository":"axe-selenium-python","team_id":"axe-selenium-python"},"sensitive_attributes":[],"private":"bnVsbA==","dependencies":["github_team.repo_team"]},{"index_key":"best-practices","schema_version":0,"attributes":{"etag":"W/\"32bbc50bd689dfe6bad802b2ed3b275c65c82678cb683baf0fdb8775d2602a73\"","id":"9757678:best-practices","permission":"triage","repository":"best-practices","team_id":"best-practices"},"sensitive_attributes":[],"private":"bnVsbA==","dependencies":["github_team.repo_team"]},{"index_key":"django-click","schema_version":0,"attributes":{"etag":"W/\"4e7e20348471d2ef4ea966ba3ecb0178f95aa1c8ef9688cb57f230e840d2243e\"","id":"12315699:django-click","permission":"triage","repository":"django-click","team_id":"django-click"},"sensitive_attributes":[],"private":"bnVsbA==","dependencies":["github_team.repo_team"]},{"index_key":"django-cookie-consent","schema_version":0,"attributes":{"etag":"W/\"ad26fd419a3fd7a00d9e643344f7b0f6fb576db4c6d84900dfdce9b7cfac7ed4\"","id":"13287524:django-cookie-consent","permission":"triage","repository":"django-cookie-consent","team_id":"django-cookie-consent"},"sensitive_attributes":[],"private":"bnVsbA==","dependencies":["github_team.repo_team"]},{"index_key":"django-debug-toolbar","schema_version":0,"attributes":{"etag":"W/\"b26b36271dbd1690d06f4fbcd5db3f87b759bfc6f081f181d299cac4b2916306\"","id":"11354339:django-debug-toolbar","permission":"triage","repository":"django-debug-toolbar","team_id":"django-debug-toolbar"},"sensitive_attributes":[],"private":"bnVsbA==","dependencies":["github_team.repo_team"]},{"index_key":"django-enum","schema_version":0,"attributes":{"etag":"W/\"48e36882aeff82d71c81db508dcf612ac025f721367c4c5dd63c41aeb8bb3a38\"","id":"12828748:django-enum","permission":"triage","repository":"django-enum","team_id":"django-enum"},"sensitive_attributes":[],"private":"bnVsbA==","dependencies":["github_team.repo_team"]},{"index_key":"django-fsm-2","schema_version":0,"attributes":{"etag":"W/\"771185b031962c675732b18e5aebf8b70d7e4a765f2462f5aa099ba9d1b59af4\"","id":"10870431:django-fsm-2","permission":"triage","repository":"django-fsm-2","team_id":"django-fsm-2"},"sensitive_attributes":[],"private":"bnVsbA==","dependencies":["github_team.repo_team"]},{"index_key":"django-prometheus","schema_version":0,"attributes":{"etag":"W/\"9dba5030f376ad62e7d3f7dbd8eab691942b598333afc60a4b2639f901104cbd\"","id":"13333847:django-prometheus","permission":"triage","repository":"django-prometheus","team_id":"django-prometheus"},"sensitive_attributes":[],"private":"bnVsbA==","dependencies":["github_team.repo_team"]},{"index_key":"django-simple-history","schema_version":0,"attributes":{"etag":"W/\"2938ae7e972a2a07aa5d9ef29076784bea7b71b6c0114ab6bb7b1016ef0b9761\"","id":"13286898:django-simple-history","permission":"triage","repository":"django-simple-history","team_id":"django-simple-history"},"sensitive_attributes":[],"private":"bnVsbA==","dependencies":["github_team.repo_team"]},{"index_key":"django-tailwind-cli","schema_version":0,"attributes":{"etag":"W/\"d12bd01e4aaf68b2f615ec42aa7811c84d72c23b360ec6df299dde0c4c801bd4\"","id":"11393999:django-tailwind-cli","permission":"triage","repository":"django-tailwind-cli","team_id":"django-tailwind-cli"},"sensitive_attributes":[],"private":"bnVsbA==","dependencies":["github_team.repo_team"]},{"index_key":"django-tasks-scheduler","schema_version":0,"attributes":{"etag":"W/\"4c589d755497b83afc67541a8aaca40c1b2c8260f23b6e8dee2b12b13a68330f\"","id":"10707217:django-tasks-scheduler","permission":"triage","repository":"django-tasks-scheduler","team_id":"django-tasks-scheduler"},"sensitive_attributes":[],"private":"bnVsbA==","dependencies":["github_team.repo_team"]},{"index_key":"django-typer","schema_version":0,"attributes":{"etag":"W/\"c34d957f13c19590d3c8260c545afe8468ba8c85d9b066d759e7481f890aa847\"","id":"11217213:django-typer","permission":"triage","repository":"django-typer","team_id":"django-typer"},"sensitive_attributes":[],"private":"bnVsbA==","dependencies":["github_team.repo_team"]},{"index_key":"django-valkey","schema_version":0,"attributes":{"etag":"W/\"b9e719fff6d3d7bfa8aa4b769da43002468329d66827f2322692aa13efeaa6d9\"","id":"13334519:django-valkey","permission":"triage","repository":"django-valkey","team_id":"django-valkey"},"sensitive_attributes":[],"private":"bnVsbA==","dependencies":["github_team.repo_team"]},{"index_key":"drf-excel","schema_version":0,"attributes":{"etag":"W/\"3cafab9834c1ca62cfa11e3bed9c7baca4d22b0e9494efcb978851fb5acdd2a9\"","id":"11341700:drf-excel","permission":"triage","repository":"drf-excel","team_id":"drf-excel"},"sensitive_attributes":[],"private":"bnVsbA==","dependencies":["github_team.repo_team"]}]},{"mode":"managed","type":"github_team_settings","name":"this","provider":"provider[\"registry.terraform.io/integrations/github\"]","instances":[{"index_key":"axe-selenium-python","schema_version":0,"attributes":{"id":"T_kwDOCaaRBM4A2TqV","review_request_delegation":[{"algorithm":"LOAD_BALANCE","member_count":2,"notify":false}],"team_id":"axe-selenium-python","team_slug":"axe-selenium-python","team_uid":"T_kwDOCaaRBM4A2TqV"},"sensitive_attributes":[],"private":"bnVsbA==","dependencies":["github_team.repo_team"]},{"index_key":"best-practices","schema_version":0,"attributes":{"id":"T_kwDOCaaRBM4AlOPu","review_request_delegation":[{"algorithm":"LOAD_BALANCE","member_count":2,"notify":false}],"team_id":"best-practices","team_slug":"best-practices","team_uid":"T_kwDOCaaRBM4AlOPu"},"sensitive_attributes":[],"private":"bnVsbA==","dependencies":["github_team.repo_team"]},{"index_key":"django-click","schema_version":0,"attributes":{"id":"T_kwDOCaaRBM4Au-wz","review_request_delegation":[{"algorithm":"LOAD_BALANCE","member_count":2,"notify":false}],"team_id":"django-click","team_slug":"django-click","team_uid":"T_kwDOCaaRBM4Au-wz"},"sensitive_attributes":[],"private":"bnVsbA==","dependencies":["github_team.repo_team"]},{"index_key":"django-cookie-consent","schema_version":0,"attributes":{"id":"T_kwDOCaaRBM4AysBk","review_request_delegation":[{"algorithm":"LOAD_BALANCE","member_count":2,"notify":false}],"team_id":"django-cookie-consent","team_slug":"django-cookie-consent","team_uid":"T_kwDOCaaRBM4AysBk"},"sensitive_attributes":[],"private":"bnVsbA==","dependencies":["github_team.repo_team"]},{"index_key":"django-debug-toolbar","schema_version":0,"attributes":{"id":"T_kwDOCaaRBM4ArUDj","review_request_delegation":[{"algorithm":"LOAD_BALANCE","member_count":2,"notify":false}],"team_id":"django-debug-toolbar","team_slug":"django-debug-toolbar","team_uid":"T_kwDOCaaRBM4ArUDj"},"sensitive_attributes":[],"private":"bnVsbA==","dependencies":["github_team.repo_team"]},{"index_key":"django-enum","schema_version":0,"attributes":{"id":"T_kwDOCaaRBM4Aw8BM","review_request_delegation":[{"algorithm":"LOAD_BALANCE","member_count":2,"notify":false}],"team_id":"django-enum","team_slug":"django-enum","team_uid":"T_kwDOCaaRBM4Aw8BM"},"sensitive_attributes":[],"private":"bnVsbA==","dependencies":["github_team.repo_team"]},{"index_key":"django-fsm-2","schema_version":0,"attributes":{"id":"T_kwDOCaaRBM4Apd6f","review_request_delegation":[{"algorithm":"LOAD_BALANCE","member_count":2,"notify":false}],"team_id":"django-fsm-2","team_slug":"django-fsm-2","team_uid":"T_kwDOCaaRBM4Apd6f"},"sensitive_attributes":[],"private":"bnVsbA==","dependencies":["github_team.repo_team"]},{"index_key":"django-prometheus","schema_version":0,"attributes":{"id":"T_kwDOCaaRBM4Ay3VX","review_request_delegation":[{"algorithm":"LOAD_BALANCE","member_count":2,"notify":false}],"team_id":"django-prometheus","team_slug":"django-prometheus","team_uid":"T_kwDOCaaRBM4Ay3VX"},"sensitive_attributes":[],"private":"bnVsbA==","dependencies":["github_team.repo_team"]},{"index_key":"django-simple-history","schema_version":0,"attributes":{"id":"T_kwDOCaaRBM4Ayr3y","review_request_delegation":[{"algorithm":"LOAD_BALANCE","member_count":2,"notify":false}],"team_id":"django-simple-history","team_slug":"django-simple-history","team_uid":"T_kwDOCaaRBM4Ayr3y"},"sensitive_attributes":[],"private":"eyJzY2hlbWFfdmVyc2lvbiI6IjAifQ==","dependencies":["github_team.repo_team"]},{"index_key":"django-tailwind-cli","schema_version":0,"attributes":{"id":"T_kwDOCaaRBM4ArdvP","review_request_delegation":[{"algorithm":"LOAD_BALANCE","member_count":2,"notify":false}],"team_id":"django-tailwind-cli","team_slug":"django-tailwind-cli","team_uid":"T_kwDOCaaRBM4ArdvP"},"sensitive_attributes":[],"private":"bnVsbA==","dependencies":["github_team.repo_team"]},{"index_key":"django-tasks-scheduler","schema_version":0,"attributes":{"id":"T_kwDOCaaRBM4Ao2ER","review_request_delegation":[{"algorithm":"LOAD_BALANCE","member_count":2,"notify":false}],"team_id":"django-tasks-scheduler","team_slug":"django-tasks-scheduler","team_uid":"T_kwDOCaaRBM4Ao2ER"},"sensitive_attributes":[],"private":"bnVsbA==","dependencies":["github_team.repo_team"]},{"index_key":"django-typer","schema_version":0,"attributes":{"id":"T_kwDOCaaRBM4Aqyk9","review_request_delegation":[{"algorithm":"LOAD_BALANCE","member_count":2,"notify":false}],"team_id":"django-typer","team_slug":"django-typer","team_uid":"T_kwDOCaaRBM4Aqyk9"},"sensitive_attributes":[],"private":"bnVsbA==","dependencies":["github_team.repo_team"]},{"index_key":"django-valkey","schema_version":0,"attributes":{"id":"T_kwDOCaaRBM4Ay3f3","review_request_delegation":[{"algorithm":"LOAD_BALANCE","member_count":2,"notify":false}],"team_id":"django-valkey","team_slug":"django-valkey","team_uid":"T_kwDOCaaRBM4Ay3f3"},"sensitive_attributes":[],"private":"bnVsbA==","dependencies":["github_team.repo_team"]},{"index_key":"drf-excel","schema_version":0,"attributes":{"id":"T_kwDOCaaRBM4ArQ-E","review_request_delegation":[{"algorithm":"LOAD_BALANCE","member_count":2,"notify":false}],"team_id":"drf-excel","team_slug":"drf-excel","team_uid":"T_kwDOCaaRBM4ArQ-E"},"sensitive_attributes":[],"private":"bnVsbA==","dependencies":["github_team.repo_team"]}]}],"check_results":null} diff --git a/terraform/repos/variables.tf b/terraform/repos/variables.tf index 738e829..59a5f0d 100644 --- a/terraform/repos/variables.tf +++ b/terraform/repos/variables.tf @@ -17,12 +17,6 @@ variable "github_token" { sensitive = true } -variable "designers" { - description = "A set of designers to add to the organization" - type = set(string) - default = [] -} - variable "repositories" { description = "Map of repositories to create" type = map(object({ From 893cb922f341f2f8b430ab433c4b4846044e2dbf Mon Sep 17 00:00:00 2001 From: Daniel M Date: Sun, 21 Dec 2025 09:08:35 -0500 Subject: [PATCH 06/17] wip --- terraform/repos/variables.tf | 5 ----- 1 file changed, 5 deletions(-) diff --git a/terraform/repos/variables.tf b/terraform/repos/variables.tf index 59a5f0d..68fc4dd 100644 --- a/terraform/repos/variables.tf +++ b/terraform/repos/variables.tf @@ -6,11 +6,6 @@ variable "admins" { type = set(string) } -variable "super_admins" { - description = "A set of users who have operational permissions to add to the organization" - type = set(string) -} - variable "github_token" { description = "The GitHub token used for managing the organization" type = string From da224771ccf1a16250cee422a872fa20aafd75cd Mon Sep 17 00:00:00 2001 From: Daniel M Date: Sun, 21 Dec 2025 09:13:41 -0500 Subject: [PATCH 07/17] wip --- terraform/members/variables.tf | 8 -------- terraform/production/org.tfvars | 9 --------- terraform/repos/locals.tf | 7 ++++++- terraform/repos/resources-collaborators.tf | 3 --- terraform/repos/resources-repo-admin-teams.tf | 2 +- terraform/repos/resources-repo-teams.tf | 2 +- terraform/repos/variables.tf | 13 ------------- 7 files changed, 8 insertions(+), 36 deletions(-) diff --git a/terraform/members/variables.tf b/terraform/members/variables.tf index 7257ab5..ea5b8d9 100644 --- a/terraform/members/variables.tf +++ b/terraform/members/variables.tf @@ -35,11 +35,3 @@ variable "organization_teams" { review_request_delegation = optional(bool, false) })) } - -variable "organization_secrets" { - description = "Map of secrets to add to the organization" - type = map(object({ - description = string - visibility = string - })) -} diff --git a/terraform/production/org.tfvars b/terraform/production/org.tfvars index 28bb1f6..4118bcd 100644 --- a/terraform/production/org.tfvars +++ b/terraform/production/org.tfvars @@ -148,12 +148,3 @@ organization_teams = { ] } } - -################ GitHub Organization Secrets, not used at the moment ############# - -organization_secrets = { - # "GPG_PASSPHRASE" = { - # description = "GPG Passphrase used to encrypt plan.out files" - # visibility = "all" - # } -} diff --git a/terraform/repos/locals.tf b/terraform/repos/locals.tf index 420824d..69c7410 100644 --- a/terraform/repos/locals.tf +++ b/terraform/repos/locals.tf @@ -1,10 +1,15 @@ # Local Values # https://www.terraform.io/language/values/locals -locals { +data "github_team" "admins_team" { + slug = "Admins" +} +locals { project_repositories = { for repository_key, repository in var.repositories : repository_key => repository if !repository.is_django_commons_repo } + + admins = data.github_team.admins_team.members } diff --git a/terraform/repos/resources-collaborators.tf b/terraform/repos/resources-collaborators.tf index 516890c..455ec3d 100644 --- a/terraform/repos/resources-collaborators.tf +++ b/terraform/repos/resources-collaborators.tf @@ -26,9 +26,6 @@ import { to = github_repository_collaborators.this[each.key] } -data "github_team" "admins_team" { - slug = "Admins" -} resource "github_repository_collaborators" "this" { for_each = local.repo_collaborators diff --git a/terraform/repos/resources-repo-admin-teams.tf b/terraform/repos/resources-repo-admin-teams.tf index 7b2e8d4..c7834ed 100644 --- a/terraform/repos/resources-repo-admin-teams.tf +++ b/terraform/repos/resources-repo-admin-teams.tf @@ -19,7 +19,7 @@ resource "github_team_members" "repo_admin_members" { content { username = members.value - role = contains(var.admins, members.value) ? "maintainer" : "member" + role = contains(local.admins, members.value) ? "maintainer" : "member" } } } diff --git a/terraform/repos/resources-repo-teams.tf b/terraform/repos/resources-repo-teams.tf index 0f42b04..d96148c 100644 --- a/terraform/repos/resources-repo-teams.tf +++ b/terraform/repos/resources-repo-teams.tf @@ -21,7 +21,7 @@ resource "github_team_members" "repo_team_members" { content { # members here references the dynamic name, not the looped entity. username = members.value - role = contains(var.admins, members.value) ? "maintainer" : "member" + role = contains(local.admins, members.value) ? "maintainer" : "member" } } } diff --git a/terraform/repos/variables.tf b/terraform/repos/variables.tf index 68fc4dd..cd0b0f8 100644 --- a/terraform/repos/variables.tf +++ b/terraform/repos/variables.tf @@ -1,11 +1,6 @@ # Input Variables # https://www.terraform.io/language/values/variables -variable "admins" { - description = "A set of users who are admins to add to the organization" - type = set(string) -} - variable "github_token" { description = "The GitHub token used for managing the organization" type = string @@ -65,11 +60,3 @@ variable "repositories" { }), null) })) } - -variable "organization_secrets" { - description = "Map of secrets to add to the organization" - type = map(object({ - description = string - visibility = string - })) -} From 9ca2ccc3e49d7159ec6a39f6d438c012ac089e51 Mon Sep 17 00:00:00 2001 From: Daniel M Date: Sun, 21 Dec 2025 09:17:00 -0500 Subject: [PATCH 08/17] wip --- .github/workflows/members-apply.yml | 2 +- .github/workflows/members-plan.yml | 2 +- .github/workflows/repos-apply.yml | 2 +- .github/workflows/repos-plan.yml | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/members-apply.yml b/.github/workflows/members-apply.yml index 99658bd..53fc952 100644 --- a/.github/workflows/members-apply.yml +++ b/.github/workflows/members-apply.yml @@ -1,4 +1,4 @@ -name: "Apply org changes" +name: "Apply org membership changes" on: push: diff --git a/.github/workflows/members-plan.yml b/.github/workflows/members-plan.yml index f6cba81..83e22fe 100644 --- a/.github/workflows/members-plan.yml +++ b/.github/workflows/members-plan.yml @@ -1,4 +1,4 @@ -name: "Plan org changes and list them in a PR" +name: "Plan org membership changses and list them in a PR" on: pull_request: branches: diff --git a/.github/workflows/repos-apply.yml b/.github/workflows/repos-apply.yml index d147ce0..c141dd2 100644 --- a/.github/workflows/repos-apply.yml +++ b/.github/workflows/repos-apply.yml @@ -1,4 +1,4 @@ -name: "Apply org changes" +name: "Apply org-repositories changes" on: push: diff --git a/.github/workflows/repos-plan.yml b/.github/workflows/repos-plan.yml index 984fd7e..8fe8361 100644 --- a/.github/workflows/repos-plan.yml +++ b/.github/workflows/repos-plan.yml @@ -1,4 +1,4 @@ -name: "Plan org changes and list them in a PR" +name: "Plan org-repositories changes and list them in a PR" on: pull_request: branches: From ffeaf3d8075cff69df5b0d56969e63c980dcf928 Mon Sep 17 00:00:00 2001 From: Daniel M Date: Sun, 21 Dec 2025 09:18:27 -0500 Subject: [PATCH 09/17] wip --- terraform/members/variables.tf | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/terraform/members/variables.tf b/terraform/members/variables.tf index ea5b8d9..53b5aa5 100644 --- a/terraform/members/variables.tf +++ b/terraform/members/variables.tf @@ -6,6 +6,11 @@ variable "admins" { type = set(string) } +variable "super_admins" { + description = "A set of users who have operational permissions to add to the organization" + type = set(string) +} + variable "github_token" { description = "The GitHub token used for managing the organization" type = string From 89d5f771d5873b00a0a25d76426f823f5757377a Mon Sep 17 00:00:00 2001 From: Daniel M Date: Sun, 21 Dec 2025 09:26:38 -0500 Subject: [PATCH 10/17] wip --- .github/workflows/members-apply.yml | 3 +-- .github/workflows/members-plan.yml | 2 +- .github/workflows/repos-apply.yml | 3 +-- .github/workflows/repos-plan.yml | 2 +- 4 files changed, 4 insertions(+), 6 deletions(-) diff --git a/.github/workflows/members-apply.yml b/.github/workflows/members-apply.yml index 53fc952..7833364 100644 --- a/.github/workflows/members-apply.yml +++ b/.github/workflows/members-apply.yml @@ -44,8 +44,7 @@ jobs: - name: Commit changes if: ${{ always() }} - # v0.10.0 - uses: devops-infra/action-commit-push@8a2d9d73c3f506468129be2e4409e60dbed70357 + uses: devops-infra/action-commit-push@8a2d9d73c3f506468129be2e4409e60dbed70357 # v1.0.3 with: github_token: ${{ secrets.TERRAFORM_MANAGEMENT_GITHUB_TOKEN }} commit_prefix: "[AUTO]" diff --git a/.github/workflows/members-plan.yml b/.github/workflows/members-plan.yml index 83e22fe..8880eab 100644 --- a/.github/workflows/members-plan.yml +++ b/.github/workflows/members-plan.yml @@ -10,7 +10,7 @@ on: # Do not trigger the plan action when it's been changed since this action has write permissions concurrency: - group: terraform-actions + group: terraform-actions-members jobs: format-terraform-code: diff --git a/.github/workflows/repos-apply.yml b/.github/workflows/repos-apply.yml index c141dd2..93c5394 100644 --- a/.github/workflows/repos-apply.yml +++ b/.github/workflows/repos-apply.yml @@ -42,8 +42,7 @@ jobs: - name: Commit changes if: ${{ always() }} - # v0.10.0 - uses: devops-infra/action-commit-push@8a2d9d73c3f506468129be2e4409e60dbed70357 + uses: devops-infra/action-commit-push@8a2d9d73c3f506468129be2e4409e60dbed70357 # v1.0.3 with: github_token: ${{ secrets.TERRAFORM_MANAGEMENT_GITHUB_TOKEN }} commit_prefix: "[AUTO]" diff --git a/.github/workflows/repos-plan.yml b/.github/workflows/repos-plan.yml index 8fe8361..283f271 100644 --- a/.github/workflows/repos-plan.yml +++ b/.github/workflows/repos-plan.yml @@ -10,7 +10,7 @@ on: # Do not trigger the plan action when it's been changed since this action has write permissions concurrency: - group: terraform-actions + group: terraform-actions-repos jobs: format-terraform-code: From 7f2597e2ebc014cfeebad83469dd7c222a2a1bc2 Mon Sep 17 00:00:00 2001 From: Daniel M Date: Sun, 21 Dec 2025 09:27:00 -0500 Subject: [PATCH 11/17] wip --- .github/workflows/members-apply.yml | 2 +- .github/workflows/repos-apply.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/members-apply.yml b/.github/workflows/members-apply.yml index 7833364..9cd9e01 100644 --- a/.github/workflows/members-apply.yml +++ b/.github/workflows/members-apply.yml @@ -11,7 +11,7 @@ on: - '.github/workflows/members-plan.yml' concurrency: - group: terraform-actions + group: terraform-actions-members jobs: apply-changes: diff --git a/.github/workflows/repos-apply.yml b/.github/workflows/repos-apply.yml index 93c5394..cc18a7a 100644 --- a/.github/workflows/repos-apply.yml +++ b/.github/workflows/repos-apply.yml @@ -11,7 +11,7 @@ on: - '.github/workflows/repos-plan.yml' concurrency: - group: terraform-actions + group: terraform-actions-repos jobs: apply-changes: From 70015e62d32aacbae7920da0ac52496385c7d22d Mon Sep 17 00:00:00 2001 From: Daniel M Date: Sun, 21 Dec 2025 09:28:33 -0500 Subject: [PATCH 12/17] wip --- .github/workflows/members-apply.yml | 4 ++-- .github/workflows/members-plan.yml | 6 +++--- .github/workflows/repos-apply.yml | 4 ++-- .github/workflows/repos-plan.yml | 4 ++-- 4 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/members-apply.yml b/.github/workflows/members-apply.yml index 9cd9e01..002c1a0 100644 --- a/.github/workflows/members-apply.yml +++ b/.github/workflows/members-apply.yml @@ -14,8 +14,8 @@ concurrency: group: terraform-actions-members jobs: - apply-changes: - name: "Org changes apply" + org-apply-changes: + name: "Apply org membership changes" runs-on: ubuntu-latest permissions: diff --git a/.github/workflows/members-plan.yml b/.github/workflows/members-plan.yml index 8880eab..46f9232 100644 --- a/.github/workflows/members-plan.yml +++ b/.github/workflows/members-plan.yml @@ -1,4 +1,4 @@ -name: "Plan org membership changses and list them in a PR" +name: "Plan org membership changes and list them in a PR" on: pull_request: branches: @@ -31,8 +31,8 @@ jobs: with: path: "terraform/members" - plan-changes: - name: "Org changes plan" + org-plan-changes: + name: "Plan org membership changes and list them in a PR" runs-on: ubuntu-latest needs: [ "format-terraform-code" ] permissions: diff --git a/.github/workflows/repos-apply.yml b/.github/workflows/repos-apply.yml index cc18a7a..0c3a71b 100644 --- a/.github/workflows/repos-apply.yml +++ b/.github/workflows/repos-apply.yml @@ -14,8 +14,8 @@ concurrency: group: terraform-actions-repos jobs: - apply-changes: - name: "Org changes apply" + repos-apply-changes: + name: "Apply org-repositories changes" runs-on: ubuntu-latest permissions: diff --git a/.github/workflows/repos-plan.yml b/.github/workflows/repos-plan.yml index 283f271..6a8362c 100644 --- a/.github/workflows/repos-plan.yml +++ b/.github/workflows/repos-plan.yml @@ -32,8 +32,8 @@ jobs: with: path: "terraform/repos" - plan-changes: - name: "Org changes plan" + repos-plan-changes: + name: "Plan org-repositories changes and list them in a PR" runs-on: ubuntu-latest needs: [ "format-terraform-code" ] permissions: From cd408d1820ec47dc1e678b234151a860c0c719a5 Mon Sep 17 00:00:00 2001 From: Daniel M Date: Sun, 21 Dec 2025 09:35:24 -0500 Subject: [PATCH 13/17] wip --- terraform/members/tfstate.json | 2070 +------------------------------- 1 file changed, 1 insertion(+), 2069 deletions(-) diff --git a/terraform/members/tfstate.json b/terraform/members/tfstate.json index 68aae16..a0a714f 100644 --- a/terraform/members/tfstate.json +++ b/terraform/members/tfstate.json @@ -1,2069 +1 @@ -{ - "version": 4, - "terraform_version": "1.11.1", - "serial": 967, - "lineage": "425397de-8394-a003-8a6c-bce854d9cc53", - "outputs": { - "invalid_users": { - "value": [], - "type": [ - "list", - "string" - ] - } - }, - "resources": [ - { - "mode": "data", - "type": "github_users", - "name": "users", - "provider": "provider[\"registry.terraform.io/integrations/github\"]", - "instances": [ - { - "schema_version": 0, - "attributes": { - "emails": [ - "me@youngkwang.dev", - "", - "", - "", - "jonathan@stoppani.name", - "wogur981208@gmail.com", - "", - "", - "mogost@aartemyev.ru", - "fernando_cordeiro@live.com", - "", - "", - "", - "", - "", - "", - "", - "", - "zakuijules@live.fr", - "", - "", - "akshay12345vin@gmail.com", - "", - "", - "hello@asherfoa.com", - "", - "jon.c.culver@gmail.com", - "bckohan@gmail.com", - "", - "", - "carlton.gibson@noumenal.es", - "", - "", - "", - "", - "", - "", - "derek.payton@gmail.com", - "felavid@gmail.com", - "elineda@elineda.ovh", - "federicobond@gmail.com", - "fsbraun@gmx.de", - "terzo.giannis@gmail.com", - "scalamoosh@gmail.com", - "", - "", - "", - "wogur981208@gmail.com", - "", - "", - "", - "", - "jnovinger@gmail.com", - "info@johnatanmoran.com", - "", - "josh@joshthomas.dev", - "", - "", - "tom@carrick.eu", - "uriel@corfa.fr", - "me@kytta.dev", - "leogregianin@gmail.com", - "manelclos@gmail.com", - "mk@feinheit.ch", - "", - "mkalioby@mkalioby.com", - "mnazrul.c@gmail.com", - "mzemlickis@gmail.com", - "info@akmiller.co.uk", - "", - "info@okotdaniel.com", - "oliver@andrich.me", - "", - "", - "paolo@melchiorre.org", - "", - "", - "pahwa.priya19@gmail.com", - "mathieu.rampant@gmail.com", - "", - "aman2001mi@gmail.com", - "", - "", - "", - "thibaudcolas@gmail.com", - "schillingt@better-simple.com", - "", - "", - "", - "vinlawz07@gmail.com", - "", - "" - ], - "id": "e228fd6ad0fdac3cb4195558a7556b67", - "logins": [ - "2ykwang", - "Chiemezuo", - "DhavalGojiya", - "FlipperPA", - "GaretJax", - "JaeHyuckSa", - "JohananOppongAmoateng", - "Josephchinedu", - "Mogost", - "MrCordeiro", - "Natim", - "RealOrangeOne", - "Shrikantgiri25", - "SinkuKumar", - "Stormheg", - "TimothyMalahy", - "VeldaKiara", - "Violette-Allotey", - "Zakui", - "adRn-s", - "adamghill", - "akshayvinchurkar", - "amirreza8002", - "andoriyaprashant", - "asherf", - "ayimdomnic", - "bahoo", - "bckohan", - "blingblin-g", - "browniebroke", - "carltongibson", - "cgl", - "clintonb", - "cunla", - "ddabble", - "deronnax", - "devatbosch", - "dmpayton", - "dr-rompecabezas", - "elineda", - "federicobond", - "fsbraun", - "g-nie", - "gav-fyi", - "giovannicimolin", - "input", - "jacklinke", - "JaeHyuckSa", - "jburns6789", - "jcjudkins", - "jezdez", - "jmgutu", - "jnovinger", - "johnatanmoran", - "johnfraney", - "joshuadavidthomas", - "justbackend", - "kevin-brown", - "knyghty", - "korfuri", - "kytta", - "leogregianin", - "manelclos", - "matthiask", - "mihrab34", - "mkalioby", - "mnislam01", - "mzemlickis", - "nanorepublica", - "niltonpimentel02", - "okotdaniel", - "oliverandrich", - "ontowhee", - "p-r-a-v-i-n", - "pauloxnet", - "peterthomassen", - "pfouque", - "priyapahwa", - "rptmat57", - "ryancheley", - "salty-ivy", - "sergei-maertens", - "sobolevn", - "testSchilling", - "thibaudcolas", - "tim-schilling", - "ulgens", - "unmonoqueteclea", - "vacarme", - "vinlawz", - "viscofuse", - "williln" - ], - "node_ids": [ - "MDQ6VXNlcjY4MzI3OTA=", - "MDQ6VXNlcjI5NDcwNTE2", - "MDQ6VXNlcjUzODU2NTU1", - "MDQ6VXNlcjY4MTY0", - "MDQ6VXNlcjg2MjM2", - "U_kgDOBj-X0w", - "MDQ6VXNlcjg4NDExNjE0", - "MDQ6VXNlcjQ3ODUyOTI1", - "MDQ6VXNlcjcyMTk2Mw==", - "MDQ6VXNlcjIwNTk4NTcx", - "MDQ6VXNlcjIyOTQ1Mw==", - "MDQ6VXNlcjY1Mjc0ODk=", - "MDQ6VXNlcjkxMTIyMzE5", - "MDQ6VXNlcjczNzg1Nzk1", - "MDQ6VXNlcjEzODU2NTE1", - "MDQ6VXNlcjUwMjE3Nzgz", - "MDQ6VXNlcjMyNTUyMjk2", - "MDQ6VXNlcjY4ODY2MjQ2", - "MDQ6VXNlcjE3NTQzODE4", - "MDQ6VXNlcjYyOTcxOTk1", - "MDQ6VXNlcjMxNzA0NQ==", - "MDQ6VXNlcjEwNTEwODg5", - "U_kgDOByTH3Q", - "U_kgDOB0B3aQ", - "MDQ6VXNlcjEyNjgwODg=", - "MDQ6VXNlcjYyMTU5MjU=", - "MDQ6VXNlcjQzMDQxNQ==", - "MDQ6VXNlcjI2MzIwNzQ5", - "MDQ6VXNlcjYwMDkwMzkx", - "MDQ6VXNlcjg2MTA0NA==", - "MDQ6VXNlcjY0Njg2", - "MDQ6VXNlcjE2MTUxNTA=", - "MDQ6VXNlcjkxMDUxMA==", - "MDQ6VXNlcjM0MTk3MjE=", - "MDQ6VXNlcjYwNTg3NDU=", - "MDQ6VXNlcjQzOTI3OQ==", - "U_kgDOCkDCgw", - "MDQ6VXNlcjE0OTkxOA==", - "MDQ6VXNlcjc2NzA4NDM=", - "MDQ6VXNlcjI0OTk2MDE2", - "MDQ6VXNlcjEzODQyNg==", - "MDQ6VXNlcjE2OTA0NDc3", - "MDQ6VXNlcjkwOTA0NDM=", - "MDQ6VXNlcjU4NTI5MQ==", - "MDQ6VXNlcjI3ODkzMzg1", - "MDQ6VXNlcjQ2Mjk4Nw==", - "MDQ6VXNlcjczNTU0Njcy", - "U_kgDOBj-X0w", - "U_kgDOBwTNvg", - "MDQ6VXNlcjM0NDE3NTcz", - "MDQ6VXNlcjE2MTA=", - "MDQ6VXNlcjE0NDExNjE=", - "MDQ6VXNlcjEwMzQ5OQ==", - "MDQ6VXNlcjUzNDIxMTM=", - "MDQ6VXNlcjE3Mjg1Mjg=", - "MDQ6VXNlcjE5ODk2MjY3", - "U_kgDOBYTIXg", - "MDQ6VXNlcjE5OTE4NTA=", - "MDQ6VXNlcjM4NzEzNTQ=", - "MDQ6VXNlcjExMjQyNjM=", - "MDQ6VXNlcjY1NjYyNDg=", - "MDQ6VXNlcjE2ODQwNTM=", - "MDQ6VXNlcjQ2MzgzMg==", - "MDQ6VXNlcjI2Mjc=", - "MDQ6VXNlcjM1NTYyMTMx", - "MDQ6VXNlcjEwNDE0MDIw", - "MDQ6VXNlcjI0OTI5NDY2", - "MDQ6VXNlcjQ1NTY5NDQ=", - "MDQ6VXNlcjE5OTc5NDA=", - "MDQ6VXNlcjYzNjA1NDg1", - "MDQ6VXNlcjQxNzQ0MDEy", - "MDQ6VXNlcjc1OA==", - "MDQ6VXNlcjgyNjA3NzIz", - "MDQ6VXNlcjkxMTI1NTQw", - "MDQ6VXNlcjUyMTA5Nw==", - "MDQ6VXNlcjQyNDI2ODM=", - "MDQ6VXNlcjgzMDAwMDE=", - "MDQ6VXNlcjc3MDc1NDQ5", - "MDQ6VXNlcjE0MzI5Mzg4", - "MDQ6VXNlcjk4NTc3Nzk=", - "MDQ6VXNlcjc0NTUzOTUx", - "MDQ6VXNlcjU1MTg1NTA=", - "MDQ6VXNlcjQ2NjAyNzU=", - "U_kgDOCdBRFg", - "MDQ6VXNlcjg3NzU4NQ==", - "MDQ6VXNlcjEyODEyMTU=", - "MDQ6VXNlcjE2NjYzNw==", - "MDQ6VXNlcjQ3MDU3NTc=", - "MDQ6VXNlcjUxMjM3MTE3", - "U_kgDOCxTEHw", - "MDQ6VXNlcjM1MTUwMDAx", - "MDQ6VXNlcjIyODYzMDQ=" - ], - "unknown_logins": [], - "usernames": [ - "2ykwang", - "Chiemezuo", - "DhavalGojiya", - "FlipperPA", - "GaretJax", - "JaeHyuckSa", - "JohananOppongAmoateng", - "Josephchinedu", - "Mogost", - "MrCordeiro", - "Natim", - "RealOrangeOne", - "Shrikantgiri25", - "SinkuKumar", - "Stormheg", - "TimothyMalahy", - "VeldaKiara", - "Violette-Allotey", - "Zakui", - "adRn-s", - "adamghill", - "akshayvinchurkar", - "amirreza8002", - "andoriyaprashant", - "asherf", - "ayimdomnic", - "bahoo", - "bckohan", - "blingblin-g", - "browniebroke", - "carltongibson", - "cgl", - "clintonb", - "cunla", - "ddabble", - "deronnax", - "devatbosch", - "dmpayton", - "dr-rompecabezas", - "elineda", - "federicobond", - "fsbraun", - "g-nie", - "gav-fyi", - "giovannicimolin", - "input", - "jacklinke", - "jaehyuckSa", - "jburns6789", - "jcjudkins", - "jezdez", - "jmgutu", - "jnovinger", - "johnatanmoran", - "johnfraney", - "joshuadavidthomas", - "justbackend", - "kevin-brown", - "knyghty", - "korfuri", - "kytta", - "leogregianin", - "manelclos", - "matthiask", - "mihrab34", - "mkalioby", - "mnislam01", - "mzemlickis", - "nanorepublica", - "niltonpimentel02", - "okotdaniel", - "oliverandrich", - "ontowhee", - "p-r-a-v-i-n", - "pauloxnet", - "peterthomassen", - "pfouque", - "priyapahwa", - "rptmat57", - "ryancheley", - "salty-ivy", - "sergei-maertens", - "sobolevn", - "testSchilling", - "thibaudcolas", - "tim-schilling", - "ulgens", - "unmonoqueteclea", - "vacarme", - "vinlawz", - "viscofuse", - "williln" - ] - }, - "sensitive_attributes": [] - } - ] - }, - { - "mode": "managed", - "type": "github_team_members", - "name": "org_designers_team_members", - "provider": "provider[\"registry.terraform.io/integrations/github\"]", - "instances": [ - { - "schema_version": 0, - "attributes": { - "id": "14084892", - "members": [ - { - "role": "member", - "username": "Shrikantgiri25" - }, - { - "role": "member", - "username": "Violette-Allotey" - }, - { - "role": "member", - "username": "Zakui" - }, - { - "role": "member", - "username": "akshayvinchurkar" - }, - { - "role": "member", - "username": "federicobond" - }, - { - "role": "member", - "username": "jmgutu" - }, - { - "role": "member", - "username": "johnatanmoran" - }, - { - "role": "member", - "username": "mzemlickis" - }, - { - "role": "member", - "username": "okotdaniel" - }, - { - "role": "member", - "username": "p-r-a-v-i-n" - }, - { - "role": "member", - "username": "vinlawz" - }, - { - "role": "member", - "username": "viscofuse" - } - ], - "team_id": "14084892" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==", - "dependencies": [ - "github_team.org_designers_team" - ] - } - ] - }, - { - "mode": "managed", - "type": "github_team_members", - "name": "org_team_members", - "provider": "provider[\"registry.terraform.io/integrations/github\"]", - "instances": [ - { - "index_key": "Admins", - "schema_version": 0, - "attributes": { - "id": "9763562", - "members": [ - { - "role": "maintainer", - "username": "Stormheg" - }, - { - "role": "maintainer", - "username": "cunla" - }, - { - "role": "maintainer", - "username": "ryancheley" - }, - { - "role": "maintainer", - "username": "tim-schilling" - }, - { - "role": "maintainer", - "username": "williln" - } - ], - "team_id": "9763562" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "eyJzY2hlbWFfdmVyc2lvbiI6IjAifQ==", - "dependencies": [ - "github_team.org_teams" - ] - } - ] - }, - { - "mode": "managed", - "type": "github_team", - "name": "org_designers_team", - "provider": "provider[\"registry.terraform.io/integrations/github\"]", - "instances": [ - { - "schema_version": 0, - "attributes": { - "create_default_maintainer": false, - "description": "Django Commons designers", - "etag": "W/\"6190db9e35543983d98c90efd5100623c9aa039b6a5c86cf4f39d884ea57b542\"", - "id": "14084892", - "ldap_dn": "", - "members_count": 12, - "name": "Designers", - "node_id": "T_kwDOCaaRBM4A1usc", - "parent_team_id": "", - "parent_team_read_id": "", - "parent_team_read_slug": "", - "privacy": "closed", - "slug": "designers" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "bnVsbA==" - } - ] - }, - { - "mode": "managed", - "type": "github_team", - "name": "org_teams", - "provider": "provider[\"registry.terraform.io/integrations/github\"]", - "instances": [ - { - "index_key": "Admins", - "schema_version": 0, - "attributes": { - "create_default_maintainer": false, - "description": "django-commons administrators", - "etag": "W/\"5f69695e20abebe020e6c81b6e8964fa94fa8813fa3ab99a4bb84e97661fb6cb\"", - "id": "9763562", - "ldap_dn": "", - "members_count": 5, - "name": "Admins", - "node_id": "T_kwDOCaaRBM4AlPrq", - "parent_team_id": "", - "parent_team_read_id": "", - "parent_team_read_slug": "", - "privacy": "closed", - "slug": "admins" - }, - "sensitive_attributes": [], - "identity_schema_version": 0, - "private": "eyJzY2hlbWFfdmVyc2lvbiI6IjAifQ==" - } - ] - }, - { - "mode": "managed", - "type": "github_membership", - "name": "this", - "provider": "provider[\"registry.terraform.io/integrations/github\"]", - "instances": [ - { - "index_key": "2ykwang", - "schema_version": 0, - "attributes": { - "downgrade_on_destroy": false, - "etag": "W/\"2ab69bb91ac4b18c946d48dd2579b7091cd483f80be6917ea941288e16ecbc44\"", - "id": "django-commons:2ykwang", - "role": "member", - "username": "2ykwang" - }, - "sensitive_attributes": [], - "private": "bnVsbA==", - "dependencies": [ - "data.github_users.users" - ] - }, - { - "index_key": "Chiemezuo", - "schema_version": 0, - "attributes": { - "downgrade_on_destroy": false, - "etag": "W/\"86493022e463577599b0c4218dc23c525839a2e5e82514d967d69c1de4a787bb\"", - "id": "django-commons:Chiemezuo", - "role": "member", - "username": "Chiemezuo" - }, - "sensitive_attributes": [], - "private": "bnVsbA==", - "dependencies": [ - "data.github_users.users" - ] - }, - { - "index_key": "DhavalGojiya", - "schema_version": 0, - "attributes": { - "downgrade_on_destroy": false, - "etag": "W/\"ac59e4c419b08fef803e006e4217fc3fe6f61f20b06686c4ae8b9e95be5ea540\"", - "id": "django-commons:DhavalGojiya", - "role": "member", - "username": "DhavalGojiya" - }, - "sensitive_attributes": [], - "private": "bnVsbA==", - "dependencies": [ - "data.github_users.users" - ] - }, - { - "index_key": "FlipperPA", - "schema_version": 0, - "attributes": { - "downgrade_on_destroy": false, - "etag": "W/\"7b590516803d9ba1d3628f0b22275dfa2a6b72b6b6ff7cd76c21c5b817e8af26\"", - "id": "django-commons:FlipperPA", - "role": "member", - "username": "FlipperPA" - }, - "sensitive_attributes": [], - "private": "bnVsbA==", - "dependencies": [ - "data.github_users.users" - ] - }, - { - "index_key": "GaretJax", - "schema_version": 0, - "attributes": { - "downgrade_on_destroy": false, - "etag": "W/\"426aa4f95c40f19c856f37a3c1e6f377e6a0f22be16a35fae129e820486dee44\"", - "id": "django-commons:GaretJax", - "role": "member", - "username": "GaretJax" - }, - "sensitive_attributes": [], - "private": "bnVsbA==", - "dependencies": [ - "data.github_users.users" - ] - }, - { - "index_key": "JaeHyuckSa", - "schema_version": 0, - "attributes": { - "downgrade_on_destroy": false, - "etag": "W/\"716c3995d2135eb0eaa4d83adc7d3debe7b6af60937d8d64e639bda1f6de03a7\"", - "id": "django-commons:JaeHyuckSa", - "role": "member", - "username": "JaeHyuckSa" - }, - "sensitive_attributes": [], - "private": "bnVsbA==", - "dependencies": [ - "data.github_users.users" - ] - }, - { - "index_key": "JohananOppongAmoateng", - "schema_version": 0, - "attributes": { - "downgrade_on_destroy": false, - "etag": "W/\"3a07921bf441cea09b0a78f9ab78304ffb76db1e20433294ae55661b0a442cce\"", - "id": "django-commons:JohananOppongAmoateng", - "role": "member", - "username": "JohananOppongAmoateng" - }, - "sensitive_attributes": [], - "private": "bnVsbA==", - "dependencies": [ - "data.github_users.users" - ] - }, - { - "index_key": "Josephchinedu", - "schema_version": 0, - "attributes": { - "downgrade_on_destroy": false, - "etag": "W/\"ed0d2e1779e4630c5fada391648e2f53c16b772d97cb42a425568ed3014f14ee\"", - "id": "django-commons:Josephchinedu", - "role": "member", - "username": "Josephchinedu" - }, - "sensitive_attributes": [], - "private": "bnVsbA==", - "dependencies": [ - "data.github_users.users" - ] - }, - { - "index_key": "Mogost", - "schema_version": 0, - "attributes": { - "downgrade_on_destroy": false, - "etag": "W/\"548d6d97173a3ce733c320f447381a8bd6d2fccd6b775584b6176242f52a53d1\"", - "id": "django-commons:Mogost", - "role": "member", - "username": "Mogost" - }, - "sensitive_attributes": [], - "private": "bnVsbA==", - "dependencies": [ - "data.github_users.users" - ] - }, - { - "index_key": "MrCordeiro", - "schema_version": 0, - "attributes": { - "downgrade_on_destroy": false, - "etag": "W/\"edd0f9b8dab234cbe109f29462f3ece7f0b65f63df7fc2823c9d28fffb2a5ef5\"", - "id": "django-commons:MrCordeiro", - "role": "member", - "username": "MrCordeiro" - }, - "sensitive_attributes": [], - "private": "bnVsbA==", - "dependencies": [ - "data.github_users.users" - ] - }, - { - "index_key": "Natim", - "schema_version": 0, - "attributes": { - "downgrade_on_destroy": null, - "etag": "W/\"98a134b427d7d7b8f67c9abcfcd6b33416fc931f263a155a02346dd1317adea1\"", - "id": "django-commons:Natim", - "role": "member", - "username": "Natim" - }, - "sensitive_attributes": [], - "private": "eyJzY2hlbWFfdmVyc2lvbiI6IjAifQ==", - "dependencies": [ - "data.github_users.users" - ] - }, - { - "index_key": "RealOrangeOne", - "schema_version": 0, - "attributes": { - "downgrade_on_destroy": false, - "etag": "W/\"ab2eccdd691fd60c778f497424dd5447d2acfed1ffffd0b74afaed0f22777432\"", - "id": "django-commons:RealOrangeOne", - "role": "member", - "username": "RealOrangeOne" - }, - "sensitive_attributes": [], - "private": "bnVsbA==", - "dependencies": [ - "data.github_users.users" - ] - }, - { - "index_key": "Shrikantgiri25", - "schema_version": 0, - "attributes": { - "downgrade_on_destroy": false, - "etag": "W/\"a3333c88d84be72f756f2f53ebd187fc84e51aa2ef0ffaabd4bfd5f5b5eeda28\"", - "id": "django-commons:Shrikantgiri25", - "role": "member", - "username": "Shrikantgiri25" - }, - "sensitive_attributes": [], - "private": "bnVsbA==", - "dependencies": [ - "data.github_users.users" - ] - }, - { - "index_key": "SinkuKumar", - "schema_version": 0, - "attributes": { - "downgrade_on_destroy": false, - "etag": "W/\"2305d621c10729a6ff4a4558cd2fabe957a57dcadd720001577d8697da0cafe2\"", - "id": "django-commons:SinkuKumar", - "role": "member", - "username": "SinkuKumar" - }, - "sensitive_attributes": [], - "private": "bnVsbA==", - "dependencies": [ - "data.github_users.users" - ] - }, - { - "index_key": "Stormheg", - "schema_version": 0, - "attributes": { - "downgrade_on_destroy": null, - "etag": "W/\"6b9c524e3964766b01bd2b6c3d28df6103a221f1d0cc1bf5fe7be4cef7c3180b\"", - "id": "django-commons:Stormheg", - "role": "admin", - "username": "Stormheg" - }, - "sensitive_attributes": [], - "private": "eyJzY2hlbWFfdmVyc2lvbiI6IjAifQ==", - "dependencies": [ - "data.github_users.users" - ] - }, - { - "index_key": "TimothyMalahy", - "schema_version": 0, - "attributes": { - "downgrade_on_destroy": false, - "etag": "W/\"43e96a9dbb4ebcad38940d648e200236f958f3208488f74b640534d11417fa75\"", - "id": "django-commons:TimothyMalahy", - "role": "member", - "username": "TimothyMalahy" - }, - "sensitive_attributes": [], - "private": "bnVsbA==", - "dependencies": [ - "data.github_users.users" - ] - }, - { - "index_key": "VeldaKiara", - "schema_version": 0, - "attributes": { - "downgrade_on_destroy": false, - "etag": "W/\"048ba4379d78554dbffe9698ab7d310410d1b450fb8a0243fc4188bf19e5d6af\"", - "id": "django-commons:VeldaKiara", - "role": "member", - "username": "VeldaKiara" - }, - "sensitive_attributes": [], - "private": "bnVsbA==", - "dependencies": [ - "data.github_users.users" - ] - }, - { - "index_key": "Violette-Allotey", - "schema_version": 0, - "attributes": { - "downgrade_on_destroy": false, - "etag": "W/\"b0038a5b93546b977263873bb9e2db5fe133f7c1ab778ccd949a58b90faf381b\"", - "id": "django-commons:Violette-Allotey", - "role": "member", - "username": "Violette-Allotey" - }, - "sensitive_attributes": [], - "private": "bnVsbA==", - "dependencies": [ - "data.github_users.users" - ] - }, - { - "index_key": "Zakui", - "schema_version": 0, - "attributes": { - "downgrade_on_destroy": false, - "etag": "W/\"f693bf0f4fa49827c01f276f6f0e1f60ee9b3b24986df0cfa484480c6c3542a5\"", - "id": "django-commons:Zakui", - "role": "member", - "username": "Zakui" - }, - "sensitive_attributes": [], - "private": "bnVsbA==", - "dependencies": [ - "data.github_users.users" - ] - }, - { - "index_key": "adRn-s", - "schema_version": 0, - "attributes": { - "downgrade_on_destroy": false, - "etag": "W/\"4ad889c365cd59b3c76dbdf7b626298540e621599ea7399e79cd838ffa8f8a18\"", - "id": "django-commons:adRn-s", - "role": "member", - "username": "adRn-s" - }, - "sensitive_attributes": [], - "private": "bnVsbA==", - "dependencies": [ - "data.github_users.users" - ] - }, - { - "index_key": "adamghill", - "schema_version": 0, - "attributes": { - "downgrade_on_destroy": false, - "etag": "W/\"f97a091dce002178f3bd38e9a5191fbef8ca6ed55365712794ccfd130a424913\"", - "id": "django-commons:adamghill", - "role": "member", - "username": "adamghill" - }, - "sensitive_attributes": [], - "private": "bnVsbA==", - "dependencies": [ - "data.github_users.users" - ] - }, - { - "index_key": "akshayvinchurkar", - "schema_version": 0, - "attributes": { - "downgrade_on_destroy": false, - "etag": "W/\"1c1b62e18f9f91dfcbbcf08ee56929a08c0e6c4bdef3a56bdfaa53e36c397389\"", - "id": "django-commons:akshayvinchurkar", - "role": "member", - "username": "akshayvinchurkar" - }, - "sensitive_attributes": [], - "private": "bnVsbA==", - "dependencies": [ - "data.github_users.users" - ] - }, - { - "index_key": "amirreza8002", - "schema_version": 0, - "attributes": { - "downgrade_on_destroy": false, - "etag": "W/\"55bff3bb50dc17188a3a4d3f6a3e14856db5daf924467c30ad332695d0a12744\"", - "id": "django-commons:amirreza8002", - "role": "member", - "username": "amirreza8002" - }, - "sensitive_attributes": [], - "private": "bnVsbA==", - "dependencies": [ - "data.github_users.users" - ] - }, - { - "index_key": "andoriyaprashant", - "schema_version": 0, - "attributes": { - "downgrade_on_destroy": false, - "etag": "W/\"0695c6f857f9b075d3ca7e8f19ed69b7d3e3de692d721c2ab994618aae4e622e\"", - "id": "django-commons:andoriyaprashant", - "role": "member", - "username": "andoriyaprashant" - }, - "sensitive_attributes": [], - "private": "bnVsbA==", - "dependencies": [ - "data.github_users.users" - ] - }, - { - "index_key": "asherf", - "schema_version": 0, - "attributes": { - "downgrade_on_destroy": false, - "etag": "W/\"6e015ecc9908c65f3678bcfde23b6f6d51484b9d80f3b459e17056af31114f11\"", - "id": "django-commons:asherf", - "role": "member", - "username": "asherf" - }, - "sensitive_attributes": [], - "private": "bnVsbA==", - "dependencies": [ - "data.github_users.users" - ] - }, - { - "index_key": "ayimdomnic", - "schema_version": 0, - "attributes": { - "downgrade_on_destroy": false, - "etag": "W/\"246a98fe4ab7fb481f81c65bdca244800cc35950648dc7697c80ac1bbad0b12c\"", - "id": "django-commons:ayimdomnic", - "role": "member", - "username": "ayimdomnic" - }, - "sensitive_attributes": [], - "private": "bnVsbA==", - "dependencies": [ - "data.github_users.users" - ] - }, - { - "index_key": "bahoo", - "schema_version": 0, - "attributes": { - "downgrade_on_destroy": false, - "etag": "W/\"8e9aa915843efe47fe6bfd858faaa0e2e125d60c76785a61cb5c30ff077c3043\"", - "id": "django-commons:bahoo", - "role": "member", - "username": "bahoo" - }, - "sensitive_attributes": [], - "private": "bnVsbA==", - "dependencies": [ - "data.github_users.users" - ] - }, - { - "index_key": "bckohan", - "schema_version": 0, - "attributes": { - "downgrade_on_destroy": false, - "etag": "W/\"56a7c423e887b0264729d64da713f5ee984234251d9d8e394af05ba521f5fabc\"", - "id": "django-commons:bckohan", - "role": "member", - "username": "bckohan" - }, - "sensitive_attributes": [], - "private": "bnVsbA==", - "dependencies": [ - "data.github_users.users" - ] - }, - { - "index_key": "blingblin-g", - "schema_version": 0, - "attributes": { - "downgrade_on_destroy": false, - "etag": "W/\"7896c43e39776144d45c53864520b23b2f2b99a5112593e22ea66c39e4c8082a\"", - "id": "django-commons:blingblin-g", - "role": "member", - "username": "blingblin-g" - }, - "sensitive_attributes": [], - "private": "bnVsbA==", - "dependencies": [ - "data.github_users.users" - ] - }, - { - "index_key": "browniebroke", - "schema_version": 0, - "attributes": { - "downgrade_on_destroy": false, - "etag": "W/\"0fa93f60780a213eac11fbc66a266aa5d8e254313a8e2d6cd2b2e63ccfe562cc\"", - "id": "django-commons:browniebroke", - "role": "member", - "username": "browniebroke" - }, - "sensitive_attributes": [], - "private": "bnVsbA==", - "dependencies": [ - "data.github_users.users" - ] - }, - { - "index_key": "carltongibson", - "schema_version": 0, - "attributes": { - "downgrade_on_destroy": false, - "etag": "W/\"ca6d7695590cb0a76b96eb4ce0b18dac1e8ed54b25fe017672d2d2aba68eca1f\"", - "id": "django-commons:carltongibson", - "role": "member", - "username": "carltongibson" - }, - "sensitive_attributes": [], - "private": "bnVsbA==", - "dependencies": [ - "data.github_users.users" - ] - }, - { - "index_key": "cgl", - "schema_version": 0, - "attributes": { - "downgrade_on_destroy": false, - "etag": "W/\"fa5d14c3626f04db92766d7fe30b1929b9f294d904dfe88c24fa3bd9756c875e\"", - "id": "django-commons:cgl", - "role": "member", - "username": "cgl" - }, - "sensitive_attributes": [], - "private": "bnVsbA==", - "dependencies": [ - "data.github_users.users" - ] - }, - { - "index_key": "clintonb", - "schema_version": 0, - "attributes": { - "downgrade_on_destroy": false, - "etag": "W/\"9aaf2bf914d4954c9ed392cc10a1670d0624111e1ac9a3b3a3e32f267beb3c8c\"", - "id": "django-commons:clintonb", - "role": "member", - "username": "clintonb" - }, - "sensitive_attributes": [], - "private": "bnVsbA==", - "dependencies": [ - "data.github_users.users" - ] - }, - { - "index_key": "cunla", - "schema_version": 0, - "attributes": { - "downgrade_on_destroy": null, - "etag": "W/\"fe8a9355720182460e3b8066fe6577918851d592930c5201a97add1a1fcc7f67\"", - "id": "django-commons:cunla", - "role": "admin", - "username": "cunla" - }, - "sensitive_attributes": [], - "private": "eyJzY2hlbWFfdmVyc2lvbiI6IjAifQ==", - "dependencies": [ - "data.github_users.users" - ] - }, - { - "index_key": "ddabble", - "schema_version": 0, - "attributes": { - "downgrade_on_destroy": false, - "etag": "W/\"fc42f7a4b7782f316304a82a057c1bb88bcbc26522fa0a4c1a56e1af73aa184e\"", - "id": "django-commons:ddabble", - "role": "member", - "username": "ddabble" - }, - "sensitive_attributes": [], - "private": "bnVsbA==", - "dependencies": [ - "data.github_users.users" - ] - }, - { - "index_key": "deronnax", - "schema_version": 0, - "attributes": { - "downgrade_on_destroy": false, - "etag": "W/\"1497ae7aa2cfe8c0d69015af3a20baafc1f8bbdd1afbb42ebaf9d6b6efa0d20c\"", - "id": "django-commons:deronnax", - "role": "member", - "username": "deronnax" - }, - "sensitive_attributes": [], - "private": "bnVsbA==", - "dependencies": [ - "data.github_users.users" - ] - }, - { - "index_key": "devatbosch", - "schema_version": 0, - "attributes": { - "downgrade_on_destroy": false, - "etag": "W/\"b827b10346c1ebac471197a130c75ab78edd219e884be6f9a0a8c9cd0f296159\"", - "id": "django-commons:devatbosch", - "role": "member", - "username": "devatbosch" - }, - "sensitive_attributes": [], - "private": "bnVsbA==", - "dependencies": [ - "data.github_users.users" - ] - }, - { - "index_key": "dmpayton", - "schema_version": 0, - "attributes": { - "downgrade_on_destroy": false, - "etag": "W/\"4640d6b0ed7b8d1bd3159cb44d18e023edb4646483d14bae22f51253dcc7174a\"", - "id": "django-commons:dmpayton", - "role": "member", - "username": "dmpayton" - }, - "sensitive_attributes": [], - "private": "bnVsbA==", - "dependencies": [ - "data.github_users.users" - ] - }, - { - "index_key": "dr-rompecabezas", - "schema_version": 0, - "attributes": { - "downgrade_on_destroy": false, - "etag": "W/\"2bf7c17a5feadd333207f5ac23867f7a3c890af2eb27ac9a7c422335c042bd60\"", - "id": "django-commons:dr-rompecabezas", - "role": "member", - "username": "dr-rompecabezas" - }, - "sensitive_attributes": [], - "private": "bnVsbA==", - "dependencies": [ - "data.github_users.users" - ] - }, - { - "index_key": "elineda", - "schema_version": 0, - "attributes": { - "downgrade_on_destroy": false, - "etag": "W/\"0243d5a80b417e800bce9806cebcfc4c277c38c6c2d1cf63412e0f65f93adb55\"", - "id": "django-commons:elineda", - "role": "member", - "username": "elineda" - }, - "sensitive_attributes": [], - "private": "bnVsbA==", - "dependencies": [ - "data.github_users.users" - ] - }, - { - "index_key": "federicobond", - "schema_version": 0, - "attributes": { - "downgrade_on_destroy": false, - "etag": "W/\"228410b22b745267f90f006fc90107b32f296bac52bcf22026a3e8317bcfbc9d\"", - "id": "django-commons:federicobond", - "role": "member", - "username": "federicobond" - }, - "sensitive_attributes": [], - "private": "bnVsbA==", - "dependencies": [ - "data.github_users.users" - ] - }, - { - "index_key": "fsbraun", - "schema_version": 0, - "attributes": { - "downgrade_on_destroy": false, - "etag": "W/\"39da5dd24082f60e83f4adc8fda3679f7c3ddaf7533b1b940f2b8c6219b946e0\"", - "id": "django-commons:fsbraun", - "role": "member", - "username": "fsbraun" - }, - "sensitive_attributes": [], - "private": "bnVsbA==", - "dependencies": [ - "data.github_users.users" - ] - }, - { - "index_key": "g-nie", - "schema_version": 0, - "attributes": { - "downgrade_on_destroy": false, - "etag": "W/\"d05579f94f11f9652be4cadf306bb66a4e0b16fcf870eb439d471df448f388b8\"", - "id": "django-commons:g-nie", - "role": "member", - "username": "g-nie" - }, - "sensitive_attributes": [], - "private": "bnVsbA==", - "dependencies": [ - "data.github_users.users" - ] - }, - { - "index_key": "gav-fyi", - "schema_version": 0, - "attributes": { - "downgrade_on_destroy": null, - "etag": "W/\"e34caf3f86b45e8ec852d7fbb939ccf44fcae8b797fb5b651c9c1513b7e6542c\"", - "id": "django-commons:gav-fyi", - "role": "member", - "username": "gav-fyi" - }, - "sensitive_attributes": [], - "private": "eyJzY2hlbWFfdmVyc2lvbiI6IjAifQ==", - "dependencies": [ - "data.github_users.users" - ] - }, - { - "index_key": "giovannicimolin", - "schema_version": 0, - "attributes": { - "downgrade_on_destroy": false, - "etag": "W/\"39dcc3fb5073e7738defb298865529a82ede728b5e82bb01703b18ef9baf8426\"", - "id": "django-commons:giovannicimolin", - "role": "member", - "username": "giovannicimolin" - }, - "sensitive_attributes": [], - "private": "bnVsbA==", - "dependencies": [ - "data.github_users.users" - ] - }, - { - "index_key": "input", - "schema_version": 0, - "attributes": { - "downgrade_on_destroy": false, - "etag": "W/\"d7b8aca501dd7b4ce6dbe3958fba2741cbd493c37c192fe102d49aa615104aae\"", - "id": "django-commons:input", - "role": "member", - "username": "input" - }, - "sensitive_attributes": [], - "private": "bnVsbA==", - "dependencies": [ - "data.github_users.users" - ] - }, - { - "index_key": "jacklinke", - "schema_version": 0, - "attributes": { - "downgrade_on_destroy": false, - "etag": "W/\"9c7b8e1b0972cd42c16e4953d0b2adb7195286d794df9672942e272e35894c19\"", - "id": "django-commons:jacklinke", - "role": "member", - "username": "jacklinke" - }, - "sensitive_attributes": [], - "private": "bnVsbA==", - "dependencies": [ - "data.github_users.users" - ] - }, - { - "index_key": "jburns6789", - "schema_version": 0, - "attributes": { - "downgrade_on_destroy": false, - "etag": "W/\"6aac95f41a4d6391899afc1796799228a7692cbad25f8f365f05dca2d9b18b22\"", - "id": "django-commons:jburns6789", - "role": "member", - "username": "jburns6789" - }, - "sensitive_attributes": [], - "private": "bnVsbA==", - "dependencies": [ - "data.github_users.users" - ] - }, - { - "index_key": "jcjudkins", - "schema_version": 0, - "attributes": { - "downgrade_on_destroy": null, - "etag": "W/\"e9163164f085411bf1b265c5a3dc208169b29569bf002eedda69f948467de9af\"", - "id": "django-commons:jcjudkins", - "role": "member", - "username": "jcjudkins" - }, - "sensitive_attributes": [], - "private": "eyJzY2hlbWFfdmVyc2lvbiI6IjAifQ==", - "dependencies": [ - "data.github_users.users" - ] - }, - { - "index_key": "jezdez", - "schema_version": 0, - "attributes": { - "downgrade_on_destroy": false, - "etag": "W/\"947daa19b50e58c770e090500c4818b3bc73a89c49068b513068e4a7eee16e13\"", - "id": "django-commons:jezdez", - "role": "member", - "username": "jezdez" - }, - "sensitive_attributes": [], - "private": "bnVsbA==", - "dependencies": [ - "data.github_users.users" - ] - }, - { - "index_key": "jmgutu", - "schema_version": 0, - "attributes": { - "downgrade_on_destroy": false, - "etag": "W/\"68c8ee12d995a8e699e9d4f0ab7ea61593dff0e4c56001c0ff74eedc4c3a6a10\"", - "id": "django-commons:jmgutu", - "role": "member", - "username": "jmgutu" - }, - "sensitive_attributes": [], - "private": "bnVsbA==", - "dependencies": [ - "data.github_users.users" - ] - }, - { - "index_key": "jnovinger", - "schema_version": 0, - "attributes": { - "downgrade_on_destroy": false, - "etag": "W/\"ee2bfbfe115c0657c6190b0a65c6e917ff1a81417d8047326a3c004a0b93711a\"", - "id": "django-commons:jnovinger", - "role": "member", - "username": "jnovinger" - }, - "sensitive_attributes": [], - "private": "bnVsbA==", - "dependencies": [ - "data.github_users.users" - ] - }, - { - "index_key": "johnatanmoran", - "schema_version": 0, - "attributes": { - "downgrade_on_destroy": false, - "etag": "W/\"fc6eee35c8e85497e635fb0f853d68b523de3022e733b44f3ddbfead290fe89d\"", - "id": "django-commons:johnatanmoran", - "role": "member", - "username": "johnatanmoran" - }, - "sensitive_attributes": [], - "private": "bnVsbA==", - "dependencies": [ - "data.github_users.users" - ] - }, - { - "index_key": "johnfraney", - "schema_version": 0, - "attributes": { - "downgrade_on_destroy": false, - "etag": "W/\"548dbf94b63461f33c84f1ed7c3e0f911d8ea8cf32b6330c4202ac0b9e4d321d\"", - "id": "django-commons:johnfraney", - "role": "member", - "username": "johnfraney" - }, - "sensitive_attributes": [], - "private": "bnVsbA==", - "dependencies": [ - "data.github_users.users" - ] - }, - { - "index_key": "joshuadavidthomas", - "schema_version": 0, - "attributes": { - "downgrade_on_destroy": null, - "etag": "W/\"46997d69cead0af60d839f00466ef27d07ca58e2325f7553a2926a42f21f6478\"", - "id": "django-commons:joshuadavidthomas", - "role": "member", - "username": "joshuadavidthomas" - }, - "sensitive_attributes": [], - "private": "eyJzY2hlbWFfdmVyc2lvbiI6IjAifQ==", - "dependencies": [ - "data.github_users.users" - ] - }, - { - "index_key": "justbackend", - "schema_version": 0, - "attributes": { - "downgrade_on_destroy": false, - "etag": "W/\"b68ba71336b63ce9b69e1a1735afefd9d140838f6f045b17a9f318a54011281a\"", - "id": "django-commons:justbackend", - "role": "member", - "username": "justbackend" - }, - "sensitive_attributes": [], - "private": "bnVsbA==", - "dependencies": [ - "data.github_users.users" - ] - }, - { - "index_key": "kevin-brown", - "schema_version": 0, - "attributes": { - "downgrade_on_destroy": false, - "etag": "W/\"4d9aae7389f30dd05b936011f07909c00aee6f0405e25db4afde3f1ec38b2da7\"", - "id": "django-commons:kevin-brown", - "role": "member", - "username": "kevin-brown" - }, - "sensitive_attributes": [], - "private": "bnVsbA==", - "dependencies": [ - "data.github_users.users" - ] - }, - { - "index_key": "knyghty", - "schema_version": 0, - "attributes": { - "downgrade_on_destroy": false, - "etag": "W/\"d8b7c9aff338e17979af5bd82ccb45672b822d371bafe8c5453e3a31e9301aa5\"", - "id": "django-commons:knyghty", - "role": "member", - "username": "knyghty" - }, - "sensitive_attributes": [], - "private": "bnVsbA==", - "dependencies": [ - "data.github_users.users" - ] - }, - { - "index_key": "korfuri", - "schema_version": 0, - "attributes": { - "downgrade_on_destroy": false, - "etag": "W/\"42dc62440b556ce3e3ad6b2b8ddafafca7d7922d0614bfdeb928c60220df0044\"", - "id": "django-commons:korfuri", - "role": "member", - "username": "korfuri" - }, - "sensitive_attributes": [], - "private": "bnVsbA==", - "dependencies": [ - "data.github_users.users" - ] - }, - { - "index_key": "kytta", - "schema_version": 0, - "attributes": { - "downgrade_on_destroy": false, - "etag": "W/\"e98d8c18fbb625dfea5ac19bbcc75fb1e3c9d5d953424334eb6efd01363320ae\"", - "id": "django-commons:kytta", - "role": "member", - "username": "kytta" - }, - "sensitive_attributes": [], - "private": "bnVsbA==", - "dependencies": [ - "data.github_users.users" - ] - }, - { - "index_key": "leogregianin", - "schema_version": 0, - "attributes": { - "downgrade_on_destroy": false, - "etag": "W/\"e7289910e7febcb8f3a6fde6a8764f6d178bbab56be01b8cd65894a407548edf\"", - "id": "django-commons:leogregianin", - "role": "member", - "username": "leogregianin" - }, - "sensitive_attributes": [], - "private": "bnVsbA==", - "dependencies": [ - "data.github_users.users" - ] - }, - { - "index_key": "manelclos", - "schema_version": 0, - "attributes": { - "downgrade_on_destroy": false, - "etag": "W/\"0936e6e6b21b78dadf56a5dd3acf703b5d71a0276f1952693f2629bd7441b84c\"", - "id": "django-commons:manelclos", - "role": "member", - "username": "manelclos" - }, - "sensitive_attributes": [], - "private": "bnVsbA==", - "dependencies": [ - "data.github_users.users" - ] - }, - { - "index_key": "matthiask", - "schema_version": 0, - "attributes": { - "downgrade_on_destroy": null, - "etag": "W/\"fefccd4decf97545d335749efc8ff93204d2413e8964be36b67e29f858940c24\"", - "id": "django-commons:matthiask", - "role": "member", - "username": "matthiask" - }, - "sensitive_attributes": [], - "private": "eyJzY2hlbWFfdmVyc2lvbiI6IjAifQ==", - "dependencies": [ - "data.github_users.users" - ] - }, - { - "index_key": "mihrab34", - "schema_version": 0, - "attributes": { - "downgrade_on_destroy": false, - "etag": "W/\"1a94a3a8ec767a94329ee7c152ca3e8118c8250a4acc3cc157a78b6a640fee6a\"", - "id": "django-commons:mihrab34", - "role": "member", - "username": "mihrab34" - }, - "sensitive_attributes": [], - "private": "bnVsbA==", - "dependencies": [ - "data.github_users.users" - ] - }, - { - "index_key": "mkalioby", - "schema_version": 0, - "attributes": { - "downgrade_on_destroy": false, - "etag": "W/\"a74c9bc54ce56775efa4a02d3aa7beff0c8e0e6dff28c6f1f0fce19ca75b9932\"", - "id": "django-commons:mkalioby", - "role": "member", - "username": "mkalioby" - }, - "sensitive_attributes": [], - "private": "bnVsbA==", - "dependencies": [ - "data.github_users.users" - ] - }, - { - "index_key": "mnislam01", - "schema_version": 0, - "attributes": { - "downgrade_on_destroy": false, - "etag": "W/\"09a948483a90d2d2f56a89771811a3fe778f6da2918818032cc628b326123c83\"", - "id": "django-commons:mnislam01", - "role": "member", - "username": "mnislam01" - }, - "sensitive_attributes": [], - "private": "bnVsbA==", - "dependencies": [ - "data.github_users.users" - ] - }, - { - "index_key": "mzemlickis", - "schema_version": 0, - "attributes": { - "downgrade_on_destroy": false, - "etag": "W/\"045ff1bd41fe3f777313f042295b2f0672b50cf4eb3408c29d4e754f614d73de\"", - "id": "django-commons:mzemlickis", - "role": "member", - "username": "mzemlickis" - }, - "sensitive_attributes": [], - "private": "bnVsbA==", - "dependencies": [ - "data.github_users.users" - ] - }, - { - "index_key": "nanorepublica", - "schema_version": 0, - "attributes": { - "downgrade_on_destroy": null, - "etag": "W/\"db07a7f853410153761267b6045e2715dfd3570732a6dd73ca95debc3c8c893e\"", - "id": "django-commons:nanorepublica", - "role": "member", - "username": "nanorepublica" - }, - "sensitive_attributes": [], - "private": "eyJzY2hlbWFfdmVyc2lvbiI6IjAifQ==", - "dependencies": [ - "data.github_users.users" - ] - }, - { - "index_key": "niltonpimentel02", - "schema_version": 0, - "attributes": { - "downgrade_on_destroy": false, - "etag": "W/\"0ad8efea6af66569079cca077fe80dd90f92cb1bda110b859ca1d4f6536b3b7a\"", - "id": "django-commons:niltonpimentel02", - "role": "member", - "username": "niltonpimentel02" - }, - "sensitive_attributes": [], - "private": "bnVsbA==", - "dependencies": [ - "data.github_users.users" - ] - }, - { - "index_key": "okotdaniel", - "schema_version": 0, - "attributes": { - "downgrade_on_destroy": false, - "etag": "W/\"6b33ef86c3648185881d37bdbe7a5e9bb13a67f127148bcae3549ee956a4b8d7\"", - "id": "django-commons:okotdaniel", - "role": "member", - "username": "okotdaniel" - }, - "sensitive_attributes": [], - "private": "bnVsbA==", - "dependencies": [ - "data.github_users.users" - ] - }, - { - "index_key": "oliverandrich", - "schema_version": 0, - "attributes": { - "downgrade_on_destroy": false, - "etag": "W/\"2661a7ebb699c4436ef13afd7695d0de3f489ac913a2a3b677a66d02ece9a841\"", - "id": "django-commons:oliverandrich", - "role": "member", - "username": "oliverandrich" - }, - "sensitive_attributes": [], - "private": "bnVsbA==", - "dependencies": [ - "data.github_users.users" - ] - }, - { - "index_key": "ontowhee", - "schema_version": 0, - "attributes": { - "downgrade_on_destroy": false, - "etag": "W/\"15738a7615fe4145e26cbf354d2f41a39b797ac3dc3adf48d41d8422ff26d0ae\"", - "id": "django-commons:ontowhee", - "role": "member", - "username": "ontowhee" - }, - "sensitive_attributes": [], - "private": "bnVsbA==", - "dependencies": [ - "data.github_users.users" - ] - }, - { - "index_key": "p-r-a-v-i-n", - "schema_version": 0, - "attributes": { - "downgrade_on_destroy": false, - "etag": "W/\"1f3946f54242711152a8de285cd1de2fb9205f24b900b0fcecf4e080fbe33b9f\"", - "id": "django-commons:p-r-a-v-i-n", - "role": "member", - "username": "p-r-a-v-i-n" - }, - "sensitive_attributes": [], - "private": "bnVsbA==", - "dependencies": [ - "data.github_users.users" - ] - }, - { - "index_key": "pauloxnet", - "schema_version": 0, - "attributes": { - "downgrade_on_destroy": false, - "etag": "W/\"7484824a1f4860f2c581727dc50084fd7ab0a0d77965d3149cdf13629c68ab5d\"", - "id": "django-commons:pauloxnet", - "role": "member", - "username": "pauloxnet" - }, - "sensitive_attributes": [], - "private": "bnVsbA==", - "dependencies": [ - "data.github_users.users" - ] - }, - { - "index_key": "peterthomassen", - "schema_version": 0, - "attributes": { - "downgrade_on_destroy": false, - "etag": "W/\"29c7fc91dd66c69a9e501be9f62110d623c81858ffd3822c5c8f43bad17c9594\"", - "id": "django-commons:peterthomassen", - "role": "member", - "username": "peterthomassen" - }, - "sensitive_attributes": [], - "private": "bnVsbA==", - "dependencies": [ - "data.github_users.users" - ] - }, - { - "index_key": "pfouque", - "schema_version": 0, - "attributes": { - "downgrade_on_destroy": null, - "etag": "W/\"5a3d9b761fba19a193259234d71497c6e5574393707f803767d37c136468a52d\"", - "id": "django-commons:pfouque", - "role": "member", - "username": "pfouque" - }, - "sensitive_attributes": [], - "private": "eyJzY2hlbWFfdmVyc2lvbiI6IjAifQ==", - "dependencies": [ - "data.github_users.users" - ] - }, - { - "index_key": "priyapahwa", - "schema_version": 0, - "attributes": { - "downgrade_on_destroy": null, - "etag": "W/\"59e5eb397e76259240de3829e2528ca2f2e71f5e7d464693ce82eafca0320a9c\"", - "id": "django-commons:priyapahwa", - "role": "member", - "username": "priyapahwa" - }, - "sensitive_attributes": [], - "private": "eyJzY2hlbWFfdmVyc2lvbiI6IjAifQ==", - "dependencies": [ - "data.github_users.users" - ] - }, - { - "index_key": "rptmat57", - "schema_version": 0, - "attributes": { - "downgrade_on_destroy": false, - "etag": "W/\"4bd0e11d86ffae30dbe102932f029b7d5d4d28ea0e52f0a8cc231f9fd992ad61\"", - "id": "django-commons:rptmat57", - "role": "member", - "username": "rptmat57" - }, - "sensitive_attributes": [], - "private": "bnVsbA==", - "dependencies": [ - "data.github_users.users" - ] - }, - { - "index_key": "ryancheley", - "schema_version": 0, - "attributes": { - "downgrade_on_destroy": null, - "etag": "W/\"d4801c18e69b247f563e341db73e1e0104be35af7a9404fdb627a0113ecfba38\"", - "id": "django-commons:ryancheley", - "role": "admin", - "username": "ryancheley" - }, - "sensitive_attributes": [], - "private": "eyJzY2hlbWFfdmVyc2lvbiI6IjAifQ==", - "dependencies": [ - "data.github_users.users" - ] - }, - { - "index_key": "salty-ivy", - "schema_version": 0, - "attributes": { - "downgrade_on_destroy": false, - "etag": "W/\"f3a25f39cea7946c1cec4618d826cda67a57680b1189a5dbc15c36ff6fc2a27e\"", - "id": "django-commons:salty-ivy", - "role": "member", - "username": "salty-ivy" - }, - "sensitive_attributes": [], - "private": "bnVsbA==", - "dependencies": [ - "data.github_users.users" - ] - }, - { - "index_key": "sergei-maertens", - "schema_version": 0, - "attributes": { - "downgrade_on_destroy": false, - "etag": "W/\"7445fbd239acb3977a3269ec9034054e2834abd9a5aafa431a28fc34355bd530\"", - "id": "django-commons:sergei-maertens", - "role": "member", - "username": "sergei-maertens" - }, - "sensitive_attributes": [], - "private": "bnVsbA==", - "dependencies": [ - "data.github_users.users" - ] - }, - { - "index_key": "sobolevn", - "schema_version": 0, - "attributes": { - "downgrade_on_destroy": false, - "etag": "W/\"1040a3f9bd732d2dfd5dbe4c5e909a757a96b3362fd137f92fe1406fbb3cbafd\"", - "id": "django-commons:sobolevn", - "role": "member", - "username": "sobolevn" - }, - "sensitive_attributes": [], - "private": "bnVsbA==", - "dependencies": [ - "data.github_users.users" - ] - }, - { - "index_key": "testSchilling", - "schema_version": 0, - "attributes": { - "downgrade_on_destroy": null, - "etag": "W/\"70b5261bc95232509ab86b1b4b41f6b00b87b9aeb0de7e6ca619b0ae4108fcdd\"", - "id": "django-commons:testSchilling", - "role": "member", - "username": "testSchilling" - }, - "sensitive_attributes": [], - "private": "eyJzY2hlbWFfdmVyc2lvbiI6IjAifQ==", - "dependencies": [ - "data.github_users.users" - ] - }, - { - "index_key": "thibaudcolas", - "schema_version": 0, - "attributes": { - "downgrade_on_destroy": false, - "etag": "W/\"9b3ed8803fe33e93bdf58b4190ea5dbfb0854c32bb58229fe4ee453fe4c1db6b\"", - "id": "django-commons:thibaudcolas", - "role": "member", - "username": "thibaudcolas" - }, - "sensitive_attributes": [], - "private": "bnVsbA==", - "dependencies": [ - "data.github_users.users" - ] - }, - { - "index_key": "tim-schilling", - "schema_version": 0, - "attributes": { - "downgrade_on_destroy": null, - "etag": "W/\"d08704cb76022b1f2da65825ae4ac61d02b465eefe1f41ebe37f1fe5cdb95d40\"", - "id": "django-commons:tim-schilling", - "role": "admin", - "username": "tim-schilling" - }, - "sensitive_attributes": [], - "private": "eyJzY2hlbWFfdmVyc2lvbiI6IjAifQ==", - "dependencies": [ - "data.github_users.users" - ] - }, - { - "index_key": "ulgens", - "schema_version": 0, - "attributes": { - "downgrade_on_destroy": false, - "etag": "W/\"3d515302dfc8d88308043185f1fbc09cb6960f0f9481cb6dc8d59839c08b562f\"", - "id": "django-commons:ulgens", - "role": "member", - "username": "ulgens" - }, - "sensitive_attributes": [], - "private": "bnVsbA==", - "dependencies": [ - "data.github_users.users" - ] - }, - { - "index_key": "unmonoqueteclea", - "schema_version": 0, - "attributes": { - "downgrade_on_destroy": false, - "etag": "W/\"34cb9ad582585c20fb425f7fe15525432edf8b3487f2be0eed3833ecdf94d660\"", - "id": "django-commons:unmonoqueteclea", - "role": "member", - "username": "unmonoqueteclea" - }, - "sensitive_attributes": [], - "private": "bnVsbA==", - "dependencies": [ - "data.github_users.users" - ] - }, - { - "index_key": "vacarme", - "schema_version": 0, - "attributes": { - "downgrade_on_destroy": false, - "etag": "W/\"ad55e5ad154339604d255e00138136cbec4af629353e4e2e81c6c21aee82d355\"", - "id": "django-commons:vacarme", - "role": "member", - "username": "vacarme" - }, - "sensitive_attributes": [], - "private": "bnVsbA==", - "dependencies": [ - "data.github_users.users" - ] - }, - { - "index_key": "vinlawz", - "schema_version": 0, - "attributes": { - "downgrade_on_destroy": false, - "etag": "W/\"eab564fdfeb02b9a5fce96e1cb696297646c3f5947200711c17028761ba6fead\"", - "id": "django-commons:vinlawz", - "role": "member", - "username": "vinlawz" - }, - "sensitive_attributes": [], - "private": "bnVsbA==", - "dependencies": [ - "data.github_users.users" - ] - }, - { - "index_key": "viscofuse", - "schema_version": 0, - "attributes": { - "downgrade_on_destroy": false, - "etag": "W/\"005abac2f1fc0677f1e0124c5d963fdd519ab9498c42b190146e1c877af3a5b9\"", - "id": "django-commons:viscofuse", - "role": "member", - "username": "viscofuse" - }, - "sensitive_attributes": [], - "private": "bnVsbA==", - "dependencies": [ - "data.github_users.users" - ] - }, - { - "index_key": "williln", - "schema_version": 0, - "attributes": { - "downgrade_on_destroy": null, - "etag": "W/\"12a0371329c9540348dbf2d5da0292aff07049c0a3efc56e7ebfcfe2a57190d2\"", - "id": "django-commons:williln", - "role": "admin", - "username": "williln" - }, - "sensitive_attributes": [], - "private": "eyJzY2hlbWFfdmVyc2lvbiI6IjAifQ==", - "dependencies": [ - "data.github_users.users" - ] - } - ] - }, - { - "mode": "managed", - "type": "github_organization_role_team", - "name": "admins_security_manager", - "provider": "provider[\"registry.terraform.io/integrations/github\"]", - "instances": [ - { - "schema_version": 0, - "attributes": { - "id": "138:admins", - "role_id": 138, - "team_slug": "admins" - }, - "sensitive_attributes": [], - "private": "bnVsbA==", - "dependencies": [ - "github_team.org_teams" - ] - } - ] - } - ], - "check_results": null -} +{"version":4,"terraform_version":"1.11.1","serial":969,"lineage":"425397de-8394-a003-8a6c-bce854d9cc53","outputs":{"invalid_users":{"value":[],"type":["list","string"]}},"resources":[{"mode":"data","type":"github_users","name":"users","provider":"provider[\"registry.opentofu.org/integrations/github\"]","instances":[{"schema_version":0,"attributes":{"emails":["me@youngkwang.dev","","","","jonathan@stoppani.name","wogur981208@gmail.com","","","mogost@aartemyev.ru","fernando_cordeiro@live.com","","","","","","","","","zakuijules@live.fr","","","akshay12345vin@gmail.com","","","hello@asherfoa.com","","jon.c.culver@gmail.com","bckohan@gmail.com","","","carlton.gibson@noumenal.es","","","","","","","derek.payton@gmail.com","felavid@gmail.com","elineda@elineda.ovh","federicobond@gmail.com","fsbraun@gmx.de","terzo.giannis@gmail.com","scalamoosh@gmail.com","","","","wogur981208@gmail.com","","","","","jnovinger@gmail.com","info@johnatanmoran.com","","josh@joshthomas.dev","","","tom@carrick.eu","uriel@corfa.fr","me@kytta.dev","leogregianin@gmail.com","manelclos@gmail.com","mk@feinheit.ch","","mkalioby@mkalioby.com","mnazrul.c@gmail.com","mzemlickis@gmail.com","info@akmiller.co.uk","","info@okotdaniel.com","oliver@andrich.me","","","paolo@melchiorre.org","","","pahwa.priya19@gmail.com","mathieu.rampant@gmail.com","","aman2001mi@gmail.com","","","","thibaudcolas@gmail.com","schillingt@better-simple.com","","","","vinlawz07@gmail.com","",""],"id":"e228fd6ad0fdac3cb4195558a7556b67","logins":["2ykwang","Chiemezuo","DhavalGojiya","FlipperPA","GaretJax","JaeHyuckSa","JohananOppongAmoateng","Josephchinedu","Mogost","MrCordeiro","Natim","RealOrangeOne","Shrikantgiri25","SinkuKumar","Stormheg","TimothyMalahy","VeldaKiara","Violette-Allotey","Zakui","adRn-s","adamghill","akshayvinchurkar","amirreza8002","andoriyaprashant","asherf","ayimdomnic","bahoo","bckohan","blingblin-g","browniebroke","carltongibson","cgl","clintonb","cunla","ddabble","deronnax","devatbosch","dmpayton","dr-rompecabezas","elineda","federicobond","fsbraun","g-nie","gav-fyi","giovannicimolin","input","jacklinke","JaeHyuckSa","jburns6789","jcjudkins","jezdez","jmgutu","jnovinger","johnatanmoran","johnfraney","joshuadavidthomas","justbackend","kevin-brown","knyghty","korfuri","kytta","leogregianin","manelclos","matthiask","mihrab34","mkalioby","mnislam01","mzemlickis","nanorepublica","niltonpimentel02","okotdaniel","oliverandrich","ontowhee","p-r-a-v-i-n","pauloxnet","peterthomassen","pfouque","priyapahwa","rptmat57","ryancheley","salty-ivy","sergei-maertens","sobolevn","testSchilling","thibaudcolas","tim-schilling","ulgens","unmonoqueteclea","vacarme","vinlawz","viscofuse","williln"],"node_ids":["MDQ6VXNlcjY4MzI3OTA=","MDQ6VXNlcjI5NDcwNTE2","MDQ6VXNlcjUzODU2NTU1","MDQ6VXNlcjY4MTY0","MDQ6VXNlcjg2MjM2","U_kgDOBj-X0w","MDQ6VXNlcjg4NDExNjE0","MDQ6VXNlcjQ3ODUyOTI1","MDQ6VXNlcjcyMTk2Mw==","MDQ6VXNlcjIwNTk4NTcx","MDQ6VXNlcjIyOTQ1Mw==","MDQ6VXNlcjY1Mjc0ODk=","MDQ6VXNlcjkxMTIyMzE5","MDQ6VXNlcjczNzg1Nzk1","MDQ6VXNlcjEzODU2NTE1","MDQ6VXNlcjUwMjE3Nzgz","MDQ6VXNlcjMyNTUyMjk2","MDQ6VXNlcjY4ODY2MjQ2","MDQ6VXNlcjE3NTQzODE4","MDQ6VXNlcjYyOTcxOTk1","MDQ6VXNlcjMxNzA0NQ==","MDQ6VXNlcjEwNTEwODg5","U_kgDOByTH3Q","U_kgDOB0B3aQ","MDQ6VXNlcjEyNjgwODg=","MDQ6VXNlcjYyMTU5MjU=","MDQ6VXNlcjQzMDQxNQ==","MDQ6VXNlcjI2MzIwNzQ5","MDQ6VXNlcjYwMDkwMzkx","MDQ6VXNlcjg2MTA0NA==","MDQ6VXNlcjY0Njg2","MDQ6VXNlcjE2MTUxNTA=","MDQ6VXNlcjkxMDUxMA==","MDQ6VXNlcjM0MTk3MjE=","MDQ6VXNlcjYwNTg3NDU=","MDQ6VXNlcjQzOTI3OQ==","U_kgDOCkDCgw","MDQ6VXNlcjE0OTkxOA==","MDQ6VXNlcjc2NzA4NDM=","MDQ6VXNlcjI0OTk2MDE2","MDQ6VXNlcjEzODQyNg==","MDQ6VXNlcjE2OTA0NDc3","MDQ6VXNlcjkwOTA0NDM=","MDQ6VXNlcjU4NTI5MQ==","MDQ6VXNlcjI3ODkzMzg1","MDQ6VXNlcjQ2Mjk4Nw==","MDQ6VXNlcjczNTU0Njcy","U_kgDOBj-X0w","U_kgDOBwTNvg","MDQ6VXNlcjM0NDE3NTcz","MDQ6VXNlcjE2MTA=","MDQ6VXNlcjE0NDExNjE=","MDQ6VXNlcjEwMzQ5OQ==","MDQ6VXNlcjUzNDIxMTM=","MDQ6VXNlcjE3Mjg1Mjg=","MDQ6VXNlcjE5ODk2MjY3","U_kgDOBYTIXg","MDQ6VXNlcjE5OTE4NTA=","MDQ6VXNlcjM4NzEzNTQ=","MDQ6VXNlcjExMjQyNjM=","MDQ6VXNlcjY1NjYyNDg=","MDQ6VXNlcjE2ODQwNTM=","MDQ6VXNlcjQ2MzgzMg==","MDQ6VXNlcjI2Mjc=","MDQ6VXNlcjM1NTYyMTMx","MDQ6VXNlcjEwNDE0MDIw","MDQ6VXNlcjI0OTI5NDY2","MDQ6VXNlcjQ1NTY5NDQ=","MDQ6VXNlcjE5OTc5NDA=","MDQ6VXNlcjYzNjA1NDg1","MDQ6VXNlcjQxNzQ0MDEy","MDQ6VXNlcjc1OA==","MDQ6VXNlcjgyNjA3NzIz","MDQ6VXNlcjkxMTI1NTQw","MDQ6VXNlcjUyMTA5Nw==","MDQ6VXNlcjQyNDI2ODM=","MDQ6VXNlcjgzMDAwMDE=","MDQ6VXNlcjc3MDc1NDQ5","MDQ6VXNlcjE0MzI5Mzg4","MDQ6VXNlcjk4NTc3Nzk=","MDQ6VXNlcjc0NTUzOTUx","MDQ6VXNlcjU1MTg1NTA=","MDQ6VXNlcjQ2NjAyNzU=","U_kgDOCdBRFg","MDQ6VXNlcjg3NzU4NQ==","MDQ6VXNlcjEyODEyMTU=","MDQ6VXNlcjE2NjYzNw==","MDQ6VXNlcjQ3MDU3NTc=","MDQ6VXNlcjUxMjM3MTE3","U_kgDOCxTEHw","MDQ6VXNlcjM1MTUwMDAx","MDQ6VXNlcjIyODYzMDQ="],"unknown_logins":[],"usernames":["2ykwang","Chiemezuo","DhavalGojiya","FlipperPA","GaretJax","JaeHyuckSa","JohananOppongAmoateng","Josephchinedu","Mogost","MrCordeiro","Natim","RealOrangeOne","Shrikantgiri25","SinkuKumar","Stormheg","TimothyMalahy","VeldaKiara","Violette-Allotey","Zakui","adRn-s","adamghill","akshayvinchurkar","amirreza8002","andoriyaprashant","asherf","ayimdomnic","bahoo","bckohan","blingblin-g","browniebroke","carltongibson","cgl","clintonb","cunla","ddabble","deronnax","devatbosch","dmpayton","dr-rompecabezas","elineda","federicobond","fsbraun","g-nie","gav-fyi","giovannicimolin","input","jacklinke","jaehyuckSa","jburns6789","jcjudkins","jezdez","jmgutu","jnovinger","johnatanmoran","johnfraney","joshuadavidthomas","justbackend","kevin-brown","knyghty","korfuri","kytta","leogregianin","manelclos","matthiask","mihrab34","mkalioby","mnislam01","mzemlickis","nanorepublica","niltonpimentel02","okotdaniel","oliverandrich","ontowhee","p-r-a-v-i-n","pauloxnet","peterthomassen","pfouque","priyapahwa","rptmat57","ryancheley","salty-ivy","sergei-maertens","sobolevn","testSchilling","thibaudcolas","tim-schilling","ulgens","unmonoqueteclea","vacarme","vinlawz","viscofuse","williln"]},"sensitive_attributes":[]}]},{"mode":"managed","type":"github_membership","name":"this","provider":"provider[\"registry.opentofu.org/integrations/github\"]","instances":[{"index_key":"2ykwang","schema_version":0,"attributes":{"downgrade_on_destroy":false,"etag":"W/\"2ab69bb91ac4b18c946d48dd2579b7091cd483f80be6917ea941288e16ecbc44\"","id":"django-commons:2ykwang","role":"member","username":"2ykwang"},"sensitive_attributes":[],"private":"bnVsbA==","dependencies":["data.github_users.users"]},{"index_key":"Chiemezuo","schema_version":0,"attributes":{"downgrade_on_destroy":false,"etag":"W/\"86493022e463577599b0c4218dc23c525839a2e5e82514d967d69c1de4a787bb\"","id":"django-commons:Chiemezuo","role":"member","username":"Chiemezuo"},"sensitive_attributes":[],"private":"bnVsbA==","dependencies":["data.github_users.users"]},{"index_key":"DhavalGojiya","schema_version":0,"attributes":{"downgrade_on_destroy":false,"etag":"W/\"ac59e4c419b08fef803e006e4217fc3fe6f61f20b06686c4ae8b9e95be5ea540\"","id":"django-commons:DhavalGojiya","role":"member","username":"DhavalGojiya"},"sensitive_attributes":[],"private":"bnVsbA==","dependencies":["data.github_users.users"]},{"index_key":"FlipperPA","schema_version":0,"attributes":{"downgrade_on_destroy":false,"etag":"W/\"7b590516803d9ba1d3628f0b22275dfa2a6b72b6b6ff7cd76c21c5b817e8af26\"","id":"django-commons:FlipperPA","role":"member","username":"FlipperPA"},"sensitive_attributes":[],"private":"bnVsbA==","dependencies":["data.github_users.users"]},{"index_key":"GaretJax","schema_version":0,"attributes":{"downgrade_on_destroy":false,"etag":"W/\"426aa4f95c40f19c856f37a3c1e6f377e6a0f22be16a35fae129e820486dee44\"","id":"django-commons:GaretJax","role":"member","username":"GaretJax"},"sensitive_attributes":[],"private":"bnVsbA==","dependencies":["data.github_users.users"]},{"index_key":"JaeHyuckSa","schema_version":0,"attributes":{"downgrade_on_destroy":false,"etag":"W/\"716c3995d2135eb0eaa4d83adc7d3debe7b6af60937d8d64e639bda1f6de03a7\"","id":"django-commons:JaeHyuckSa","role":"member","username":"JaeHyuckSa"},"sensitive_attributes":[],"private":"bnVsbA==","dependencies":["data.github_users.users"]},{"index_key":"JohananOppongAmoateng","schema_version":0,"attributes":{"downgrade_on_destroy":false,"etag":"W/\"3a07921bf441cea09b0a78f9ab78304ffb76db1e20433294ae55661b0a442cce\"","id":"django-commons:JohananOppongAmoateng","role":"member","username":"JohananOppongAmoateng"},"sensitive_attributes":[],"private":"bnVsbA==","dependencies":["data.github_users.users"]},{"index_key":"Josephchinedu","schema_version":0,"attributes":{"downgrade_on_destroy":false,"etag":"W/\"ed0d2e1779e4630c5fada391648e2f53c16b772d97cb42a425568ed3014f14ee\"","id":"django-commons:Josephchinedu","role":"member","username":"Josephchinedu"},"sensitive_attributes":[],"private":"bnVsbA==","dependencies":["data.github_users.users"]},{"index_key":"Mogost","schema_version":0,"attributes":{"downgrade_on_destroy":false,"etag":"W/\"548d6d97173a3ce733c320f447381a8bd6d2fccd6b775584b6176242f52a53d1\"","id":"django-commons:Mogost","role":"member","username":"Mogost"},"sensitive_attributes":[],"private":"bnVsbA==","dependencies":["data.github_users.users"]},{"index_key":"MrCordeiro","schema_version":0,"attributes":{"downgrade_on_destroy":false,"etag":"W/\"edd0f9b8dab234cbe109f29462f3ece7f0b65f63df7fc2823c9d28fffb2a5ef5\"","id":"django-commons:MrCordeiro","role":"member","username":"MrCordeiro"},"sensitive_attributes":[],"private":"bnVsbA==","dependencies":["data.github_users.users"]},{"index_key":"Natim","schema_version":0,"attributes":{"downgrade_on_destroy":null,"etag":"W/\"98a134b427d7d7b8f67c9abcfcd6b33416fc931f263a155a02346dd1317adea1\"","id":"django-commons:Natim","role":"member","username":"Natim"},"sensitive_attributes":[],"private":"eyJzY2hlbWFfdmVyc2lvbiI6IjAifQ==","dependencies":["data.github_users.users"]},{"index_key":"RealOrangeOne","schema_version":0,"attributes":{"downgrade_on_destroy":false,"etag":"W/\"ab2eccdd691fd60c778f497424dd5447d2acfed1ffffd0b74afaed0f22777432\"","id":"django-commons:RealOrangeOne","role":"member","username":"RealOrangeOne"},"sensitive_attributes":[],"private":"bnVsbA==","dependencies":["data.github_users.users"]},{"index_key":"Shrikantgiri25","schema_version":0,"attributes":{"downgrade_on_destroy":false,"etag":"W/\"a3333c88d84be72f756f2f53ebd187fc84e51aa2ef0ffaabd4bfd5f5b5eeda28\"","id":"django-commons:Shrikantgiri25","role":"member","username":"Shrikantgiri25"},"sensitive_attributes":[],"private":"bnVsbA==","dependencies":["data.github_users.users"]},{"index_key":"SinkuKumar","schema_version":0,"attributes":{"downgrade_on_destroy":false,"etag":"W/\"2305d621c10729a6ff4a4558cd2fabe957a57dcadd720001577d8697da0cafe2\"","id":"django-commons:SinkuKumar","role":"member","username":"SinkuKumar"},"sensitive_attributes":[],"private":"bnVsbA==","dependencies":["data.github_users.users"]},{"index_key":"Stormheg","schema_version":0,"attributes":{"downgrade_on_destroy":null,"etag":"W/\"6b9c524e3964766b01bd2b6c3d28df6103a221f1d0cc1bf5fe7be4cef7c3180b\"","id":"django-commons:Stormheg","role":"admin","username":"Stormheg"},"sensitive_attributes":[],"private":"eyJzY2hlbWFfdmVyc2lvbiI6IjAifQ==","dependencies":["data.github_users.users"]},{"index_key":"TimothyMalahy","schema_version":0,"attributes":{"downgrade_on_destroy":false,"etag":"W/\"43e96a9dbb4ebcad38940d648e200236f958f3208488f74b640534d11417fa75\"","id":"django-commons:TimothyMalahy","role":"member","username":"TimothyMalahy"},"sensitive_attributes":[],"private":"bnVsbA==","dependencies":["data.github_users.users"]},{"index_key":"VeldaKiara","schema_version":0,"attributes":{"downgrade_on_destroy":false,"etag":"W/\"048ba4379d78554dbffe9698ab7d310410d1b450fb8a0243fc4188bf19e5d6af\"","id":"django-commons:VeldaKiara","role":"member","username":"VeldaKiara"},"sensitive_attributes":[],"private":"bnVsbA==","dependencies":["data.github_users.users"]},{"index_key":"Violette-Allotey","schema_version":0,"attributes":{"downgrade_on_destroy":false,"etag":"W/\"b0038a5b93546b977263873bb9e2db5fe133f7c1ab778ccd949a58b90faf381b\"","id":"django-commons:Violette-Allotey","role":"member","username":"Violette-Allotey"},"sensitive_attributes":[],"private":"bnVsbA==","dependencies":["data.github_users.users"]},{"index_key":"Zakui","schema_version":0,"attributes":{"downgrade_on_destroy":false,"etag":"W/\"f693bf0f4fa49827c01f276f6f0e1f60ee9b3b24986df0cfa484480c6c3542a5\"","id":"django-commons:Zakui","role":"member","username":"Zakui"},"sensitive_attributes":[],"private":"bnVsbA==","dependencies":["data.github_users.users"]},{"index_key":"adRn-s","schema_version":0,"attributes":{"downgrade_on_destroy":false,"etag":"W/\"4ad889c365cd59b3c76dbdf7b626298540e621599ea7399e79cd838ffa8f8a18\"","id":"django-commons:adRn-s","role":"member","username":"adRn-s"},"sensitive_attributes":[],"private":"bnVsbA==","dependencies":["data.github_users.users"]},{"index_key":"adamghill","schema_version":0,"attributes":{"downgrade_on_destroy":false,"etag":"W/\"f97a091dce002178f3bd38e9a5191fbef8ca6ed55365712794ccfd130a424913\"","id":"django-commons:adamghill","role":"member","username":"adamghill"},"sensitive_attributes":[],"private":"bnVsbA==","dependencies":["data.github_users.users"]},{"index_key":"akshayvinchurkar","schema_version":0,"attributes":{"downgrade_on_destroy":false,"etag":"W/\"1c1b62e18f9f91dfcbbcf08ee56929a08c0e6c4bdef3a56bdfaa53e36c397389\"","id":"django-commons:akshayvinchurkar","role":"member","username":"akshayvinchurkar"},"sensitive_attributes":[],"private":"bnVsbA==","dependencies":["data.github_users.users"]},{"index_key":"amirreza8002","schema_version":0,"attributes":{"downgrade_on_destroy":false,"etag":"W/\"55bff3bb50dc17188a3a4d3f6a3e14856db5daf924467c30ad332695d0a12744\"","id":"django-commons:amirreza8002","role":"member","username":"amirreza8002"},"sensitive_attributes":[],"private":"bnVsbA==","dependencies":["data.github_users.users"]},{"index_key":"andoriyaprashant","schema_version":0,"attributes":{"downgrade_on_destroy":false,"etag":"W/\"0695c6f857f9b075d3ca7e8f19ed69b7d3e3de692d721c2ab994618aae4e622e\"","id":"django-commons:andoriyaprashant","role":"member","username":"andoriyaprashant"},"sensitive_attributes":[],"private":"bnVsbA==","dependencies":["data.github_users.users"]},{"index_key":"asherf","schema_version":0,"attributes":{"downgrade_on_destroy":false,"etag":"W/\"6e015ecc9908c65f3678bcfde23b6f6d51484b9d80f3b459e17056af31114f11\"","id":"django-commons:asherf","role":"member","username":"asherf"},"sensitive_attributes":[],"private":"bnVsbA==","dependencies":["data.github_users.users"]},{"index_key":"ayimdomnic","schema_version":0,"attributes":{"downgrade_on_destroy":false,"etag":"W/\"246a98fe4ab7fb481f81c65bdca244800cc35950648dc7697c80ac1bbad0b12c\"","id":"django-commons:ayimdomnic","role":"member","username":"ayimdomnic"},"sensitive_attributes":[],"private":"bnVsbA==","dependencies":["data.github_users.users"]},{"index_key":"bahoo","schema_version":0,"attributes":{"downgrade_on_destroy":false,"etag":"W/\"8e9aa915843efe47fe6bfd858faaa0e2e125d60c76785a61cb5c30ff077c3043\"","id":"django-commons:bahoo","role":"member","username":"bahoo"},"sensitive_attributes":[],"private":"bnVsbA==","dependencies":["data.github_users.users"]},{"index_key":"bckohan","schema_version":0,"attributes":{"downgrade_on_destroy":false,"etag":"W/\"56a7c423e887b0264729d64da713f5ee984234251d9d8e394af05ba521f5fabc\"","id":"django-commons:bckohan","role":"member","username":"bckohan"},"sensitive_attributes":[],"private":"bnVsbA==","dependencies":["data.github_users.users"]},{"index_key":"blingblin-g","schema_version":0,"attributes":{"downgrade_on_destroy":false,"etag":"W/\"7896c43e39776144d45c53864520b23b2f2b99a5112593e22ea66c39e4c8082a\"","id":"django-commons:blingblin-g","role":"member","username":"blingblin-g"},"sensitive_attributes":[],"private":"bnVsbA==","dependencies":["data.github_users.users"]},{"index_key":"browniebroke","schema_version":0,"attributes":{"downgrade_on_destroy":false,"etag":"W/\"0fa93f60780a213eac11fbc66a266aa5d8e254313a8e2d6cd2b2e63ccfe562cc\"","id":"django-commons:browniebroke","role":"member","username":"browniebroke"},"sensitive_attributes":[],"private":"bnVsbA==","dependencies":["data.github_users.users"]},{"index_key":"carltongibson","schema_version":0,"attributes":{"downgrade_on_destroy":false,"etag":"W/\"ca6d7695590cb0a76b96eb4ce0b18dac1e8ed54b25fe017672d2d2aba68eca1f\"","id":"django-commons:carltongibson","role":"member","username":"carltongibson"},"sensitive_attributes":[],"private":"bnVsbA==","dependencies":["data.github_users.users"]},{"index_key":"cgl","schema_version":0,"attributes":{"downgrade_on_destroy":false,"etag":"W/\"fa5d14c3626f04db92766d7fe30b1929b9f294d904dfe88c24fa3bd9756c875e\"","id":"django-commons:cgl","role":"member","username":"cgl"},"sensitive_attributes":[],"private":"bnVsbA==","dependencies":["data.github_users.users"]},{"index_key":"clintonb","schema_version":0,"attributes":{"downgrade_on_destroy":false,"etag":"W/\"9aaf2bf914d4954c9ed392cc10a1670d0624111e1ac9a3b3a3e32f267beb3c8c\"","id":"django-commons:clintonb","role":"member","username":"clintonb"},"sensitive_attributes":[],"private":"bnVsbA==","dependencies":["data.github_users.users"]},{"index_key":"cunla","schema_version":0,"attributes":{"downgrade_on_destroy":null,"etag":"W/\"fe8a9355720182460e3b8066fe6577918851d592930c5201a97add1a1fcc7f67\"","id":"django-commons:cunla","role":"admin","username":"cunla"},"sensitive_attributes":[],"private":"eyJzY2hlbWFfdmVyc2lvbiI6IjAifQ==","dependencies":["data.github_users.users"]},{"index_key":"ddabble","schema_version":0,"attributes":{"downgrade_on_destroy":false,"etag":"W/\"fc42f7a4b7782f316304a82a057c1bb88bcbc26522fa0a4c1a56e1af73aa184e\"","id":"django-commons:ddabble","role":"member","username":"ddabble"},"sensitive_attributes":[],"private":"bnVsbA==","dependencies":["data.github_users.users"]},{"index_key":"deronnax","schema_version":0,"attributes":{"downgrade_on_destroy":false,"etag":"W/\"1497ae7aa2cfe8c0d69015af3a20baafc1f8bbdd1afbb42ebaf9d6b6efa0d20c\"","id":"django-commons:deronnax","role":"member","username":"deronnax"},"sensitive_attributes":[],"private":"bnVsbA==","dependencies":["data.github_users.users"]},{"index_key":"devatbosch","schema_version":0,"attributes":{"downgrade_on_destroy":false,"etag":"W/\"b827b10346c1ebac471197a130c75ab78edd219e884be6f9a0a8c9cd0f296159\"","id":"django-commons:devatbosch","role":"member","username":"devatbosch"},"sensitive_attributes":[],"private":"bnVsbA==","dependencies":["data.github_users.users"]},{"index_key":"dmpayton","schema_version":0,"attributes":{"downgrade_on_destroy":false,"etag":"W/\"4640d6b0ed7b8d1bd3159cb44d18e023edb4646483d14bae22f51253dcc7174a\"","id":"django-commons:dmpayton","role":"member","username":"dmpayton"},"sensitive_attributes":[],"private":"bnVsbA==","dependencies":["data.github_users.users"]},{"index_key":"dr-rompecabezas","schema_version":0,"attributes":{"downgrade_on_destroy":false,"etag":"W/\"2bf7c17a5feadd333207f5ac23867f7a3c890af2eb27ac9a7c422335c042bd60\"","id":"django-commons:dr-rompecabezas","role":"member","username":"dr-rompecabezas"},"sensitive_attributes":[],"private":"bnVsbA==","dependencies":["data.github_users.users"]},{"index_key":"elineda","schema_version":0,"attributes":{"downgrade_on_destroy":false,"etag":"W/\"0243d5a80b417e800bce9806cebcfc4c277c38c6c2d1cf63412e0f65f93adb55\"","id":"django-commons:elineda","role":"member","username":"elineda"},"sensitive_attributes":[],"private":"bnVsbA==","dependencies":["data.github_users.users"]},{"index_key":"federicobond","schema_version":0,"attributes":{"downgrade_on_destroy":false,"etag":"W/\"228410b22b745267f90f006fc90107b32f296bac52bcf22026a3e8317bcfbc9d\"","id":"django-commons:federicobond","role":"member","username":"federicobond"},"sensitive_attributes":[],"private":"bnVsbA==","dependencies":["data.github_users.users"]},{"index_key":"fsbraun","schema_version":0,"attributes":{"downgrade_on_destroy":false,"etag":"W/\"39da5dd24082f60e83f4adc8fda3679f7c3ddaf7533b1b940f2b8c6219b946e0\"","id":"django-commons:fsbraun","role":"member","username":"fsbraun"},"sensitive_attributes":[],"private":"bnVsbA==","dependencies":["data.github_users.users"]},{"index_key":"g-nie","schema_version":0,"attributes":{"downgrade_on_destroy":false,"etag":"W/\"d05579f94f11f9652be4cadf306bb66a4e0b16fcf870eb439d471df448f388b8\"","id":"django-commons:g-nie","role":"member","username":"g-nie"},"sensitive_attributes":[],"private":"bnVsbA==","dependencies":["data.github_users.users"]},{"index_key":"gav-fyi","schema_version":0,"attributes":{"downgrade_on_destroy":null,"etag":"W/\"e34caf3f86b45e8ec852d7fbb939ccf44fcae8b797fb5b651c9c1513b7e6542c\"","id":"django-commons:gav-fyi","role":"member","username":"gav-fyi"},"sensitive_attributes":[],"private":"eyJzY2hlbWFfdmVyc2lvbiI6IjAifQ==","dependencies":["data.github_users.users"]},{"index_key":"giovannicimolin","schema_version":0,"attributes":{"downgrade_on_destroy":false,"etag":"W/\"39dcc3fb5073e7738defb298865529a82ede728b5e82bb01703b18ef9baf8426\"","id":"django-commons:giovannicimolin","role":"member","username":"giovannicimolin"},"sensitive_attributes":[],"private":"bnVsbA==","dependencies":["data.github_users.users"]},{"index_key":"input","schema_version":0,"attributes":{"downgrade_on_destroy":false,"etag":"W/\"d7b8aca501dd7b4ce6dbe3958fba2741cbd493c37c192fe102d49aa615104aae\"","id":"django-commons:input","role":"member","username":"input"},"sensitive_attributes":[],"private":"bnVsbA==","dependencies":["data.github_users.users"]},{"index_key":"jacklinke","schema_version":0,"attributes":{"downgrade_on_destroy":false,"etag":"W/\"9c7b8e1b0972cd42c16e4953d0b2adb7195286d794df9672942e272e35894c19\"","id":"django-commons:jacklinke","role":"member","username":"jacklinke"},"sensitive_attributes":[],"private":"bnVsbA==","dependencies":["data.github_users.users"]},{"index_key":"jburns6789","schema_version":0,"attributes":{"downgrade_on_destroy":false,"etag":"W/\"6aac95f41a4d6391899afc1796799228a7692cbad25f8f365f05dca2d9b18b22\"","id":"django-commons:jburns6789","role":"member","username":"jburns6789"},"sensitive_attributes":[],"private":"bnVsbA==","dependencies":["data.github_users.users"]},{"index_key":"jcjudkins","schema_version":0,"attributes":{"downgrade_on_destroy":null,"etag":"W/\"e9163164f085411bf1b265c5a3dc208169b29569bf002eedda69f948467de9af\"","id":"django-commons:jcjudkins","role":"member","username":"jcjudkins"},"sensitive_attributes":[],"private":"eyJzY2hlbWFfdmVyc2lvbiI6IjAifQ==","dependencies":["data.github_users.users"]},{"index_key":"jezdez","schema_version":0,"attributes":{"downgrade_on_destroy":false,"etag":"W/\"947daa19b50e58c770e090500c4818b3bc73a89c49068b513068e4a7eee16e13\"","id":"django-commons:jezdez","role":"member","username":"jezdez"},"sensitive_attributes":[],"private":"bnVsbA==","dependencies":["data.github_users.users"]},{"index_key":"jmgutu","schema_version":0,"attributes":{"downgrade_on_destroy":false,"etag":"W/\"68c8ee12d995a8e699e9d4f0ab7ea61593dff0e4c56001c0ff74eedc4c3a6a10\"","id":"django-commons:jmgutu","role":"member","username":"jmgutu"},"sensitive_attributes":[],"private":"bnVsbA==","dependencies":["data.github_users.users"]},{"index_key":"jnovinger","schema_version":0,"attributes":{"downgrade_on_destroy":false,"etag":"W/\"ee2bfbfe115c0657c6190b0a65c6e917ff1a81417d8047326a3c004a0b93711a\"","id":"django-commons:jnovinger","role":"member","username":"jnovinger"},"sensitive_attributes":[],"private":"bnVsbA==","dependencies":["data.github_users.users"]},{"index_key":"johnatanmoran","schema_version":0,"attributes":{"downgrade_on_destroy":false,"etag":"W/\"fc6eee35c8e85497e635fb0f853d68b523de3022e733b44f3ddbfead290fe89d\"","id":"django-commons:johnatanmoran","role":"member","username":"johnatanmoran"},"sensitive_attributes":[],"private":"bnVsbA==","dependencies":["data.github_users.users"]},{"index_key":"johnfraney","schema_version":0,"attributes":{"downgrade_on_destroy":false,"etag":"W/\"548dbf94b63461f33c84f1ed7c3e0f911d8ea8cf32b6330c4202ac0b9e4d321d\"","id":"django-commons:johnfraney","role":"member","username":"johnfraney"},"sensitive_attributes":[],"private":"bnVsbA==","dependencies":["data.github_users.users"]},{"index_key":"joshuadavidthomas","schema_version":0,"attributes":{"downgrade_on_destroy":null,"etag":"W/\"46997d69cead0af60d839f00466ef27d07ca58e2325f7553a2926a42f21f6478\"","id":"django-commons:joshuadavidthomas","role":"member","username":"joshuadavidthomas"},"sensitive_attributes":[],"private":"eyJzY2hlbWFfdmVyc2lvbiI6IjAifQ==","dependencies":["data.github_users.users"]},{"index_key":"justbackend","schema_version":0,"attributes":{"downgrade_on_destroy":false,"etag":"W/\"b68ba71336b63ce9b69e1a1735afefd9d140838f6f045b17a9f318a54011281a\"","id":"django-commons:justbackend","role":"member","username":"justbackend"},"sensitive_attributes":[],"private":"bnVsbA==","dependencies":["data.github_users.users"]},{"index_key":"kevin-brown","schema_version":0,"attributes":{"downgrade_on_destroy":false,"etag":"W/\"4d9aae7389f30dd05b936011f07909c00aee6f0405e25db4afde3f1ec38b2da7\"","id":"django-commons:kevin-brown","role":"member","username":"kevin-brown"},"sensitive_attributes":[],"private":"bnVsbA==","dependencies":["data.github_users.users"]},{"index_key":"knyghty","schema_version":0,"attributes":{"downgrade_on_destroy":false,"etag":"W/\"d8b7c9aff338e17979af5bd82ccb45672b822d371bafe8c5453e3a31e9301aa5\"","id":"django-commons:knyghty","role":"member","username":"knyghty"},"sensitive_attributes":[],"private":"bnVsbA==","dependencies":["data.github_users.users"]},{"index_key":"korfuri","schema_version":0,"attributes":{"downgrade_on_destroy":false,"etag":"W/\"42dc62440b556ce3e3ad6b2b8ddafafca7d7922d0614bfdeb928c60220df0044\"","id":"django-commons:korfuri","role":"member","username":"korfuri"},"sensitive_attributes":[],"private":"bnVsbA==","dependencies":["data.github_users.users"]},{"index_key":"kytta","schema_version":0,"attributes":{"downgrade_on_destroy":false,"etag":"W/\"e98d8c18fbb625dfea5ac19bbcc75fb1e3c9d5d953424334eb6efd01363320ae\"","id":"django-commons:kytta","role":"member","username":"kytta"},"sensitive_attributes":[],"private":"bnVsbA==","dependencies":["data.github_users.users"]},{"index_key":"leogregianin","schema_version":0,"attributes":{"downgrade_on_destroy":false,"etag":"W/\"e7289910e7febcb8f3a6fde6a8764f6d178bbab56be01b8cd65894a407548edf\"","id":"django-commons:leogregianin","role":"member","username":"leogregianin"},"sensitive_attributes":[],"private":"bnVsbA==","dependencies":["data.github_users.users"]},{"index_key":"manelclos","schema_version":0,"attributes":{"downgrade_on_destroy":false,"etag":"W/\"0936e6e6b21b78dadf56a5dd3acf703b5d71a0276f1952693f2629bd7441b84c\"","id":"django-commons:manelclos","role":"member","username":"manelclos"},"sensitive_attributes":[],"private":"bnVsbA==","dependencies":["data.github_users.users"]},{"index_key":"matthiask","schema_version":0,"attributes":{"downgrade_on_destroy":null,"etag":"W/\"fefccd4decf97545d335749efc8ff93204d2413e8964be36b67e29f858940c24\"","id":"django-commons:matthiask","role":"member","username":"matthiask"},"sensitive_attributes":[],"private":"eyJzY2hlbWFfdmVyc2lvbiI6IjAifQ==","dependencies":["data.github_users.users"]},{"index_key":"mihrab34","schema_version":0,"attributes":{"downgrade_on_destroy":false,"etag":"W/\"1a94a3a8ec767a94329ee7c152ca3e8118c8250a4acc3cc157a78b6a640fee6a\"","id":"django-commons:mihrab34","role":"member","username":"mihrab34"},"sensitive_attributes":[],"private":"bnVsbA==","dependencies":["data.github_users.users"]},{"index_key":"mkalioby","schema_version":0,"attributes":{"downgrade_on_destroy":false,"etag":"W/\"a74c9bc54ce56775efa4a02d3aa7beff0c8e0e6dff28c6f1f0fce19ca75b9932\"","id":"django-commons:mkalioby","role":"member","username":"mkalioby"},"sensitive_attributes":[],"private":"bnVsbA==","dependencies":["data.github_users.users"]},{"index_key":"mnislam01","schema_version":0,"attributes":{"downgrade_on_destroy":false,"etag":"W/\"09a948483a90d2d2f56a89771811a3fe778f6da2918818032cc628b326123c83\"","id":"django-commons:mnislam01","role":"member","username":"mnislam01"},"sensitive_attributes":[],"private":"bnVsbA==","dependencies":["data.github_users.users"]},{"index_key":"mzemlickis","schema_version":0,"attributes":{"downgrade_on_destroy":false,"etag":"W/\"045ff1bd41fe3f777313f042295b2f0672b50cf4eb3408c29d4e754f614d73de\"","id":"django-commons:mzemlickis","role":"member","username":"mzemlickis"},"sensitive_attributes":[],"private":"bnVsbA==","dependencies":["data.github_users.users"]},{"index_key":"nanorepublica","schema_version":0,"attributes":{"downgrade_on_destroy":null,"etag":"W/\"db07a7f853410153761267b6045e2715dfd3570732a6dd73ca95debc3c8c893e\"","id":"django-commons:nanorepublica","role":"member","username":"nanorepublica"},"sensitive_attributes":[],"private":"eyJzY2hlbWFfdmVyc2lvbiI6IjAifQ==","dependencies":["data.github_users.users"]},{"index_key":"niltonpimentel02","schema_version":0,"attributes":{"downgrade_on_destroy":false,"etag":"W/\"0ad8efea6af66569079cca077fe80dd90f92cb1bda110b859ca1d4f6536b3b7a\"","id":"django-commons:niltonpimentel02","role":"member","username":"niltonpimentel02"},"sensitive_attributes":[],"private":"bnVsbA==","dependencies":["data.github_users.users"]},{"index_key":"okotdaniel","schema_version":0,"attributes":{"downgrade_on_destroy":false,"etag":"W/\"6b33ef86c3648185881d37bdbe7a5e9bb13a67f127148bcae3549ee956a4b8d7\"","id":"django-commons:okotdaniel","role":"member","username":"okotdaniel"},"sensitive_attributes":[],"private":"bnVsbA==","dependencies":["data.github_users.users"]},{"index_key":"oliverandrich","schema_version":0,"attributes":{"downgrade_on_destroy":false,"etag":"W/\"2661a7ebb699c4436ef13afd7695d0de3f489ac913a2a3b677a66d02ece9a841\"","id":"django-commons:oliverandrich","role":"member","username":"oliverandrich"},"sensitive_attributes":[],"private":"bnVsbA==","dependencies":["data.github_users.users"]},{"index_key":"ontowhee","schema_version":0,"attributes":{"downgrade_on_destroy":false,"etag":"W/\"15738a7615fe4145e26cbf354d2f41a39b797ac3dc3adf48d41d8422ff26d0ae\"","id":"django-commons:ontowhee","role":"member","username":"ontowhee"},"sensitive_attributes":[],"private":"bnVsbA==","dependencies":["data.github_users.users"]},{"index_key":"p-r-a-v-i-n","schema_version":0,"attributes":{"downgrade_on_destroy":false,"etag":"W/\"1f3946f54242711152a8de285cd1de2fb9205f24b900b0fcecf4e080fbe33b9f\"","id":"django-commons:p-r-a-v-i-n","role":"member","username":"p-r-a-v-i-n"},"sensitive_attributes":[],"private":"bnVsbA==","dependencies":["data.github_users.users"]},{"index_key":"pauloxnet","schema_version":0,"attributes":{"downgrade_on_destroy":false,"etag":"W/\"7484824a1f4860f2c581727dc50084fd7ab0a0d77965d3149cdf13629c68ab5d\"","id":"django-commons:pauloxnet","role":"member","username":"pauloxnet"},"sensitive_attributes":[],"private":"bnVsbA==","dependencies":["data.github_users.users"]},{"index_key":"peterthomassen","schema_version":0,"attributes":{"downgrade_on_destroy":false,"etag":"W/\"29c7fc91dd66c69a9e501be9f62110d623c81858ffd3822c5c8f43bad17c9594\"","id":"django-commons:peterthomassen","role":"member","username":"peterthomassen"},"sensitive_attributes":[],"private":"bnVsbA==","dependencies":["data.github_users.users"]},{"index_key":"pfouque","schema_version":0,"attributes":{"downgrade_on_destroy":null,"etag":"W/\"5a3d9b761fba19a193259234d71497c6e5574393707f803767d37c136468a52d\"","id":"django-commons:pfouque","role":"member","username":"pfouque"},"sensitive_attributes":[],"private":"eyJzY2hlbWFfdmVyc2lvbiI6IjAifQ==","dependencies":["data.github_users.users"]},{"index_key":"priyapahwa","schema_version":0,"attributes":{"downgrade_on_destroy":null,"etag":"W/\"59e5eb397e76259240de3829e2528ca2f2e71f5e7d464693ce82eafca0320a9c\"","id":"django-commons:priyapahwa","role":"member","username":"priyapahwa"},"sensitive_attributes":[],"private":"eyJzY2hlbWFfdmVyc2lvbiI6IjAifQ==","dependencies":["data.github_users.users"]},{"index_key":"rptmat57","schema_version":0,"attributes":{"downgrade_on_destroy":false,"etag":"W/\"4bd0e11d86ffae30dbe102932f029b7d5d4d28ea0e52f0a8cc231f9fd992ad61\"","id":"django-commons:rptmat57","role":"member","username":"rptmat57"},"sensitive_attributes":[],"private":"bnVsbA==","dependencies":["data.github_users.users"]},{"index_key":"ryancheley","schema_version":0,"attributes":{"downgrade_on_destroy":null,"etag":"W/\"d4801c18e69b247f563e341db73e1e0104be35af7a9404fdb627a0113ecfba38\"","id":"django-commons:ryancheley","role":"admin","username":"ryancheley"},"sensitive_attributes":[],"private":"eyJzY2hlbWFfdmVyc2lvbiI6IjAifQ==","dependencies":["data.github_users.users"]},{"index_key":"salty-ivy","schema_version":0,"attributes":{"downgrade_on_destroy":false,"etag":"W/\"f3a25f39cea7946c1cec4618d826cda67a57680b1189a5dbc15c36ff6fc2a27e\"","id":"django-commons:salty-ivy","role":"member","username":"salty-ivy"},"sensitive_attributes":[],"private":"bnVsbA==","dependencies":["data.github_users.users"]},{"index_key":"sergei-maertens","schema_version":0,"attributes":{"downgrade_on_destroy":false,"etag":"W/\"7445fbd239acb3977a3269ec9034054e2834abd9a5aafa431a28fc34355bd530\"","id":"django-commons:sergei-maertens","role":"member","username":"sergei-maertens"},"sensitive_attributes":[],"private":"bnVsbA==","dependencies":["data.github_users.users"]},{"index_key":"sobolevn","schema_version":0,"attributes":{"downgrade_on_destroy":false,"etag":"W/\"1040a3f9bd732d2dfd5dbe4c5e909a757a96b3362fd137f92fe1406fbb3cbafd\"","id":"django-commons:sobolevn","role":"member","username":"sobolevn"},"sensitive_attributes":[],"private":"bnVsbA==","dependencies":["data.github_users.users"]},{"index_key":"testSchilling","schema_version":0,"attributes":{"downgrade_on_destroy":null,"etag":"W/\"70b5261bc95232509ab86b1b4b41f6b00b87b9aeb0de7e6ca619b0ae4108fcdd\"","id":"django-commons:testSchilling","role":"member","username":"testSchilling"},"sensitive_attributes":[],"private":"eyJzY2hlbWFfdmVyc2lvbiI6IjAifQ==","dependencies":["data.github_users.users"]},{"index_key":"thibaudcolas","schema_version":0,"attributes":{"downgrade_on_destroy":false,"etag":"W/\"9b3ed8803fe33e93bdf58b4190ea5dbfb0854c32bb58229fe4ee453fe4c1db6b\"","id":"django-commons:thibaudcolas","role":"member","username":"thibaudcolas"},"sensitive_attributes":[],"private":"bnVsbA==","dependencies":["data.github_users.users"]},{"index_key":"tim-schilling","schema_version":0,"attributes":{"downgrade_on_destroy":null,"etag":"W/\"d08704cb76022b1f2da65825ae4ac61d02b465eefe1f41ebe37f1fe5cdb95d40\"","id":"django-commons:tim-schilling","role":"admin","username":"tim-schilling"},"sensitive_attributes":[],"private":"eyJzY2hlbWFfdmVyc2lvbiI6IjAifQ==","dependencies":["data.github_users.users"]},{"index_key":"ulgens","schema_version":0,"attributes":{"downgrade_on_destroy":false,"etag":"W/\"3d515302dfc8d88308043185f1fbc09cb6960f0f9481cb6dc8d59839c08b562f\"","id":"django-commons:ulgens","role":"member","username":"ulgens"},"sensitive_attributes":[],"private":"bnVsbA==","dependencies":["data.github_users.users"]},{"index_key":"unmonoqueteclea","schema_version":0,"attributes":{"downgrade_on_destroy":false,"etag":"W/\"34cb9ad582585c20fb425f7fe15525432edf8b3487f2be0eed3833ecdf94d660\"","id":"django-commons:unmonoqueteclea","role":"member","username":"unmonoqueteclea"},"sensitive_attributes":[],"private":"bnVsbA==","dependencies":["data.github_users.users"]},{"index_key":"vacarme","schema_version":0,"attributes":{"downgrade_on_destroy":false,"etag":"W/\"ad55e5ad154339604d255e00138136cbec4af629353e4e2e81c6c21aee82d355\"","id":"django-commons:vacarme","role":"member","username":"vacarme"},"sensitive_attributes":[],"private":"bnVsbA==","dependencies":["data.github_users.users"]},{"index_key":"vinlawz","schema_version":0,"attributes":{"downgrade_on_destroy":false,"etag":"W/\"eab564fdfeb02b9a5fce96e1cb696297646c3f5947200711c17028761ba6fead\"","id":"django-commons:vinlawz","role":"member","username":"vinlawz"},"sensitive_attributes":[],"private":"bnVsbA==","dependencies":["data.github_users.users"]},{"index_key":"viscofuse","schema_version":0,"attributes":{"downgrade_on_destroy":false,"etag":"W/\"005abac2f1fc0677f1e0124c5d963fdd519ab9498c42b190146e1c877af3a5b9\"","id":"django-commons:viscofuse","role":"member","username":"viscofuse"},"sensitive_attributes":[],"private":"bnVsbA==","dependencies":["data.github_users.users"]},{"index_key":"williln","schema_version":0,"attributes":{"downgrade_on_destroy":null,"etag":"W/\"12a0371329c9540348dbf2d5da0292aff07049c0a3efc56e7ebfcfe2a57190d2\"","id":"django-commons:williln","role":"admin","username":"williln"},"sensitive_attributes":[],"private":"eyJzY2hlbWFfdmVyc2lvbiI6IjAifQ==","dependencies":["data.github_users.users"]}]},{"mode":"managed","type":"github_organization_role_team","name":"admins_security_manager","provider":"provider[\"registry.opentofu.org/integrations/github\"]","instances":[{"schema_version":0,"attributes":{"id":"138:admins","role_id":138,"team_slug":"admins"},"sensitive_attributes":[],"private":"bnVsbA==","dependencies":["github_team.org_teams"]}]},{"mode":"managed","type":"github_team","name":"org_designers_team","provider":"provider[\"registry.opentofu.org/integrations/github\"]","instances":[{"schema_version":0,"attributes":{"create_default_maintainer":false,"description":"Django Commons designers","etag":"W/\"6190db9e35543983d98c90efd5100623c9aa039b6a5c86cf4f39d884ea57b542\"","id":"14084892","ldap_dn":"","members_count":12,"name":"Designers","node_id":"T_kwDOCaaRBM4A1usc","parent_team_id":"","parent_team_read_id":"","parent_team_read_slug":"","privacy":"closed","slug":"designers"},"sensitive_attributes":[],"private":"bnVsbA=="}]},{"mode":"managed","type":"github_team","name":"org_teams","provider":"provider[\"registry.opentofu.org/integrations/github\"]","instances":[{"index_key":"Admins","schema_version":0,"attributes":{"create_default_maintainer":false,"description":"django-commons administrators","etag":"W/\"5f69695e20abebe020e6c81b6e8964fa94fa8813fa3ab99a4bb84e97661fb6cb\"","id":"9763562","ldap_dn":"","members_count":5,"name":"Admins","node_id":"T_kwDOCaaRBM4AlPrq","parent_team_id":"","parent_team_read_id":"","parent_team_read_slug":"","privacy":"closed","slug":"admins"},"sensitive_attributes":[],"private":"eyJzY2hlbWFfdmVyc2lvbiI6IjAifQ=="},{"index_key":"super-admins","schema_version":0,"attributes":{"create_default_maintainer":false,"description":"Django Commons super administrators. This team is responsible for performing privileged operations.","etag":"W/\"c7947c755db2cf3099ee8af01dc3e9e50f349a5a92ac25356241f7e717c08f82\"","id":"15586545","ldap_dn":"","members_count":5,"name":"super-admins","node_id":"T_kwDOCaaRBM4A7dTx","parent_team_id":"","parent_team_read_id":"","parent_team_read_slug":"","privacy":"closed","slug":"super-admins"},"sensitive_attributes":[],"private":"eyJzY2hlbWFfdmVyc2lvbiI6IjAifQ=="}]},{"mode":"managed","type":"github_team_members","name":"org_designers_team_members","provider":"provider[\"registry.opentofu.org/integrations/github\"]","instances":[{"schema_version":0,"attributes":{"id":"14084892","members":[{"role":"member","username":"Shrikantgiri25"},{"role":"member","username":"Violette-Allotey"},{"role":"member","username":"Zakui"},{"role":"member","username":"akshayvinchurkar"},{"role":"member","username":"federicobond"},{"role":"member","username":"jmgutu"},{"role":"member","username":"johnatanmoran"},{"role":"member","username":"mzemlickis"},{"role":"member","username":"okotdaniel"},{"role":"member","username":"p-r-a-v-i-n"},{"role":"member","username":"vinlawz"},{"role":"member","username":"viscofuse"}],"team_id":"14084892"},"sensitive_attributes":[],"private":"bnVsbA==","dependencies":["github_team.org_designers_team"]}]},{"mode":"managed","type":"github_team_members","name":"org_team_members","provider":"provider[\"registry.opentofu.org/integrations/github\"]","instances":[{"index_key":"Admins","schema_version":0,"attributes":{"id":"9763562","members":[{"role":"maintainer","username":"Stormheg"},{"role":"maintainer","username":"cunla"},{"role":"maintainer","username":"ryancheley"},{"role":"maintainer","username":"tim-schilling"},{"role":"maintainer","username":"williln"}],"team_id":"9763562"},"sensitive_attributes":[],"private":"eyJzY2hlbWFfdmVyc2lvbiI6IjAifQ==","dependencies":["github_team.org_teams"]},{"index_key":"super-admins","schema_version":0,"attributes":{"id":"15586545","members":[{"role":"maintainer","username":"Stormheg"},{"role":"maintainer","username":"cunla"},{"role":"maintainer","username":"ryancheley"},{"role":"maintainer","username":"tim-schilling"},{"role":"maintainer","username":"williln"}],"team_id":"15586545"},"sensitive_attributes":[],"private":"eyJzY2hlbWFfdmVyc2lvbiI6IjAifQ=="}]}],"check_results":null} From 5e3be687f16b48a36a3679e1902988d43e285fe5 Mon Sep 17 00:00:00 2001 From: Daniel M Date: Sun, 21 Dec 2025 09:37:30 -0500 Subject: [PATCH 14/17] wip --- .github/workflows/members-apply.yml | 1 + .github/workflows/members-plan.yml | 6 +++--- .github/workflows/repos-apply.yml | 1 + .github/workflows/repos-plan.yml | 1 + 4 files changed, 6 insertions(+), 3 deletions(-) diff --git a/.github/workflows/members-apply.yml b/.github/workflows/members-apply.yml index 002c1a0..f2ac5a8 100644 --- a/.github/workflows/members-apply.yml +++ b/.github/workflows/members-apply.yml @@ -37,6 +37,7 @@ jobs: TERRAFORM_ACTIONS_GITHUB_TOKEN: ${{ secrets.TERRAFORM_MANAGEMENT_GITHUB_TOKEN }} with: path: "terraform/members" + label: 'members' variables: | github_token = "${{ secrets.TERRAFORM_MANAGEMENT_GITHUB_TOKEN }}" var_file: | diff --git a/.github/workflows/members-plan.yml b/.github/workflows/members-plan.yml index 46f9232..6a3a0a5 100644 --- a/.github/workflows/members-plan.yml +++ b/.github/workflows/members-plan.yml @@ -34,7 +34,7 @@ jobs: org-plan-changes: name: "Plan org membership changes and list them in a PR" runs-on: ubuntu-latest - needs: [ "format-terraform-code" ] + needs: ["format-terraform-code"] permissions: pull-requests: write contents: read @@ -45,14 +45,14 @@ jobs: persist-credentials: false - name: terraform plan - # v1.44.0 - uses: dflook/terraform-plan@dc251c444763eed5defd065b866874b6343017ca + uses: dflook/terraform-plan@dc251c444763eed5defd065b866874b6343017ca # v1.44.0 env: TERRAFORM_ACTIONS_GITHUB_TOKEN: ${{ secrets.TERRAFORM_MANAGEMENT_GITHUB_TOKEN }} GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: add_github_comment: true path: "terraform/members" + label: 'members' variables: | github_token = "${{ secrets.TERRAFORM_MANAGEMENT_GITHUB_TOKEN }}" var_file: | diff --git a/.github/workflows/repos-apply.yml b/.github/workflows/repos-apply.yml index 0c3a71b..ab58f81 100644 --- a/.github/workflows/repos-apply.yml +++ b/.github/workflows/repos-apply.yml @@ -35,6 +35,7 @@ jobs: TERRAFORM_ACTIONS_GITHUB_TOKEN: ${{ secrets.TERRAFORM_MANAGEMENT_GITHUB_TOKEN }} with: path: "terraform/repos" + label: 'repos' variables: | github_token = "${{ secrets.TERRAFORM_MANAGEMENT_GITHUB_TOKEN }}" var_file: | diff --git a/.github/workflows/repos-plan.yml b/.github/workflows/repos-plan.yml index 6a8362c..46b1874 100644 --- a/.github/workflows/repos-plan.yml +++ b/.github/workflows/repos-plan.yml @@ -54,6 +54,7 @@ jobs: with: add_github_comment: true path: "terraform/repos" + label: 'repos' variables: | github_token = "${{ secrets.TERRAFORM_MANAGEMENT_GITHUB_TOKEN }}" var_file: | From d5b8119cb88f96f0c843d8c30d5ae0ea9af70918 Mon Sep 17 00:00:00 2001 From: Daniel M Date: Sun, 21 Dec 2025 09:40:18 -0500 Subject: [PATCH 15/17] wip --- .github/workflows/members-apply.yml | 3 +-- .github/workflows/members-plan.yml | 2 +- .github/workflows/repos-apply.yml | 3 +-- .github/workflows/repos-plan.yml | 5 ++--- 4 files changed, 5 insertions(+), 8 deletions(-) diff --git a/.github/workflows/members-apply.yml b/.github/workflows/members-apply.yml index f2ac5a8..b7de37b 100644 --- a/.github/workflows/members-apply.yml +++ b/.github/workflows/members-apply.yml @@ -30,8 +30,7 @@ jobs: with: persist-credentials: false - name: terraform apply - # v1.44.0 - uses: dflook/terraform-apply@8f47d0ad9f3cb9e50fd6b3595c0cb98f00c518df + uses: dflook/terraform-apply@8f47d0ad9f3cb9e50fd6b3595c0cb98f00c518df # v2.2.2 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} TERRAFORM_ACTIONS_GITHUB_TOKEN: ${{ secrets.TERRAFORM_MANAGEMENT_GITHUB_TOKEN }} diff --git a/.github/workflows/members-plan.yml b/.github/workflows/members-plan.yml index 6a3a0a5..5877611 100644 --- a/.github/workflows/members-plan.yml +++ b/.github/workflows/members-plan.yml @@ -45,7 +45,7 @@ jobs: persist-credentials: false - name: terraform plan - uses: dflook/terraform-plan@dc251c444763eed5defd065b866874b6343017ca # v1.44.0 + uses: dflook/terraform-plan@dc251c444763eed5defd065b866874b6343017ca # v2.2.2 env: TERRAFORM_ACTIONS_GITHUB_TOKEN: ${{ secrets.TERRAFORM_MANAGEMENT_GITHUB_TOKEN }} GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/repos-apply.yml b/.github/workflows/repos-apply.yml index ab58f81..709bdc6 100644 --- a/.github/workflows/repos-apply.yml +++ b/.github/workflows/repos-apply.yml @@ -28,8 +28,7 @@ jobs: with: persist-credentials: false - name: terraform apply - # v1.44.0 - uses: dflook/terraform-apply@8f47d0ad9f3cb9e50fd6b3595c0cb98f00c518df + uses: dflook/terraform-apply@8f47d0ad9f3cb9e50fd6b3595c0cb98f00c518df # v2.2.2 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} TERRAFORM_ACTIONS_GITHUB_TOKEN: ${{ secrets.TERRAFORM_MANAGEMENT_GITHUB_TOKEN }} diff --git a/.github/workflows/repos-plan.yml b/.github/workflows/repos-plan.yml index 46b1874..20f1587 100644 --- a/.github/workflows/repos-plan.yml +++ b/.github/workflows/repos-plan.yml @@ -35,7 +35,7 @@ jobs: repos-plan-changes: name: "Plan org-repositories changes and list them in a PR" runs-on: ubuntu-latest - needs: [ "format-terraform-code" ] + needs: ["format-terraform-code"] permissions: pull-requests: write contents: read @@ -46,8 +46,7 @@ jobs: persist-credentials: false - name: terraform plan - # v1.44.0 - uses: dflook/terraform-plan@dc251c444763eed5defd065b866874b6343017ca + uses: dflook/terraform-plan@dc251c444763eed5defd065b866874b6343017ca # v2.2.2 env: TERRAFORM_ACTIONS_GITHUB_TOKEN: ${{ secrets.TERRAFORM_MANAGEMENT_GITHUB_TOKEN }} GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} From 0654905a79257b70707aa92fcb8a6f9a5a57088b Mon Sep 17 00:00:00 2001 From: Daniel M Date: Sun, 21 Dec 2025 09:44:11 -0500 Subject: [PATCH 16/17] wip --- .github/workflows/members-plan.yml | 3 +-- .github/workflows/repos-plan.yml | 3 +-- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/members-plan.yml b/.github/workflows/members-plan.yml index 5877611..c3cb5ad 100644 --- a/.github/workflows/members-plan.yml +++ b/.github/workflows/members-plan.yml @@ -26,8 +26,7 @@ jobs: persist-credentials: false - name: terraform fmt check - # v2.2.2 - uses: dflook/terraform-fmt-check@10eaa13fa61437aa51be2d12fafe95f152e3512d + uses: dflook/terraform-fmt-check@10eaa13fa61437aa51be2d12fafe95f152e3512d # v2.2.2 with: path: "terraform/members" diff --git a/.github/workflows/repos-plan.yml b/.github/workflows/repos-plan.yml index 20f1587..2e5f94b 100644 --- a/.github/workflows/repos-plan.yml +++ b/.github/workflows/repos-plan.yml @@ -27,8 +27,7 @@ jobs: persist-credentials: false - name: terraform fmt check - # v2.2.2 - uses: dflook/terraform-fmt-check@10eaa13fa61437aa51be2d12fafe95f152e3512d + uses: dflook/terraform-fmt-check@10eaa13fa61437aa51be2d12fafe95f152e3512d # v2.2.2 with: path: "terraform/repos" From 085b447b1764c119489b2394e996e27d39ba431d Mon Sep 17 00:00:00 2001 From: Daniel M Date: Sun, 21 Dec 2025 09:59:33 -0500 Subject: [PATCH 17/17] wip --- .github/workflows/repos-apply.yml | 2 +- .github/workflows/repos-plan.yml | 1 - terraform/members/backend.tf | 1 - terraform/repos/backend.tf | 1 - 4 files changed, 1 insertion(+), 4 deletions(-) diff --git a/.github/workflows/repos-apply.yml b/.github/workflows/repos-apply.yml index 709bdc6..852d96c 100644 --- a/.github/workflows/repos-apply.yml +++ b/.github/workflows/repos-apply.yml @@ -38,7 +38,7 @@ jobs: variables: | github_token = "${{ secrets.TERRAFORM_MANAGEMENT_GITHUB_TOKEN }}" var_file: | - terraform/production/org.tfvars + terraform/production/repositories.tfvars - name: Commit changes if: ${{ always() }} diff --git a/.github/workflows/repos-plan.yml b/.github/workflows/repos-plan.yml index 2e5f94b..0a52a3a 100644 --- a/.github/workflows/repos-plan.yml +++ b/.github/workflows/repos-plan.yml @@ -56,5 +56,4 @@ jobs: variables: | github_token = "${{ secrets.TERRAFORM_MANAGEMENT_GITHUB_TOKEN }}" var_file: | - terraform/production/org.tfvars terraform/production/repositories.tfvars diff --git a/terraform/members/backend.tf b/terraform/members/backend.tf index a113544..4a7271a 100644 --- a/terraform/members/backend.tf +++ b/terraform/members/backend.tf @@ -5,5 +5,4 @@ terraform { backend "local" { path = "tfstate.json" } - } diff --git a/terraform/repos/backend.tf b/terraform/repos/backend.tf index a113544..4a7271a 100644 --- a/terraform/repos/backend.tf +++ b/terraform/repos/backend.tf @@ -5,5 +5,4 @@ terraform { backend "local" { path = "tfstate.json" } - }