From cabbe0348f78ef1aaa702854626397d40f11824f Mon Sep 17 00:00:00 2001 From: arnol377 Date: Fri, 4 Apr 2025 18:51:41 -0400 Subject: [PATCH] Add configuration files for CSVD and SCT-Engineering repositories - Created `csvd.json` and `csvd.tfvars` for CSVD organization with repository definitions and settings. - Created `sct-engineering.json` and `sct-engineering.tfvars` for SCT-Engineering organization with repository definitions and settings. --- .terraform_commits | 66 + actions-bucket.tf | 66 +- automation-repos.code-workspace | 21 +- image-pipeline.tf | 8 + imported-repos.tf | 45 +- main.tf | 240 +- morpheus.tf | 98 +- moved.tf | 118 + repolist.tf | 48 + rm.sh | 39 + .../sct-engineering/environment | 1 + .../sct-engineering/modules/imported_repos | 1 + .../imported_repos.internal_github_actions | 1 + .../sct-engineering/modules/modules.json | 1 + .../modules/repo_list/CODEOWNERS | 3 + .../modules/repo_list/README.md | 373 + .../modules/repo_list/action_secrets.tf | 15 + .../modules/repo_list/branch_protection.tf | 57 + .../modules/repo_list/collaborators.tf | 27 + .../sct-engineering/modules/repo_list/data.tf | 8 + .../modules/repo_list/environment.tf | 72 + .../modules/repo_list/github_branch.tf | 33 + .../modules/repo_list/github_deploy_keys.tf | 14 + .../modules/repo_list/github_files.tf | 98 + .../modules/repo_list/github_repo.tf | 93 + .../modules/repo_list/github_repo.tftest.hcl | 544 + .../modules/repo_list/github_team_access.tf | 35 + .../modules/repo_list/outputs.tf | 59 + .../modules/repo_list/templates/CODEOWNERS | 4 + .../terraform-github-repo.code-workspace | 18 + .../modules/repo_list/variables.tf | 420 + .../modules/repo_list/versions.tf | 7 + .../modules/sandbox/CODEOWNERS | 3 + .../sct-engineering/modules/sandbox/README.md | 373 + .../modules/sandbox/action_secrets.tf | 15 + .../modules/sandbox/branch_protection.tf | 57 + .../modules/sandbox/collaborators.tf | 27 + .../sct-engineering/modules/sandbox/data.tf | 8 + .../modules/sandbox/environment.tf | 72 + .../modules/sandbox/github_branch.tf | 33 + .../modules/sandbox/github_deploy_keys.tf | 14 + .../modules/sandbox/github_files.tf | 98 + .../modules/sandbox/github_repo.tf | 93 + .../modules/sandbox/github_repo.tftest.hcl | 544 + .../modules/sandbox/github_team_access.tf | 35 + .../modules/sandbox/outputs.tf | 59 + .../modules/sandbox/templates/CODEOWNERS | 4 + .../terraform-github-repo.code-workspace | 18 + .../modules/sandbox/variables.tf | 420 + .../modules/sandbox/versions.tf | 7 + .../hashicorp/aws/5.84.0/linux_amd64 | 1 + .../hashicorp/local/2.5.2/linux_amd64 | 1 + .../hashicorp/null/3.2.3/linux_amd64 | 1 + .../integrations/github/6.5.0/linux_amd64 | 1 + tf.plan | Bin 0 -> 135995 bytes tf.plan.json | 45024 ++++++++++++++++ varfiles/csvd.json | 4 + varfiles/csvd.tfvars | 562 + varfiles/default.tfvars | 260 + varfiles/sct-engineering.json | 4 + varfiles/sct-engineering.tfvars | 50 + variables.tf | 62 +- 62 files changed, 50138 insertions(+), 345 deletions(-) create mode 100644 rm.sh create mode 100644 terraform_data_dirs/sct-engineering/environment create mode 160000 terraform_data_dirs/sct-engineering/modules/imported_repos create mode 160000 terraform_data_dirs/sct-engineering/modules/imported_repos.internal_github_actions create mode 100644 terraform_data_dirs/sct-engineering/modules/modules.json create mode 100644 terraform_data_dirs/sct-engineering/modules/repo_list/CODEOWNERS create mode 100644 terraform_data_dirs/sct-engineering/modules/repo_list/README.md create mode 100644 terraform_data_dirs/sct-engineering/modules/repo_list/action_secrets.tf create mode 100644 terraform_data_dirs/sct-engineering/modules/repo_list/branch_protection.tf create mode 100644 terraform_data_dirs/sct-engineering/modules/repo_list/collaborators.tf create mode 100644 terraform_data_dirs/sct-engineering/modules/repo_list/data.tf create mode 100644 terraform_data_dirs/sct-engineering/modules/repo_list/environment.tf create mode 100644 terraform_data_dirs/sct-engineering/modules/repo_list/github_branch.tf create mode 100644 terraform_data_dirs/sct-engineering/modules/repo_list/github_deploy_keys.tf create mode 100644 terraform_data_dirs/sct-engineering/modules/repo_list/github_files.tf create mode 100644 terraform_data_dirs/sct-engineering/modules/repo_list/github_repo.tf create mode 100644 terraform_data_dirs/sct-engineering/modules/repo_list/github_repo.tftest.hcl create mode 100644 terraform_data_dirs/sct-engineering/modules/repo_list/github_team_access.tf create mode 100644 terraform_data_dirs/sct-engineering/modules/repo_list/outputs.tf create mode 100644 terraform_data_dirs/sct-engineering/modules/repo_list/templates/CODEOWNERS create mode 100644 terraform_data_dirs/sct-engineering/modules/repo_list/terraform-github-repo.code-workspace create mode 100644 terraform_data_dirs/sct-engineering/modules/repo_list/variables.tf create mode 100644 terraform_data_dirs/sct-engineering/modules/repo_list/versions.tf create mode 100644 terraform_data_dirs/sct-engineering/modules/sandbox/CODEOWNERS create mode 100644 terraform_data_dirs/sct-engineering/modules/sandbox/README.md create mode 100644 terraform_data_dirs/sct-engineering/modules/sandbox/action_secrets.tf create mode 100644 terraform_data_dirs/sct-engineering/modules/sandbox/branch_protection.tf create mode 100644 terraform_data_dirs/sct-engineering/modules/sandbox/collaborators.tf create mode 100644 terraform_data_dirs/sct-engineering/modules/sandbox/data.tf create mode 100644 terraform_data_dirs/sct-engineering/modules/sandbox/environment.tf create mode 100644 terraform_data_dirs/sct-engineering/modules/sandbox/github_branch.tf create mode 100644 terraform_data_dirs/sct-engineering/modules/sandbox/github_deploy_keys.tf create mode 100644 terraform_data_dirs/sct-engineering/modules/sandbox/github_files.tf create mode 100644 terraform_data_dirs/sct-engineering/modules/sandbox/github_repo.tf create mode 100644 terraform_data_dirs/sct-engineering/modules/sandbox/github_repo.tftest.hcl create mode 100644 terraform_data_dirs/sct-engineering/modules/sandbox/github_team_access.tf create mode 100644 terraform_data_dirs/sct-engineering/modules/sandbox/outputs.tf create mode 100644 terraform_data_dirs/sct-engineering/modules/sandbox/templates/CODEOWNERS create mode 100644 terraform_data_dirs/sct-engineering/modules/sandbox/terraform-github-repo.code-workspace create mode 100644 terraform_data_dirs/sct-engineering/modules/sandbox/variables.tf create mode 100644 terraform_data_dirs/sct-engineering/modules/sandbox/versions.tf create mode 120000 terraform_data_dirs/sct-engineering/providers/registry.terraform.io/hashicorp/aws/5.84.0/linux_amd64 create mode 120000 terraform_data_dirs/sct-engineering/providers/registry.terraform.io/hashicorp/local/2.5.2/linux_amd64 create mode 120000 terraform_data_dirs/sct-engineering/providers/registry.terraform.io/hashicorp/null/3.2.3/linux_amd64 create mode 120000 terraform_data_dirs/sct-engineering/providers/registry.terraform.io/integrations/github/6.5.0/linux_amd64 create mode 100644 tf.plan create mode 100644 tf.plan.json create mode 100644 varfiles/csvd.json create mode 100644 varfiles/csvd.tfvars create mode 100644 varfiles/sct-engineering.json create mode 100644 varfiles/sct-engineering.tfvars diff --git a/.terraform_commits b/.terraform_commits index f4ab013..e4427a0 100644 --- a/.terraform_commits +++ b/.terraform_commits @@ -10,5 +10,71 @@ "commit_message": "Implement code changes to enhance functionality and improve performance", "author": "arnol377", "timestamp": "2025-03-19T20:31:17.707462" + }, + { + "commit_hash": "bf88681509277e952417fa99b0f2d438453eba2b", + "commit_message": "Add repo topics for pip-config in default.tfvars", + "author": "arnol377", + "timestamp": "2025-03-24T13:13:42.584172" + }, + { + "commit_hash": "bf88681509277e952417fa99b0f2d438453eba2b", + "commit_message": "Add repo topics for pip-config in default.tfvars", + "author": "arnol377", + "timestamp": "2025-04-01T14:28:11.225325" + }, + { + "commit_hash": "bf88681509277e952417fa99b0f2d438453eba2b", + "commit_message": "Add repo topics for pip-config in default.tfvars", + "author": "arnol377", + "timestamp": "2025-04-01T14:50:10.724540" + }, + { + "commit_hash": "bf88681509277e952417fa99b0f2d438453eba2b", + "commit_message": "Add repo topics for pip-config in default.tfvars", + "author": "arnol377", + "timestamp": "2025-04-01T14:55:59.018548" + }, + { + "commit_hash": "bf88681509277e952417fa99b0f2d438453eba2b", + "commit_message": "Add repo topics for pip-config in default.tfvars", + "author": "arnol377", + "timestamp": "2025-04-01T17:04:34.188861" + }, + { + "commit_hash": "bf88681509277e952417fa99b0f2d438453eba2b", + "commit_message": "Add repo topics for pip-config in default.tfvars", + "author": "arnol377", + "timestamp": "2025-04-01T17:17:31.000947" + }, + { + "commit_hash": "bf88681509277e952417fa99b0f2d438453eba2b", + "commit_message": "Add repo topics for pip-config in default.tfvars", + "author": "arnol377", + "timestamp": "2025-04-03T13:22:15.864776" + }, + { + "commit_hash": "bf88681509277e952417fa99b0f2d438453eba2b", + "commit_message": "Add repo topics for pip-config in default.tfvars", + "author": "arnol377", + "timestamp": "2025-04-03T13:24:46.568925" + }, + { + "commit_hash": "bf88681509277e952417fa99b0f2d438453eba2b", + "commit_message": "Add repo topics for pip-config in default.tfvars", + "author": "arnol377", + "timestamp": "2025-04-04T15:02:52.529487" + }, + { + "commit_hash": "bf88681509277e952417fa99b0f2d438453eba2b", + "commit_message": "Add repo topics for pip-config in default.tfvars", + "author": "arnol377", + "timestamp": "2025-04-04T15:08:59.428711" + }, + { + "commit_hash": "bf88681509277e952417fa99b0f2d438453eba2b", + "commit_message": "Add repo topics for pip-config in default.tfvars", + "author": "arnol377", + "timestamp": "2025-04-04T17:10:52.321216" } ] \ No newline at end of file diff --git a/actions-bucket.tf b/actions-bucket.tf index 5c8b551..0726fde 100644 --- a/actions-bucket.tf +++ b/actions-bucket.tf @@ -1,8 +1,8 @@ locals { - base_bucket_name = "csvd-dev-ew-github-actions" + base_bucket_name = "${var.github_org}-dev-ew-github-actions" east_bucket_name = "${local.base_bucket_name}-east" kms_key_deletion_days = 30 - kms_description = "KMS key for actions bucket encryption" + kms_description = "KMS key for actions bucket @ ${var.github_org} encryption" enable_key_rotation = true # S3 permissions for ECS role @@ -20,11 +20,16 @@ data "aws_caller_identity" "current" {} # West Region Resources resource "aws_kms_key" "actions_bucket_west" { - provider = aws.west + count = var.create_actions_bucket ? 1 : 0 + provider = aws.west description = "${local.kms_description} (West)" deletion_window_in_days = local.kms_key_deletion_days enable_key_rotation = local.enable_key_rotation - + lifecycle { + ignore_changes = [ + description + ] + } policy = jsonencode({ Version = "2012-10-17" Statement = [ @@ -42,39 +47,44 @@ resource "aws_kms_key" "actions_bucket_west" { } resource "aws_kms_alias" "actions_bucket_west" { + count = var.create_actions_bucket ? 1 : 0 provider = aws.west name = "alias/${local.base_bucket_name}" - target_key_id = aws_kms_key.actions_bucket_west.key_id + target_key_id = aws_kms_key.actions_bucket_west[0].key_id } resource "aws_s3_bucket" "actions_west" { + count = var.create_actions_bucket ? 1 : 0 provider = aws.west bucket = local.base_bucket_name } resource "aws_s3_bucket_versioning" "actions_west" { + count = var.create_actions_bucket ? 1 : 0 provider = aws.west - bucket = aws_s3_bucket.actions_west.id + bucket = aws_s3_bucket.actions_west[0].id versioning_configuration { status = "Enabled" } } resource "aws_s3_bucket_server_side_encryption_configuration" "actions_west" { + count = var.create_actions_bucket ? 1 : 0 provider = aws.west - bucket = aws_s3_bucket.actions_west.id + bucket = aws_s3_bucket.actions_west[0].id rule { apply_server_side_encryption_by_default { - kms_master_key_id = aws_kms_key.actions_bucket_west.arn + kms_master_key_id = aws_kms_key.actions_bucket_west[0].arn sse_algorithm = "aws:kms" } } } resource "aws_s3_bucket_public_access_block" "actions_west" { + count = var.create_actions_bucket ? 1 : 0 provider = aws.west - bucket = aws_s3_bucket.actions_west.id + bucket = aws_s3_bucket.actions_west[0].id block_public_acls = true block_public_policy = true ignore_public_acls = true @@ -82,8 +92,9 @@ resource "aws_s3_bucket_public_access_block" "actions_west" { } resource "aws_s3_bucket_policy" "actions_west" { + count = var.create_actions_bucket ? 1 : 0 provider = aws.west - bucket = aws_s3_bucket.actions_west.id + bucket = aws_s3_bucket.actions_west[0].id policy = jsonencode({ Version = "2012-10-17" @@ -96,8 +107,8 @@ resource "aws_s3_bucket_policy" "actions_west" { } Action = local.ecs_s3_actions Resource = [ - aws_s3_bucket.actions_west.arn, - "${aws_s3_bucket.actions_west.arn}/*" + aws_s3_bucket.actions_west[0].arn, + "${aws_s3_bucket.actions_west[0].arn}/*" ] } ] @@ -106,11 +117,16 @@ resource "aws_s3_bucket_policy" "actions_west" { # East Region Resources resource "aws_kms_key" "actions_bucket_east" { - provider = aws.east + count = var.create_actions_bucket ? 1 : 0 + provider = aws.east description = "${local.kms_description} (East)" deletion_window_in_days = local.kms_key_deletion_days enable_key_rotation = local.enable_key_rotation - + lifecycle { + ignore_changes = [ + description + ] + } policy = jsonencode({ Version = "2012-10-17" Statement = [ @@ -128,39 +144,44 @@ resource "aws_kms_key" "actions_bucket_east" { } resource "aws_kms_alias" "actions_bucket_east" { + count = var.create_actions_bucket ? 1 : 0 provider = aws.east name = "alias/${local.east_bucket_name}" - target_key_id = aws_kms_key.actions_bucket_east.key_id + target_key_id = aws_kms_key.actions_bucket_east[0].key_id } resource "aws_s3_bucket" "actions_east" { + count = var.create_actions_bucket ? 1 : 0 provider = aws.east bucket = local.east_bucket_name } resource "aws_s3_bucket_versioning" "actions_east" { + count = var.create_actions_bucket ? 1 : 0 provider = aws.east - bucket = aws_s3_bucket.actions_east.id + bucket = aws_s3_bucket.actions_east[0].id versioning_configuration { status = "Enabled" } } resource "aws_s3_bucket_server_side_encryption_configuration" "actions_east" { + count = var.create_actions_bucket ? 1 : 0 provider = aws.east - bucket = aws_s3_bucket.actions_east.id + bucket = aws_s3_bucket.actions_east[0].id rule { apply_server_side_encryption_by_default { - kms_master_key_id = aws_kms_key.actions_bucket_east.arn + kms_master_key_id = aws_kms_key.actions_bucket_east[0].arn sse_algorithm = "aws:kms" } } } resource "aws_s3_bucket_public_access_block" "actions_east" { + count = var.create_actions_bucket ? 1 : 0 provider = aws.east - bucket = aws_s3_bucket.actions_east.id + bucket = aws_s3_bucket.actions_east[0].id block_public_acls = true block_public_policy = true ignore_public_acls = true @@ -168,8 +189,9 @@ resource "aws_s3_bucket_public_access_block" "actions_east" { } resource "aws_s3_bucket_policy" "actions_east" { + count = var.create_actions_bucket ? 1 : 0 provider = aws.east - bucket = aws_s3_bucket.actions_east.id + bucket = aws_s3_bucket.actions_east[0].id policy = jsonencode({ Version = "2012-10-17" @@ -182,8 +204,8 @@ resource "aws_s3_bucket_policy" "actions_east" { } Action = local.ecs_s3_actions Resource = [ - aws_s3_bucket.actions_east.arn, - "${aws_s3_bucket.actions_east.arn}/*" + aws_s3_bucket.actions_east[0].arn, + "${aws_s3_bucket.actions_east[0].arn}/*" ] } ] diff --git a/automation-repos.code-workspace b/automation-repos.code-workspace index 05027c5..3bb7669 100644 --- a/automation-repos.code-workspace +++ b/automation-repos.code-workspace @@ -1,19 +1,28 @@ { "folders": [ { + "name": "Automation Repos", "path": "." }, { - "path": "../terraform-provider-github/website/docs/d", - "name": "data-sources" + "name": "Template Repos", + "path": "../template-repos" }, { - "path": "../terraform-provider-github/website/docs/r", - "name": "resources" + "name": "Module Decomposition", + "path": "../module-decomposition" }, { - "path": "../terraform-github-repo", - "name": "github-repo" + "name": "Terraform Modules", + "path": "../terraform-modules" + }, + { + "name": "terraform-github-repo", + "path": "../terraform-github-repo" + }, + { + "name": "terraform-github-repo-subdir", + "path": "../terraform-github-repo-subdir" } ], "settings": { diff --git a/image-pipeline.tf b/image-pipeline.tf index be0efd5..5629e89 100644 --- a/image-pipeline.tf +++ b/image-pipeline.tf @@ -1,3 +1,10 @@ +// This file is no longer needed as all repositories have been consolidated into the main repolist +// and appropriate moved blocks have been created to handle the transition. +// The image pipeline repositories are now defined in default.tfvars and created via the repo_list module. +// The image_pipeline_workflows variable is still used by the repo_list module for workflow files. + +// Previous configuration: +/* locals { pipeline_repos = [ "image-pipeline-goss", @@ -148,3 +155,4 @@ module "terraform_aws_image_pipeline" { } ] } +*/ diff --git a/imported-repos.tf b/imported-repos.tf index fece64f..bf7d06c 100644 --- a/imported-repos.tf +++ b/imported-repos.tf @@ -1,19 +1,26 @@ -module "netbackup_automation_platform" { - source = "HappyPathway/gh-actions/importer" - version = "0.0.34" - github_repo_topics = [] - vulnerability_alerts = false - public_repo = { - default_branch = "main" - clone_url = "https://github.com/VeritasOS/netbackup-automation-platform.git" - } - internal_repo = { - name = "netbackup-automation-platform" - org = "CSVD" - topics = ["automation-platform"] - collaborators = { - "littl381" = "admin" - "arnol377" = "admin" - } - } -} +// This file has been deprecated. +// The repository imports have been moved to the imported_repos module in repolist.tf +// and are now defined in the imported_repos variable in default.tfvars. +// Moved blocks have been created in moved.tf to ensure proper state tracking. + +// Previous configuration: +// module "netbackup_automation_platform" { +// source = "HappyPathway/gh-actions/importer" +// count = var.netbackup_automation_platform ? 1 : 0 +// version = "0.0.34" +// github_repo_topics = [] +// vulnerability_alerts = false +// public_repo = { +// default_branch = "main" +// clone_url = "https://github.com/VeritasOS/netbackup-automation-platform.git" +// } +// internal_repo = { +// name = "netbackup-automation-platform" +// org = "CSVD" +// topics = ["automation-platform"] +// collaborators = { +// "littl381" = "admin" +// "arnol377" = "admin" +// } +// } +// } diff --git a/main.tf b/main.tf index fe31a36..59b4711 100644 --- a/main.tf +++ b/main.tf @@ -11,240 +11,6 @@ locals { github_organization_teams = data.github_organization_teams.teams.teams } - -module "elastic_beanstalk" { - source = "HappyPathway/repo/github" - #github_codeowners_team = "CSVD" - github_repo_description = "Terraform Workspace for creating Elastic Beanstalk Apps and Environments" - repo_org = "arnol377" - name = "aws-beanstalk" - github_repo_topics = [ - "terraform" - ] - is_template = true - force_name = true - create_codeowners = false - enforce_prs = false - collaborators = local.collaborators - pull_request_bypassers = local.pull_request_bypassers - github_org_teams = local.github_organization_teams -} - - - -# terraform-repos -module "automation-repos" { - source = "HappyPathway/repo/github" - #github_codeowners_team = "CSVD" - github_repo_description = "Automation Repos for Morpheus POC" - repo_org = "CSVD" - name = "automation-repos" - github_repo_topics = [ - "terraform" - ] - force_name = true - create_codeowners = false - enforce_prs = false - collaborators = local.collaborators - pull_request_bypassers = local.pull_request_bypassers - github_org_teams = local.github_organization_teams -} - -# terraform-repos -module "csvd-org-management" { - source = "HappyPathway/repo/github" - #github_codeowners_team = "CSVD" - github_repo_description = "Automation Repos for Morpheus POC" - repo_org = "CSVD" - name = "csvd-org-management" - github_repo_topics = [ - "terraform" - ] - force_name = true - create_codeowners = false - enforce_prs = false - collaborators = local.collaborators - pull_request_bypassers = local.pull_request_bypassers - github_org_teams = local.github_organization_teams -} - -module "github-runner-images" { - source = "HappyPathway/repo/github" - #github_codeowners_team = "CSVD" - github_repo_description = "Github Runner Images Import" - repo_org = "CSVD" - name = "github-runner-images" - github_repo_topics = [ - "terraform" - ] - force_name = true - create_codeowners = false - enforce_prs = false - collaborators = local.collaborators - pull_request_bypassers = local.pull_request_bypassers - github_org_teams = local.github_organization_teams -} - -# terraform-github-repo -module "terraform-github-repo" { - source = "HappyPathway/repo/github" - #github_codeowners_team = "CSVD" - github_repo_description = "Terraform Module for managing github repos" - repo_org = "CSVD" - name = "terraform-github-repo" - github_repo_topics = [ - "terraform" - ] - force_name = true - enforce_prs = false - create_codeowners = false - collaborators = local.collaborators - pull_request_bypassers = local.pull_request_bypassers - github_org_teams = local.github_organization_teams -} - - -module "elastic_beanstalk_java" { - source = "HappyPathway/repo/github" - #github_codeowners_team = "CSVD" - github_repo_description = "Terraform Workspace for creating Elastic Beanstalk Apps and Environments" - repo_org = "arnol377" - name = "aws-beanstalk-java" - github_repo_topics = [ - "terraform" - ] - is_template = true - force_name = true - create_codeowners = false - enforce_prs = false - collaborators = local.collaborators - template_repo = "aws-beanstalk" - template_repo_org = "CSVD" - pull_request_bypassers = local.pull_request_bypassers - github_org_teams = local.github_organization_teams -} - -module "elastic_beanstalk_php" { - source = "HappyPathway/repo/github" - #github_codeowners_team = "CSVD" - github_repo_description = "Terraform Workspace for creating Elastic Beanstalk Apps and Environments" - repo_org = "arnol377" - name = "aws-beanstalk-php" - github_repo_topics = [ - "terraform" - ] - is_template = true - force_name = true - create_codeowners = false - enforce_prs = false - collaborators = local.collaborators - template_repo = "aws-beanstalk" - template_repo_org = "CSVD" - pull_request_bypassers = local.pull_request_bypassers - github_org_teams = local.github_organization_teams -} - -module "elastic_beanstalk_nodejs" { - source = "HappyPathway/repo/github" - #github_codeowners_team = "CSVD" - github_repo_description = "Terraform Workspace for creating Elastic Beanstalk Apps and Environments" - repo_org = "arnol377" - name = "aws-beanstalk-nodejs" - github_repo_topics = [ - "terraform" - ] - is_template = true - force_name = true - create_codeowners = false - enforce_prs = false - collaborators = local.collaborators - template_repo = "aws-beanstalk" - template_repo_org = "CSVD" - pull_request_bypassers = local.pull_request_bypassers - github_org_teams = local.github_organization_teams -} - - -module "elastic_beanstalk_docker" { - source = "HappyPathway/repo/github" - #github_codeowners_team = "CSVD" - github_repo_description = "Terraform Workspace for creating Elastic Beanstalk Apps and Environments" - repo_org = "arnol377" - name = "aws-beanstalk-docker" - github_repo_topics = [ - "terraform" - ] - is_template = true - force_name = true - create_codeowners = false - enforce_prs = false - collaborators = local.collaborators - template_repo = "aws-beanstalk" - template_repo_org = "CSVD" - pull_request_bypassers = local.pull_request_bypassers - github_org_teams = local.github_organization_teams -} - -module "beanstalk-demo" { - source = "HappyPathway/repo/github" - #github_codeowners_team = "CSVD" - github_repo_description = "Terraform Workspace for creating and managing AWS Beanstalk Demo" - repo_org = "arnol377" - name = "beanstalk-flask-demo" - github_repo_topics = [ - "terraform" - ] - force_name = true - create_codeowners = false - enforce_prs = false - is_template = true - collaborators = local.collaborators - pull_request_bypassers = local.pull_request_bypassers - github_org_teams = local.github_organization_teams -} - -module "setup_node" { - source = "HappyPathway/repo/github" - github_repo_description = "Github Actions Setup Node" - repo_org = "arnol377" - name = "gh-actions-setup-node" - github_repo_topics = [ - "terraform" - ] - force_name = true - github_is_private = false - create_codeowners = false - enforce_prs = false - collaborators = local.collaborators - github_org_teams = local.github_organization_teams -} - -module "vpc_services" { - source = "HappyPathway/repo/github" - github_repo_description = "Add VPC Endpoints for Supported Services to given Subnet" - repo_org = "arnol377" - name = "vpc-services" - github_repo_topics = [ - "terraform" - ] - force_name = true - github_is_private = false - create_codeowners = false - enforce_prs = false - collaborators = local.collaborators -} - -module "opensearch" { - source = "HappyPathway/repo/github" - github_repo_description = "Terraform workspace for managing OpenSearch" - repo_org = "arnol377" - name = "opensearch" - github_repo_topics = [ - "terraform" - ] - force_name = true - github_is_private = false - create_codeowners = false - enforce_prs = false - collaborators = local.collaborators -} +# All repository modules have been moved to the repo_list module in repolist.tf +# and are now defined in the repolist variable in default.tfvars +# Moved blocks have been created in moved.tf to ensure proper state tracking diff --git a/morpheus.tf b/morpheus.tf index 4a82a28..b03cbff 100644 --- a/morpheus.tf +++ b/morpheus.tf @@ -1,51 +1,51 @@ -locals { - morpheus_repos = [ - "morpheus-clouds", - ] -} +# locals { +# morpheus_repos = [ +# "morpheus-clouds", +# ] +# } -module "morpheus_repos" { - for_each = toset(local.morpheus_repos) - source = "HappyPathway/repo/github" - #github_codeowners_team = "CSVD" - github_repo_description = "Repo for morpheus cloud" - github_org_teams = local.github_organization_teams - repo_org = "CSVD" - name = each.value - github_repo_topics = [ - "terraform", - "morpheus", - ] - force_name = true - create_codeowners = false - enforce_prs = true - collaborators = { gomez385 = "admin", arnol377 = "admin" } - pull_request_bypassers = local.pull_request_bypassers - managed_extra_files = [ - { - path = ".github/workflows/terraform-plan.yaml" - content = templatefile( - "${path.module}/workflows/terraform-plan.yaml.tpl", - { - repo_name = each.value - directory = null - git_owner = { - name = "gomez385" - email = "james.f.gomez@census.gov" - } - } - ) - }, - { - path = ".github/workflows/terraform-apply.yaml" - content = templatefile( - "${path.module}/workflows/terraform-apply.yaml.tpl", - { - repo_name = each.value - directory = null - } - ) - } - ] -} +# module "morpheus_repos" { +# for_each = toset(local.morpheus_repos) +# source = "HappyPathway/repo/github" +# #github_codeowners_team = "CSVD" +# github_repo_description = "Repo for morpheus cloud" +# github_org_teams = local.github_organization_teams +# repo_org = "CSVD" +# name = each.value +# github_repo_topics = [ +# "terraform", +# "morpheus", +# ] +# force_name = true +# create_codeowners = false +# enforce_prs = true +# collaborators = { gomez385 = "admin", arnol377 = "admin" } +# pull_request_bypassers = local.pull_request_bypassers +# managed_extra_files = [ +# { +# path = ".github/workflows/terraform-plan.yaml" +# content = templatefile( +# "${path.module}/workflows/terraform-plan.yaml.tpl", +# { +# repo_name = each.value +# directory = null +# git_owner = { +# name = "gomez385" +# email = "james.f.gomez@census.gov" +# } +# } +# ) +# }, +# { +# path = ".github/workflows/terraform-apply.yaml" +# content = templatefile( +# "${path.module}/workflows/terraform-apply.yaml.tpl", +# { +# repo_name = each.value +# directory = null +# } +# ) +# } +# ] +# } diff --git a/moved.tf b/moved.tf index e0ff153..f50ed09 100644 --- a/moved.tf +++ b/moved.tf @@ -1,3 +1,8 @@ +moved { + from = module.morpheus_repos["morpheus-clouds"] + to = module.repo_list["morpheus-clouds"] +} + moved { from = module.image_pipeline_repos["linux-image-pipeline"] to = module.image_pipeline_repos["image-pipeline-packer"] @@ -7,4 +12,117 @@ moved { moved { from = module.image_pipeline_repos["image-pipeline-goss-testing"] to = module.image_pipeline_repos["image-pipeline-goss"] +} + +# Add moved blocks for repositories from main.tf +moved { + from = module.elastic_beanstalk + to = module.repo_list["aws-beanstalk"] +} + +moved { + from = module.automation-repos + to = module.repo_list["automation-repos"] +} + +moved { + from = module.csvd-org-management + to = module.repo_list["csvd-org-management"] +} + +moved { + from = module.github-runner-images + to = module.repo_list["github-runner-images"] +} + +moved { + from = module.terraform-github-repo + to = module.repo_list["terraform-github-repo"] +} + +moved { + from = module.elastic_beanstalk_java + to = module.repo_list["aws-beanstalk-java"] +} + +moved { + from = module.elastic_beanstalk_php + to = module.repo_list["aws-beanstalk-php"] +} + +moved { + from = module.elastic_beanstalk_nodejs + to = module.repo_list["aws-beanstalk-nodejs"] +} + +moved { + from = module.elastic_beanstalk_docker + to = module.repo_list["aws-beanstalk-docker"] +} + +moved { + from = module.beanstalk-demo + to = module.repo_list["beanstalk-flask-demo"] +} + +moved { + from = module.setup_node + to = module.repo_list["gh-actions-setup-node"] +} + +moved { + from = module.vpc_services + to = module.repo_list["vpc-services"] +} + +moved { + from = module.opensearch + to = module.repo_list["opensearch"] +} + +# Add moved block for the imported repository +moved { + from = module.netbackup_automation_platform[0] + to = module.imported_repos["netbackup-automation-platform"] +} + +# Add moved blocks for image pipeline repositories +moved { + from = module.image_pipeline_repos["image-pipeline-goss"] + to = module.repo_list["image-pipeline-goss"] +} + +moved { + from = module.image_pipeline_repos["image-pipeline-ansible-playbooks"] + to = module.repo_list["image-pipeline-ansible-playbooks"] +} + +moved { + from = module.image_pipeline_repos["image-pipeline-packer"] + to = module.repo_list["image-pipeline-packer"] +} + +moved { + from = module.image_pipeline_repos["windows-image-pipeline"] + to = module.repo_list["windows-image-pipeline"] +} + +moved { + from = module.image_pipeline_repos["docker-image-pipeline"] + to = module.repo_list["docker-image-pipeline"] +} + +moved { + from = module.asset_releases + to = module.repo_list["image-pipeline-asset-releases"] +} + +moved { + from = module.aws_image_pipeline + to = module.repo_list["aws-image-pipeline"] +} + +moved { + from = module.terraform_aws_image_pipeline + to = module.repo_list["terraform-aws-image-pipeline"] } \ No newline at end of file diff --git a/repolist.tf b/repolist.tf index e2aff36..1851939 100644 --- a/repolist.tf +++ b/repolist.tf @@ -17,6 +17,25 @@ resource "github_team_members" "terraform_reviewer_members" { } } +# New module for imported repositories +module "imported_repos" { + source = "HappyPathway/gh-actions/importer" + for_each = { for repo in var.imported_repos : repo.name => repo } + version = "0.0.34" + + github_repo_topics = each.value.topics + vulnerability_alerts = each.value.vulnerability_alerts + + public_repo = each.value.public_repo + + internal_repo = { + name = each.value.name + org = each.value.org + topics = each.value.topics + collaborators = each.value.collaborators + } +} + module "repo_list" { source = "HappyPathway/repo/github" for_each = tomap({ for repo in var.repolist : repo.name => repo }) @@ -33,4 +52,33 @@ module "repo_list" { pull_request_bypassers = local.pull_request_bypassers github_is_private = each.value.is_private github_org_teams = local.github_organization_teams + template_repo = each.value.template_repo + template_repo_org = each.value.template_org + + # Combine image pipeline workflow files with any custom managed_extra_files defined in the variable + managed_extra_files = concat( + # Add workflow files for image pipeline repositories + contains(keys(var.image_pipeline_workflows), each.value.name) ? [ + { + path = ".github/workflows/s3_upload.yaml" + content = templatefile( + lookup(var.image_pipeline_workflows, each.value.name, "${path.module}/workflows/s3_upload.yaml.tpl"), + { + repo_name = each.value.name, + bucket_name = "csvd-dev-ew-github-actions", + runner_group = "229685449397" + } + ) + } + ] : [], + # Add any custom managed_extra_files defined in the variable + try(each.value.managed_extra_files, []) + ) +} + +# Import existing repositories that need to be managed by Terraform +import { + for_each = { for repo in var.repolist : repo.name => repo if lookup(repo, "import", false) } + to = module.repo_list[each.key].github_repository.repo + id = each.value.name } diff --git a/rm.sh b/rm.sh new file mode 100644 index 0000000..37c7297 --- /dev/null +++ b/rm.sh @@ -0,0 +1,39 @@ +#!/bin/bash + +# Script to remove resources from Terraform state that would be destroyed +# Uses tf alias for terraform and logs failures + +echo "Removing file resources from Terraform state that would be destroyed..." + +# Function to remove a resource from state and log if it fails +remove_from_state() { + resource=$1 + if tf state rm "$resource" 2>/dev/null; then + echo "✓ Successfully removed: $resource" + else + echo "✗ Failed to remove: $resource (resource may not exist in state)" + fi +} + +# Template SHA files for Elastic Beanstalk repositories +remove_from_state 'module.repo_list["aws-beanstalk-docker"].github_repository_file.extra_files[".TEMPLATE_SHA"]' +remove_from_state 'module.repo_list["aws-beanstalk-java"].github_repository_file.extra_files[".TEMPLATE_SHA"]' +remove_from_state 'module.repo_list["aws-beanstalk-nodejs"].github_repository_file.extra_files[".TEMPLATE_SHA"]' +remove_from_state 'module.repo_list["aws-beanstalk-php"].github_repository_file.extra_files[".TEMPLATE_SHA"]' + +# Workflow files for image pipeline repositories +remove_from_state 'module.repo_list["aws-image-pipeline"].github_repository_file.managed_extra_files["terraform-apply.yaml"]' +remove_from_state 'module.repo_list["aws-image-pipeline"].github_repository_file.managed_extra_files["terraform-plan.yaml"]' + +remove_from_state 'module.repo_list["docker-image-pipeline"].github_repository_file.managed_extra_files["s3_upload.yaml"]' +remove_from_state 'module.repo_list["image-pipeline-ansible-playbooks"].github_repository_file.managed_extra_files["s3_upload.yaml"]' +remove_from_state 'module.repo_list["image-pipeline-packer"].github_repository_file.managed_extra_files["s3_upload.yaml"]' + +# Morpheus clouds workflow files +remove_from_state 'module.repo_list["morpheus-clouds"].github_repository_file.managed_extra_files["terraform-apply.yaml"]' +remove_from_state 'module.repo_list["morpheus-clouds"].github_repository_file.managed_extra_files["terraform-plan.yaml"]' + +# Special case for collaborator +remove_from_state 'module.repo_list["morpheus-clouds"].github_repository_collaborator.collaborators["arnol377"]' + +echo "Completed removing resources from state." diff --git a/terraform_data_dirs/sct-engineering/environment b/terraform_data_dirs/sct-engineering/environment new file mode 100644 index 0000000..456fbda --- /dev/null +++ b/terraform_data_dirs/sct-engineering/environment @@ -0,0 +1 @@ +sct-engineering \ No newline at end of file diff --git a/terraform_data_dirs/sct-engineering/modules/imported_repos b/terraform_data_dirs/sct-engineering/modules/imported_repos new file mode 160000 index 0000000..9b97328 --- /dev/null +++ b/terraform_data_dirs/sct-engineering/modules/imported_repos @@ -0,0 +1 @@ +Subproject commit 9b97328d792e999451c49f718e944b796e99234a diff --git a/terraform_data_dirs/sct-engineering/modules/imported_repos.internal_github_actions b/terraform_data_dirs/sct-engineering/modules/imported_repos.internal_github_actions new file mode 160000 index 0000000..5e34ff0 --- /dev/null +++ b/terraform_data_dirs/sct-engineering/modules/imported_repos.internal_github_actions @@ -0,0 +1 @@ +Subproject commit 5e34ff086b559cbfd50a33352d41974077c06c7f diff --git a/terraform_data_dirs/sct-engineering/modules/modules.json b/terraform_data_dirs/sct-engineering/modules/modules.json new file mode 100644 index 0000000..5d31b07 --- /dev/null +++ b/terraform_data_dirs/sct-engineering/modules/modules.json @@ -0,0 +1 @@ +{"Modules":[{"Key":"","Source":"","Dir":"."},{"Key":"imported_repos","Source":"registry.terraform.io/HappyPathway/gh-actions/importer","Version":"0.0.34","Dir":"/data/terraform/workspaces/arnol377/git/automation-repos/terraform_data_dirs/sct-engineering/modules/imported_repos"},{"Key":"imported_repos.internal_github_actions","Source":"registry.terraform.io/HappyPathway/repo/github","Version":"1.0.78","Dir":"/data/terraform/workspaces/arnol377/git/automation-repos/terraform_data_dirs/sct-engineering/modules/imported_repos.internal_github_actions"},{"Key":"repo_list","Source":"registry.terraform.io/HappyPathway/repo/github","Version":"1.0.78","Dir":"/data/terraform/workspaces/arnol377/git/automation-repos/terraform_data_dirs/sct-engineering/modules/repo_list"},{"Key":"sandbox","Source":"registry.terraform.io/HappyPathway/repo/github","Version":"1.0.78","Dir":"/data/terraform/workspaces/arnol377/git/automation-repos/terraform_data_dirs/sct-engineering/modules/sandbox"}]} \ No newline at end of file diff --git a/terraform_data_dirs/sct-engineering/modules/repo_list/CODEOWNERS b/terraform_data_dirs/sct-engineering/modules/repo_list/CODEOWNERS new file mode 100644 index 0000000..b3ac177 --- /dev/null +++ b/terraform_data_dirs/sct-engineering/modules/repo_list/CODEOWNERS @@ -0,0 +1,3 @@ +#### How to use this file: https://help.github.com/en/github/creating-cloning-and-archiving-repositories/about-code-owners +# These owners will be the default owners for everything in the repo. Unless a later match takes precedence +* @RoknSound-Public-Modules/terraform-reviewers diff --git a/terraform_data_dirs/sct-engineering/modules/repo_list/README.md b/terraform_data_dirs/sct-engineering/modules/repo_list/README.md new file mode 100644 index 0000000..bf965f4 --- /dev/null +++ b/terraform_data_dirs/sct-engineering/modules/repo_list/README.md @@ -0,0 +1,373 @@ +# Terraform GitHub Repository Module + +A comprehensive Terraform module for managing GitHub repositories with advanced features like branch protection, file management, team access control, and deployment keys. You can use this module to create new repositories or manage existing ones. + +## Features +- Create new repositories or manage existing ones +- Complete GitHub repository management +- Branch protection rules +- File content management +- Team access configuration +- Action secrets management +- Repository collaborator management +- Deploy key management +- Automated README generation +- Issue management + +## Usage + +### Creating a New Repository +```hcl +module "new_repository" { + source = "HappyPathway/repo/github" + + name = "my-repository" + repo_org = "MyOrganization" + create_repo = true # Default, can be omitted + force_name = true + github_repo_description = "Repository description" + github_repo_topics = ["terraform", "automation"] + github_is_private = false +} +``` + +### Managing an Existing Repository +```hcl +module "existing_repository" { + source = "HappyPathway/repo/github" + + name = "existing-repository" + repo_org = "MyOrganization" + create_repo = false # Tell Terraform to manage existing repository + + # All other settings will be applied to the existing repository + github_repo_topics = ["managed", "terraform"] + github_has_issues = true +} +``` + +### Basic Repository + +```hcl +module "basic_repo" { + source = "HappyPathway/repo/github" + + name = "my-project" + repo_org = "MyOrganization" +} +``` + +### Repository with Protected Branches + +```hcl +module "protected_repo" { + source = "HappyPathway/repo/github" + + name = "protected-project" + repo_org = "MyOrganization" + + branch_protections = { + main = { + required_status_checks = true + enforce_admins = true + required_reviews = 2 + } + } +} +``` + +### Repository with Managed Files + +```hcl +module "managed_repo" { + source = "HappyPathway/repo/github" + + name = "managed-project" + repo_org = "MyOrganization" + + managed_extra_files = { + "README.md" = { + content = file("${path.module}/templates/readme.md") + overwrite = true + } + "CONTRIBUTING.md" = { + content = file("${path.module}/templates/contributing.md") + overwrite = false + } + } +} +``` + +### Repository with Deploy Keys + +```hcl +module "repo_with_deploy_keys" { + source = "HappyPathway/repo/github" + + name = "my-project-with-deploy-keys" + repo_org = "MyOrganization" + + deploy_keys = [ + { + title = "CI Server Key" + key = "ssh-rsa AAAAB3NzaC1yc2EAAA..." + read_only = true # Default is true, can be omitted + }, + { + title = "Deploy Server Key" + key = "ssh-rsa AAAAB3NzaC1yc2EBBB..." + read_only = false # Write access for deployment + } + ] +} +``` + +## Inputs + +| Name | Description | Type | Required | Default | +|------|-------------|------|----------|---------| +| name | Repository name | string | Yes | - | +| repo_org | GitHub organization name | string | No | null | +| create_repo | Whether to create a new repository or manage existing | bool | No | true | +| force_name | Keep exact repository name (no date suffix) | bool | No | false | +| github_repo_description | Repository description | string | No | null | +| github_repo_topics | Repository topics | list(string) | No | [] | +| github_is_private | Make repository private | bool | No | true | +| // ...other inputs... | + +## Outputs + +| Name | Description | +|------|-------------| +| github_repo | All repository attributes (see details below) | +| ssh_clone_url | SSH clone URL | +| node_id | Repository node ID for GraphQL | +| full_name | Full repository name (org/repo) | +| repo_id | Repository ID | +| html_url | Repository web URL | +| http_clone_url | HTTPS clone URL | +| git_clone_url | Git protocol clone URL | +| visibility | Repository visibility (public/private) | +| default_branch | Default branch name | +| topics | Repository topics | +| template | Template repository info | + +### Complete Repository Attributes + +The `github_repo` output includes: + +Basic Info: +- `name` - Repository name +- `full_name` - Full repository name (org/repo) +- `description` - Repository description +- `html_url` - GitHub web URL +- `ssh_clone_url` - SSH clone URL +- `http_clone_url` - HTTPS clone URL +- `git_clone_url` - Git protocol URL +- `visibility` - Public or private status + +Settings: +- `topics` - Repository topics +- `has_issues` - Issue tracking enabled +- `has_projects` - Project boards enabled +- `has_wiki` - Wiki enabled +- `is_template` - Template repository status +- `allow_merge_commit` - Merge commit allowed +- `allow_squash_merge` - Squash merge allowed +- `allow_rebase_merge` - Rebase merge allowed +- `allow_auto_merge` - Auto-merge enabled +- `delete_branch_on_merge` - Branch deletion on merge + +Additional Info: +- `default_branch` - Default branch name +- `archived` - Archive status +- `homepage_url` - Homepage URL if set +- `vulnerability_alerts` - Vulnerability alerts status +- `template` - Template repository details if used +- `gitignore_template` - .gitignore template if used +- `license_template` - License template if used + +## Limitations and Important Notes + +### Managing Existing Repositories +When managing existing repositories (`create_repo = false`): +- The repository must already exist in the specified organization +- You must have admin access to the repository +- Some settings may be read-only if they were set during repository creation +- Initial repository settings (like `auto_init`) are ignored +- Branch protection rules can only be added, not removed + +### Error Cases +The module will fail if: +- When `create_repo = false` and the repository doesn't exist +- When `create_repo = false` and `repo_org` is not specified +- When trying to manage a repository you don't have admin access to +- When applying branch protection rules to a private repository without a GitHub Enterprise plan + +### Best Practices +1. When managing existing repositories: + - Start with `create_repo = false` and minimal settings + - Gradually add configuration to avoid conflicts + - Use `terraform plan` to verify changes + - Consider using `lifecycle` blocks to ignore specific attributes + +2. For new repositories: + - Use `create_repo = true` (default) + - Set `force_name = true` to maintain consistent naming + - Configure all settings during initial creation + +## Testing + +This module includes automated tests that verify: +- Repository creation +- Data source lookups for existing repositories +- All output attributes + +Run the tests using: +```bash +terraform test +``` + +## Contributing + +1. Fork the repository +2. Create a feature branch +3. Commit your changes +4. Push to the branch +5. Create a Pull Request + +## License + +MIT License - see [LICENSE](LICENSE) for details + + +[![Terraform Validation](https://github.com/HappyPathway/terraform-github-repo/actions/workflows/terraform.yaml/badge.svg)](https://github.com/HappyPathway/terraform-github-repo/actions/workflows/terraform.yaml) + + +[![Modtest Dev](https://github.com/HappyPathway/terraform-github-repo/actions/workflows/modtest-dev.yaml/badge.svg)](https://github.com/HappyPathway/terraform-github-repo/actions/workflows/modtest-dev.yaml) + + +## Requirements + +No requirements. + +## Providers + +| Name | Version | +|------|---------| +| [github](#provider\_github) | 6.6.0 | + +## Modules + +No modules. + +## Resources + +| Name | Type | +|------|------| +| [github_actions_environment_secret.environment_secrets](https://registry.terraform.io/providers/integrations/github/latest/docs/resources/actions_environment_secret) | resource | +| [github_actions_environment_variable.environment_variables](https://registry.terraform.io/providers/integrations/github/latest/docs/resources/actions_environment_variable) | resource | +| [github_actions_secret.secret](https://registry.terraform.io/providers/integrations/github/latest/docs/resources/actions_secret) | resource | +| [github_actions_variable.variable](https://registry.terraform.io/providers/integrations/github/latest/docs/resources/actions_variable) | resource | +| [github_branch.branch](https://registry.terraform.io/providers/integrations/github/latest/docs/resources/branch) | resource | +| [github_branch_default.default_main_branch](https://registry.terraform.io/providers/integrations/github/latest/docs/resources/branch_default) | resource | +| [github_branch_protection.protection](https://registry.terraform.io/providers/integrations/github/latest/docs/resources/branch_protection) | resource | +| [github_repository.repo](https://registry.terraform.io/providers/integrations/github/latest/docs/resources/repository) | resource | +| [github_repository_collaborator.collaborators](https://registry.terraform.io/providers/integrations/github/latest/docs/resources/repository_collaborator) | resource | +| [github_repository_environment.environments](https://registry.terraform.io/providers/integrations/github/latest/docs/resources/repository_environment) | resource | +| [github_repository_file.codeowners](https://registry.terraform.io/providers/integrations/github/latest/docs/resources/repository_file) | resource | +| [github_repository_file.extra_files](https://registry.terraform.io/providers/integrations/github/latest/docs/resources/repository_file) | resource | +| [github_repository_file.managed_extra_files](https://registry.terraform.io/providers/integrations/github/latest/docs/resources/repository_file) | resource | +| [github_team_repository.admin](https://registry.terraform.io/providers/integrations/github/latest/docs/resources/team_repository) | resource | +| [github_organization_teams.root_teams](https://registry.terraform.io/providers/integrations/github/latest/docs/data-sources/organization_teams) | data source | +| [github_repository.existing](https://registry.terraform.io/providers/integrations/github/latest/docs/data-sources/repository) | data source | +| [github_team.admin_teams](https://registry.terraform.io/providers/integrations/github/latest/docs/data-sources/team) | data source | +| [github_team.environment_teams](https://registry.terraform.io/providers/integrations/github/latest/docs/data-sources/team) | data source | +| [github_user.collaborators](https://registry.terraform.io/providers/integrations/github/latest/docs/data-sources/user) | data source | +| [github_user.environment_users](https://registry.terraform.io/providers/integrations/github/latest/docs/data-sources/user) | data source | +| [github_user.pull_request_bypassers](https://registry.terraform.io/providers/integrations/github/latest/docs/data-sources/user) | data source | + +## Inputs + +| Name | Description | Type | Default | Required | +|------|-------------|------|---------|:--------:| +| [additional\_codeowners](#input\_additional\_codeowners) | Additional entries for CODEOWNERS file | `list(string)` | `[]` | no | +| [admin\_teams](#input\_admin\_teams) | Teams to grant admin access | `list(string)` | `[]` | no | +| [allow\_unsigned\_files](#input\_allow\_unsigned\_files) | Whether to allow file management even when signed commits are required | `bool` | `false` | no | +| [archive\_on\_destroy](#input\_archive\_on\_destroy) | Archive repository instead of deleting on destroy | `bool` | `true` | no | +| [archived](#input\_archived) | Archive this repository | `bool` | `false` | no | +| [collaborators](#input\_collaborators) | Map of collaborators and their permission levels | `map(string)` | `{}` | no | +| [commit\_author](#input\_commit\_author) | The author name to use for file commits | `string` | `"Terraform"` | no | +| [commit\_email](#input\_commit\_email) | The email to use for file commits | `string` | `"terraform@roknsound.com"` | no | +| [create\_codeowners](#input\_create\_codeowners) | Create CODEOWNERS file | `bool` | `true` | no | +| [create\_repo](#input\_create\_repo) | Whether to create a new repository or manage an existing one | `bool` | `true` | no | +| [enforce\_prs](#input\_enforce\_prs) | Enforce pull request reviews | `bool` | `true` | no | +| [environments](#input\_environments) | List of GitHub environments to create for the repository |
list(object({
name = string
reviewers = optional(object({
teams = optional(list(string), [])
users = optional(list(string), [])
}), {})
deployment_branch_policy = optional(object({
protected_branches = optional(bool, true)
custom_branch_policies = optional(bool, false)
}), {})
secrets = optional(list(object({
name = string
value = string
})), [])
vars = optional(list(object({
name = string
value = string
})), [])
}))
| `[]` | no | +| [extra\_files](#input\_extra\_files) | Additional files to create in the repository |
list(object({
path = string
content = string
}))
| `[]` | no | +| [force\_name](#input\_force\_name) | Keep exact repository name (no date suffix) | `bool` | `false` | no | +| [github\_allow\_auto\_merge](#input\_github\_allow\_auto\_merge) | Allow pull requests to be automatically merged | `bool` | `false` | no | +| [github\_allow\_merge\_commit](#input\_github\_allow\_merge\_commit) | Allow merge commits | `bool` | `false` | no | +| [github\_allow\_rebase\_merge](#input\_github\_allow\_rebase\_merge) | Allow rebase merging | `bool` | `false` | no | +| [github\_allow\_squash\_merge](#input\_github\_allow\_squash\_merge) | Allow squash merging | `bool` | `true` | no | +| [github\_allow\_update\_branch](#input\_github\_allow\_update\_branch) | Allow updating pull request branches | `bool` | `true` | no | +| [github\_auto\_init](#input\_github\_auto\_init) | Initialize repository with README | `bool` | `true` | no | +| [github\_codeowners\_team](#input\_github\_codeowners\_team) | n/a | `string` | `"terraform-reviewers"` | no | +| [github\_default\_branch](#input\_github\_default\_branch) | Default branch name | `string` | `"main"` | no | +| [github\_delete\_branch\_on\_merge](#input\_github\_delete\_branch\_on\_merge) | Delete head branch after merge | `bool` | `true` | no | +| [github\_dismiss\_stale\_reviews](#input\_github\_dismiss\_stale\_reviews) | Dismiss stale pull request approvals | `bool` | `true` | no | +| [github\_enforce\_admins\_branch\_protection](#input\_github\_enforce\_admins\_branch\_protection) | Enforce branch protection rules on administrators | `bool` | `true` | no | +| [github\_has\_discussions](#input\_github\_has\_discussions) | Enable discussions feature | `bool` | `false` | no | +| [github\_has\_downloads](#input\_github\_has\_downloads) | Enable downloads feature | `bool` | `false` | no | +| [github\_has\_issues](#input\_github\_has\_issues) | Enable issues feature | `bool` | `false` | no | +| [github\_has\_projects](#input\_github\_has\_projects) | Enable projects feature | `bool` | `true` | no | +| [github\_has\_wiki](#input\_github\_has\_wiki) | Enable wiki feature | `bool` | `true` | no | +| [github\_is\_private](#input\_github\_is\_private) | Make repository private | `bool` | `true` | no | +| [github\_merge\_commit\_message](#input\_github\_merge\_commit\_message) | Message for merge commits | `string` | `"PR_TITLE"` | no | +| [github\_merge\_commit\_title](#input\_github\_merge\_commit\_title) | Title for merge commits | `string` | `"MERGE_MESSAGE"` | no | +| [github\_org\_teams](#input\_github\_org\_teams) | Organization teams configuration | `list(any)` | `null` | no | +| [github\_pro\_enabled](#input\_github\_pro\_enabled) | Is this a Github Pro Account? If not, then it's limited in feature set | `bool` | `false` | no | +| [github\_push\_restrictions](#input\_github\_push\_restrictions) | List of team/user IDs with push access | `list(string)` | `[]` | no | +| [github\_repo\_description](#input\_github\_repo\_description) | Repository description | `string` | `null` | no | +| [github\_repo\_topics](#input\_github\_repo\_topics) | Repository topics | `list(string)` | `[]` | no | +| [github\_require\_code\_owner\_reviews](#input\_github\_require\_code\_owner\_reviews) | Require code owner review | `bool` | `true` | no | +| [github\_required\_approving\_review\_count](#input\_github\_required\_approving\_review\_count) | Number of approvals needed for pull requests | `number` | `1` | no | +| [github\_squash\_merge\_commit\_message](#input\_github\_squash\_merge\_commit\_message) | Message for squash merge commits | `string` | `"COMMIT_MESSAGES"` | no | +| [github\_squash\_merge\_commit\_title](#input\_github\_squash\_merge\_commit\_title) | Title for squash merge commits | `string` | `"COMMIT_OR_PR_TITLE"` | no | +| [gitignore\_template](#input\_gitignore\_template) | Gitignore template to use | `string` | `null` | no | +| [homepage\_url](#input\_homepage\_url) | Repository homepage URL | `string` | `null` | no | +| [is\_template](#input\_is\_template) | Make this repository a template | `bool` | `false` | no | +| [license\_template](#input\_license\_template) | License template to use for the repository | `string` | `null` | no | +| [managed\_extra\_files](#input\_managed\_extra\_files) | Additional files to manage in the repository |
list(object({
path = string
content = string
}))
| `[]` | no | +| [name](#input\_name) | Name of the repository | `string` | n/a | yes | +| [pages\_config](#input\_pages\_config) | Configuration for GitHub Pages |
object({
branch = optional(string, "gh-pages")
path = optional(string, "/")
cname = optional(string)
})
| `null` | no | +| [prefix](#input\_prefix) | Prefix to add to repository name | `string` | `null` | no | +| [pull\_request\_bypassers](#input\_pull\_request\_bypassers) | Users/teams that can bypass pull request requirements | `list(string)` | `[]` | no | +| [repo\_org](#input\_repo\_org) | GitHub organization name | `string` | `null` | no | +| [require\_last\_push\_approval](#input\_require\_last\_push\_approval) | Require approval from the last pusher | `bool` | `false` | no | +| [require\_signed\_commits](#input\_require\_signed\_commits) | Whether to require signed commits for the default branch | `bool` | `false` | no | +| [required\_status\_checks](#input\_required\_status\_checks) | Required status checks for protected branches |
object({
contexts = list(string)
strict = optional(bool, false)
})
| `null` | no | +| [secrets](#input\_secrets) | GitHub Actions secrets |
list(object({
name = string
value = string
}))
| `[]` | no | +| [security\_and\_analysis](#input\_security\_and\_analysis) | Security and analysis settings for the repository |
object({
advanced_security = optional(object({
status = string
}), { status = "disabled" })
secret_scanning = optional(object({
status = string
}), { status = "disabled" })
secret_scanning_push_protection = optional(object({
status = string
}), { status = "disabled" })
})
| `null` | no | +| [template\_repo](#input\_template\_repo) | Template repository name | `string` | `null` | no | +| [template\_repo\_org](#input\_template\_repo\_org) | Template repository organization | `string` | `null` | no | +| [vars](#input\_vars) | GitHub Actions variables |
list(object({
name = string
value = string
}))
| `[]` | no | +| [vulnerability\_alerts](#input\_vulnerability\_alerts) | Enable Dependabot alerts | `bool` | `false` | no | +| [deploy\_keys](#input\_deploy\_keys) | List of SSH deploy keys to add to the repository |
list(object({
title = string
key = string
read_only = optional(bool, true)
}))
| `[]` | no | + +## Outputs + +| Name | Description | +|------|-------------| +| [default\_branch](#output\_default\_branch) | Default branch of the repository | +| [full\_name](#output\_full\_name) | Full name of the repository in org/repo format | +| [git\_clone\_url](#output\_git\_clone\_url) | URL that can be provided to git clone to clone the repository anonymously via the git protocol | +| [github\_repo](#output\_github\_repo) | All attributes of the GitHub repository | +| [html\_url](#output\_html\_url) | URL to the repository on GitHub | +| [http\_clone\_url](#output\_http\_clone\_url) | URL that can be provided to git clone to clone the repository via HTTPS | +| [node\_id](#output\_node\_id) | Node ID of the repository, used for GraphQL API access | +| [repo\_id](#output\_repo\_id) | Repository ID | +| [ssh\_clone\_url](#output\_ssh\_clone\_url) | URL that can be provided to git clone to clone the repository via SSH | +| [template](#output\_template) | Template repository this repository was created from | +| [topics](#output\_topics) | List of topics applied to the repository | +| [visibility](#output\_visibility) | Whether the repository is private or public | + diff --git a/terraform_data_dirs/sct-engineering/modules/repo_list/action_secrets.tf b/terraform_data_dirs/sct-engineering/modules/repo_list/action_secrets.tf new file mode 100644 index 0000000..b0c503c --- /dev/null +++ b/terraform_data_dirs/sct-engineering/modules/repo_list/action_secrets.tf @@ -0,0 +1,15 @@ +resource "github_actions_secret" "secret" { + for_each = tomap({ for secret in var.secrets : secret.name => secret.value }) + repository = local.github_repo.name + secret_name = each.key + plaintext_value = each.value + depends_on = [local.github_repo] +} + +resource "github_actions_variable" "variable" { + for_each = tomap({ for _var in var.vars : _var.name => _var.value }) + repository = local.github_repo.name + variable_name = each.key + value = each.value + depends_on = [local.github_repo] +} diff --git a/terraform_data_dirs/sct-engineering/modules/repo_list/branch_protection.tf b/terraform_data_dirs/sct-engineering/modules/repo_list/branch_protection.tf new file mode 100644 index 0000000..344bbd3 --- /dev/null +++ b/terraform_data_dirs/sct-engineering/modules/repo_list/branch_protection.tf @@ -0,0 +1,57 @@ +locals { + branch_protection_rules = merge( + var.enforce_prs == true ? { + main = { + pattern = var.github_default_branch + enforce_admins = var.github_enforce_admins_branch_protection + allows_deletions = false + require_signed_commits = var.require_signed_commits + required_linear_history = true + required_status_checks = var.required_status_checks + required_pull_request_reviews = { + dismiss_stale_reviews = var.github_dismiss_stale_reviews + require_code_owner_reviews = var.github_require_code_owner_reviews + required_approving_review_count = var.github_required_approving_review_count + pull_request_bypassers = var.pull_request_bypassers + } + } + } : {} + ) +} + +# https://registry.terraform.io/providers/integrations/github/latest/docs/resources/branch_protection +resource "github_branch_protection" "protection" { + for_each = { + for k, v in local.branch_protection_rules : k => v if var.enforce_prs && (!var.github_is_private || var.github_pro_enabled) + } + + repository_id = var.create_repo ? github_repository.repo[0].node_id : data.github_repository.existing[0].node_id + pattern = each.key + + enforce_admins = var.github_enforce_admins_branch_protection + required_linear_history = true + allows_force_pushes = false + allows_deletions = false + require_signed_commits = var.require_signed_commits + + required_pull_request_reviews { + required_approving_review_count = var.github_required_approving_review_count + dismiss_stale_reviews = var.github_dismiss_stale_reviews + require_code_owner_reviews = var.github_require_code_owner_reviews + require_last_push_approval = var.require_last_push_approval + } + + dynamic "required_status_checks" { + for_each = var.required_status_checks != null ? ["true"] : [] + content { + strict = try(var.required_status_checks.strict, true) + contexts = try(var.required_status_checks.contexts, []) + } + } + + depends_on = [ + github_repository.repo, + github_branch.branch, + github_branch_default.default_main_branch + ] +} \ No newline at end of file diff --git a/terraform_data_dirs/sct-engineering/modules/repo_list/collaborators.tf b/terraform_data_dirs/sct-engineering/modules/repo_list/collaborators.tf new file mode 100644 index 0000000..ae4a1f2 --- /dev/null +++ b/terraform_data_dirs/sct-engineering/modules/repo_list/collaborators.tf @@ -0,0 +1,27 @@ +locals { + # Permission mapping for collaborator roles + permission_map = { + "pull" = "read" + "triage" = "triage" + "push" = "write" + "maintain" = "maintain" + "admin" = "admin" + } +} + +data "github_user" "collaborators" { + for_each = var.collaborators + username = each.key +} + +# Add a collaborator to a repository +resource "github_repository_collaborator" "collaborators" { + for_each = tomap(var.collaborators) + repository = local.github_repo.name + username = each.key + permission = local.permission_map[each.value] + + depends_on = [ + data.github_user.collaborators + ] +} diff --git a/terraform_data_dirs/sct-engineering/modules/repo_list/data.tf b/terraform_data_dirs/sct-engineering/modules/repo_list/data.tf new file mode 100644 index 0000000..7695660 --- /dev/null +++ b/terraform_data_dirs/sct-engineering/modules/repo_list/data.tf @@ -0,0 +1,8 @@ +locals { + codeowners = length(var.additional_codeowners) > 0 ? flatten(["${var.repo_org}/${var.github_codeowners_team}", formatlist("${var.repo_org}/%s", var.additional_codeowners)]) : ["${var.repo_org}/${var.github_codeowners_team}"] +} + +data "github_repository" "existing" { + count = var.create_repo ? 0 : 1 + full_name = "${var.repo_org}/${var.name}" +} diff --git a/terraform_data_dirs/sct-engineering/modules/repo_list/environment.tf b/terraform_data_dirs/sct-engineering/modules/repo_list/environment.tf new file mode 100644 index 0000000..256de11 --- /dev/null +++ b/terraform_data_dirs/sct-engineering/modules/repo_list/environment.tf @@ -0,0 +1,72 @@ +data "github_team" "environment_teams" { + for_each = toset(flatten([ + for env in var.environments : + try(coalesce(env.reviewers.teams, []), []) + ])) + slug = each.value # Look up teams by slug (name) instead of ID +} + +data "github_user" "environment_users" { + for_each = toset(flatten([ + for env in var.environments : + try(coalesce(env.reviewers.users, []), []) + ])) + username = each.value +} + +resource "github_repository_environment" "environments" { + for_each = { for env in var.environments : env.name => env } + + environment = each.value.name + repository = github_repository.repo[0].name + reviewers { + teams = [for team_slug in try(each.value.reviewers.teams, []) : data.github_team.environment_teams[team_slug].id] + users = [for username in try(each.value.reviewers.users, []) : data.github_user.environment_users[username].id] + } + deployment_branch_policy { + protected_branches = try(each.value.deployment_branch_policy.protected_branches, true) + custom_branch_policies = try(each.value.deployment_branch_policy.custom_branch_policies, false) + } +} + +resource "github_actions_environment_secret" "environment_secrets" { + for_each = { + for pair in flatten([ + for env in var.environments : [ + for secret in coalesce(env.secrets, []) : { + env_name = env.name + name = secret.name + value = secret.value + } + ] + ]) : "${pair.env_name}.${pair.name}" => pair + } + + repository = github_repository.repo[0].name + environment = each.value.env_name + secret_name = each.value.name + plaintext_value = each.value.value + + depends_on = [github_repository_environment.environments] +} + +resource "github_actions_environment_variable" "environment_variables" { + for_each = { + for pair in flatten([ + for env in var.environments : [ + for _var in coalesce(env.vars, []) : { + env_name = env.name + name = _var.name + value = _var.value + } + ] + ]) : "${pair.env_name}.${pair.name}" => pair + } + + repository = github_repository.repo[0].name + environment = each.value.env_name + variable_name = each.value.name + value = each.value.value + + depends_on = [github_repository_environment.environments] +} \ No newline at end of file diff --git a/terraform_data_dirs/sct-engineering/modules/repo_list/github_branch.tf b/terraform_data_dirs/sct-engineering/modules/repo_list/github_branch.tf new file mode 100644 index 0000000..2e14d6c --- /dev/null +++ b/terraform_data_dirs/sct-engineering/modules/repo_list/github_branch.tf @@ -0,0 +1,33 @@ +# https://registry.terraform.io/providers/integrations/github/latest/docs/data-sources/team +# data "github_team" "github_codeowners_team" { +# slug = var.github_codeowners_team +# } + +# Create non-main default branch if specified +resource "github_branch" "branch" { + count = var.github_default_branch != "main" ? 1 : 0 + repository = local.github_repo.name + branch = var.github_default_branch + depends_on = [ + github_repository.repo + ] +} + +# Set the default branch +resource "github_branch_default" "default_main_branch" { + count = var.github_default_branch != "main" ? 1 : 0 + repository = local.github_repo.name + branch = var.github_default_branch + depends_on = [ + github_branch.branch + ] +} + +data "github_user" "pull_request_bypassers" { + for_each = toset(var.pull_request_bypassers) + username = each.value +} + +locals { + pull_request_bypassers = [for user in data.github_user.pull_request_bypassers : user.node_id] +} \ No newline at end of file diff --git a/terraform_data_dirs/sct-engineering/modules/repo_list/github_deploy_keys.tf b/terraform_data_dirs/sct-engineering/modules/repo_list/github_deploy_keys.tf new file mode 100644 index 0000000..76b7aa3 --- /dev/null +++ b/terraform_data_dirs/sct-engineering/modules/repo_list/github_deploy_keys.tf @@ -0,0 +1,14 @@ +// This file implements GitHub Deploy Keys functionality for the repository + +resource "github_repository_deploy_key" "deploy_key" { + for_each = { for k, v in var.deploy_keys : k => v } + + title = each.value.title + repository = local.github_repo.name + key = each.value.key + read_only = each.value.read_only + + depends_on = [ + github_repository.repo + ] +} \ No newline at end of file diff --git a/terraform_data_dirs/sct-engineering/modules/repo_list/github_files.tf b/terraform_data_dirs/sct-engineering/modules/repo_list/github_files.tf new file mode 100644 index 0000000..e4dee3a --- /dev/null +++ b/terraform_data_dirs/sct-engineering/modules/repo_list/github_files.tf @@ -0,0 +1,98 @@ +locals { + # Process files only if commit signing is not required or if explicitly allowed + should_manage_files = !try(local.github_repo.require_signed_commits, false) || var.allow_unsigned_files +} + +# https://registry.terraform.io/providers/integrations/github/latest/docs/resources/repository_file +resource "github_repository_file" "codeowners" { + count = var.create_codeowners && local.should_manage_files ? 1 : 0 + + repository = local.github_repo.name + branch = var.github_default_branch + file = "CODEOWNERS" + content = templatefile("${path.module}/templates/CODEOWNERS", { codeowners = local.codeowners }) + commit_message = "Update CODEOWNERS file" + commit_author = var.commit_author + commit_email = var.commit_email + overwrite_on_create = true + depends_on = [ + github_repository.repo, + github_branch_protection.protection + ] + lifecycle { + ignore_changes = [ + content, + branch + ] + } +} + +# data "github_repository" "template_repo" { +# count = var.template_repo == null && var.template_repo_org == var.repo_org ? 0 : 1 +# full_name = "${var.template_repo_org == null ? "" : var.template_repo_org}/${var.template_repo == null ? "" : var.template_repo}" +# } + +# data "github_ref" "ref" { +# count = var.template_repo == null && var.template_repo_org == var.repo_org ? 0 : 1 +# owner = var.template_repo_org +# repository = var.template_repo +# ref = "heads/${element(data.github_repository.template_repo, 0).default_branch}" +# } + +locals { + extra_files = concat( + var.extra_files, + # var.template_repo == null && var.template_repo_org == var.repo_org ? [] : [ + # { + # path = ".TEMPLATE_SHA", + # content = data.github_ref.ref[0].sha + # } + # ] + ) + repository_name = var.create_repo ? local.github_repo.name : var.name +} + +resource "github_repository_file" "extra_files" { + for_each = local.should_manage_files ? tomap({ for file in local.extra_files : "${element(split("/", file.path), length(split("/", file.path)) - 1)}" => file }) : {} + + repository = local.github_repo.name + branch = var.github_default_branch + file = each.value.path + content = each.value.content + commit_message = "Update ${each.value.path}" + commit_author = var.commit_author + commit_email = var.commit_email + overwrite_on_create = true + depends_on = [ + github_repository.repo, + github_branch_protection.protection + ] + lifecycle { + ignore_changes = [ + content, + branch + ] + } +} + +resource "github_repository_file" "managed_extra_files" { + for_each = local.should_manage_files ? tomap({ for file in var.managed_extra_files : "${element(split("/", file.path), length(split("/", file.path)) - 1)}" => file }) : {} + + repository = local.github_repo.name + branch = var.github_default_branch + file = each.value.path + content = each.value.content + commit_message = "Update ${each.value.path}" + commit_author = var.commit_author + commit_email = var.commit_email + overwrite_on_create = true + depends_on = [ + github_repository.repo, + github_branch_protection.protection + ] + lifecycle { + ignore_changes = [ + branch + ] + } +} diff --git a/terraform_data_dirs/sct-engineering/modules/repo_list/github_repo.tf b/terraform_data_dirs/sct-engineering/modules/repo_list/github_repo.tf new file mode 100644 index 0000000..514adff --- /dev/null +++ b/terraform_data_dirs/sct-engineering/modules/repo_list/github_repo.tf @@ -0,0 +1,93 @@ +locals { + repo_name = var.force_name ? var.name : "${var.name}-${formatdate("YYYYMMDD", timestamp())}" + + github_repo = var.create_repo ? github_repository.repo[0] : data.github_repository.existing[0] + + validate_merge_options = ( + var.github_allow_merge_commit || + var.github_allow_squash_merge || + var.github_allow_rebase_merge + ) ? null : file("ERROR: At least one merge option must be enabled") +} + +resource "github_repository" "repo" { + count = var.create_repo ? 1 : 0 + name = local.repo_name + description = var.github_repo_description + visibility = var.github_is_private ? "private" : "public" + has_issues = var.github_has_issues + has_projects = var.github_has_projects + has_wiki = var.github_has_wiki + has_downloads = var.github_has_downloads + auto_init = var.github_auto_init + archive_on_destroy = var.archive_on_destroy + archived = var.archived + vulnerability_alerts = var.vulnerability_alerts + topics = var.github_repo_topics + homepage_url = var.homepage_url + gitignore_template = var.gitignore_template + license_template = var.license_template + is_template = var.is_template + has_discussions = try(var.github_has_discussions, false) + merge_commit_title = try(var.github_merge_commit_title, "MERGE_MESSAGE") + merge_commit_message = try(var.github_merge_commit_message, "PR_TITLE") + squash_merge_commit_title = try(var.github_squash_merge_commit_title, "COMMIT_OR_PR_TITLE") + squash_merge_commit_message = try(var.github_squash_merge_commit_message, "COMMIT_MESSAGES") + allow_update_branch = try(var.github_allow_update_branch, true) + + allow_merge_commit = var.github_allow_merge_commit + allow_squash_merge = var.github_allow_squash_merge + allow_rebase_merge = var.github_allow_rebase_merge + allow_auto_merge = var.github_allow_auto_merge + delete_branch_on_merge = var.github_delete_branch_on_merge + + dynamic "template" { + for_each = var.template_repo == null ? [] : ["*"] + content { + owner = var.template_repo_org + repository = var.template_repo + } + } + + dynamic "security_and_analysis" { + for_each = var.security_and_analysis == null ? [] : ["*"] + content { + dynamic "advanced_security" { + for_each = try(var.security_and_analysis.advanced_security, null) == null ? [] : ["*"] + content { + status = var.security_and_analysis.advanced_security.status + } + } + dynamic "secret_scanning" { + for_each = try(var.security_and_analysis.secret_scanning, null) == null ? [] : ["*"] + content { + status = var.security_and_analysis.secret_scanning.status + } + } + dynamic "secret_scanning_push_protection" { + for_each = try(var.security_and_analysis.secret_scanning_push_protection, null) == null ? [] : ["*"] + content { + status = var.security_and_analysis.secret_scanning_push_protection.status + } + } + } + } + + dynamic "pages" { + for_each = var.pages_config == null ? [] : ["true"] + content { + source { + branch = try(var.pages_config.branch, "gh-pages") + path = try(var.pages_config.path, "/") + } + cname = try(var.pages_config.cname, null) + } + } + + lifecycle { + ignore_changes = [ + auto_init, + template + ] + } +} diff --git a/terraform_data_dirs/sct-engineering/modules/repo_list/github_repo.tftest.hcl b/terraform_data_dirs/sct-engineering/modules/repo_list/github_repo.tftest.hcl new file mode 100644 index 0000000..d551186 --- /dev/null +++ b/terraform_data_dirs/sct-engineering/modules/repo_list/github_repo.tftest.hcl @@ -0,0 +1,544 @@ +# valid_string_concat.tftest.hcl +variables { + name = "github-repo-test" + repo_org = "HappyPathway" + force_name = true + github_is_private = false + enforce_prs = false + archive_on_destroy = false + github_org_teams = [] + admin_teams = ["test-team"] + github_repo_description = "Test repository" + github_repo_topics = ["test", "terraform"] + create_repo = true + secrets = [ + { + name = "TEST_SECRET" + value = "secret-value" + } + ] + vars = [ + { + name = "TEST_VAR" + value = "test-value" + } + ] + extra_files = [ + { + path = "test.md" + content = "Test content" + } + ] +} + +# Test repository creation first +run "create_new_repository" { + command = apply +} + +# Then test repository data source +run "verify_data_source" { + variables { + create_repo = false + } + command = plan + assert { + condition = data.github_repository.existing[0].name == var.name + error_message = "Data source repository name does not match input" + } +} + +# Now test other components that depend on the repository existing +run "repo_tests" { + command = plan + assert { + condition = github_repository.repo[0].name == "github-repo-test" + error_message = "Github Repo name did not match expected" + } +} + +run "verify_branch_protection" { + variables { + github_default_branch = "main" + enforce_prs = true + github_is_private = false + github_required_approving_review_count = 2 + } + command = plan + assert { + condition = github_branch_protection.protection["main"].pattern == "main" + error_message = "Branch protection pattern should be main" + } + assert { + condition = github_branch_protection.protection["main"].required_pull_request_reviews[0].required_approving_review_count == 2 + error_message = "Should require 2 review approvals" + } +} + +# Test branch protection with different configurations +run "verify_branch_protection_with_strict_settings" { + variables { + github_default_branch = "main" + enforce_prs = true + github_is_private = false + github_required_approving_review_count = 2 + github_enforce_admins_branch_protection = true + github_dismiss_stale_reviews = true + github_require_code_owner_reviews = true + require_signed_commits = true + pull_request_bypassers = ["test-user"] + required_status_checks = { + strict = true + contexts = ["test/build", "test/lint"] + } + } + + command = plan + + assert { + condition = github_branch_protection.protection["main"].pattern == "main" + error_message = "Branch protection pattern should be main" + } + + assert { + condition = github_branch_protection.protection["main"].required_pull_request_reviews[0].required_approving_review_count == 2 + error_message = "Should require 2 review approvals" + } + + assert { + condition = github_branch_protection.protection["main"].enforce_admins == true + error_message = "Should enforce branch protection on admins" + } + + assert { + condition = github_branch_protection.protection["main"].required_pull_request_reviews[0].dismiss_stale_reviews == true + error_message = "Should dismiss stale reviews" + } + + assert { + condition = github_branch_protection.protection["main"].required_pull_request_reviews[0].require_code_owner_reviews == true + error_message = "Should require code owner reviews" + } + + assert { + condition = github_branch_protection.protection["main"].require_signed_commits == true + error_message = "Should require signed commits" + } + + assert { + condition = github_branch_protection.protection["main"].required_status_checks[0].strict == true + error_message = "Should require strict status checks" + } + + assert { + condition = length(github_branch_protection.protection["main"].required_status_checks[0].contexts) == 2 + error_message = "Should have exactly 2 required status check contexts" + } +} + +# Test edge cases for branch protection +run "verify_branch_protection_with_minimal_settings" { + variables { + enforce_prs = true + github_default_branch = "main" + github_required_approving_review_count = 0 + github_enforce_admins_branch_protection = false + github_dismiss_stale_reviews = false + github_require_code_owner_reviews = false + required_status_checks = null + } + + command = plan + + assert { + condition = github_branch_protection.protection["main"].required_pull_request_reviews[0].required_approving_review_count == 0 + error_message = "Should allow zero required approvals" + } + + assert { + condition = github_branch_protection.protection["main"].enforce_admins == false + error_message = "Should not enforce on admins when disabled" + } + + assert { + condition = length(github_branch_protection.protection["main"].required_status_checks) == 0 + error_message = "Should not have required status checks when null" + } +} + +# Test branch protection disabled +run "verify_branch_protection_disabled" { + variables { + enforce_prs = false + github_default_branch = "main" + } + + command = plan + + assert { + condition = length(keys(github_branch_protection.protection)) == 0 + error_message = "Branch protection should not be created when enforce_prs is false" + } +} + +run "verify_repository_files" { + command = plan + assert { + condition = github_repository_file.extra_files["test.md"].file == "test.md" + error_message = "Extra file should be created" + } + assert { + condition = github_repository_file.extra_files["test.md"].content == "Test content" + error_message = "Extra file content should match input" + } +} + +run "verify_team_access" { + command = plan + assert { + condition = github_team_repository.admin["test-team"].permission == "admin" + error_message = "Team should have admin access" + } +} + +run "verify_action_secrets" { + command = plan + assert { + condition = github_actions_secret.secret["TEST_SECRET"].secret_name == "TEST_SECRET" + error_message = "Action secret should be created" + } + assert { + condition = github_actions_variable.variable["TEST_VAR"].variable_name == "TEST_VAR" + error_message = "Action variable should be created" + } +} + +# Test repository visibility settings +run "verify_private_repository" { + variables { + github_is_private = true + github_repo_description = "Private repository test" + vulnerability_alerts = true + security_and_analysis = { + advanced_security = { + status = "enabled" + } + secret_scanning = { + status = "enabled" + } + secret_scanning_push_protection = { + status = "enabled" + } + } + } + + command = plan + + assert { + condition = github_repository.repo[0].visibility == "private" + error_message = "Repository should be private" + } + + assert { + condition = github_repository.repo[0].security_and_analysis[0].advanced_security[0].status == "enabled" + error_message = "Advanced security should be enabled for private repo" + } + + assert { + condition = github_repository.repo[0].vulnerability_alerts == true + error_message = "Vulnerability alerts should be enabled" + } +} + +run "verify_public_repository" { + variables { + github_is_private = false + github_repo_description = "Public repository test" + vulnerability_alerts = true + github_has_wiki = true + github_has_issues = true + github_has_projects = true + github_has_discussions = true + github_allow_merge_commit = true + github_allow_squash_merge = true + github_allow_rebase_merge = true + } + + command = plan + + assert { + condition = github_repository.repo[0].visibility == "public" + error_message = "Repository should be public" + } + + assert { + condition = github_repository.repo[0].has_wiki + error_message = "Wiki should be enabled for public repo" + } + + assert { + condition = github_repository.repo[0].has_issues + error_message = "Issues should be enabled for public repo" + } + + assert { + condition = github_repository.repo[0].has_projects + error_message = "Projects should be enabled for public repo" + } + + assert { + condition = github_repository.repo[0].has_discussions + error_message = "Discussions should be enabled for public repo" + } + + assert { + condition = github_repository.repo[0].allow_merge_commit + error_message = "Merge commits should be enabled for public repo" + } + + assert { + condition = github_repository.repo[0].allow_squash_merge + error_message = "Squash merges should be enabled for public repo" + } + + assert { + condition = github_repository.repo[0].allow_rebase_merge + error_message = "Rebase merges should be enabled for public repo" + } +} + +# Test visibility transitions +run "verify_visibility_transition_to_private" { + variables { + github_is_private = false + } + + command = plan + + assert { + condition = github_repository.repo[0].visibility == "public" + error_message = "Should be public" + } +} + +run "verify_visibility_transition_from_public" { + variables { + github_is_private = true + } + + command = plan + + assert { + condition = github_repository.repo[0].visibility == "private" + error_message = "Should transition to private" + } +} + +# Test security features based on visibility +run "verify_security_features_private" { + variables { + github_is_private = true + security_and_analysis = { + advanced_security = { + status = "enabled" + } + secret_scanning = { + status = "enabled" + } + } + } + + command = plan + + assert { + condition = github_repository.repo[0].security_and_analysis[0].advanced_security[0].status == "enabled" + error_message = "Advanced security should be available for private repo" + } +} + +run "verify_security_features_public" { + variables { + github_is_private = false + security_and_analysis = { + secret_scanning = { + status = "enabled" + } + } + } + + command = plan + + assert { + condition = github_repository.repo[0].security_and_analysis[0].advanced_security[0].status == "disabled" + error_message = "Advanced security should not be available for public repo" + } +} + +# Test archive behavior with branch protection +run "verify_archive_with_branch_protection" { + variables { + enforce_prs = true + archived = true + github_default_branch = "main" + } + + command = plan + + assert { + condition = github_repository.repo[0].archived == true + error_message = "Repository should be archived" + } +} + +run "verify_outputs" { + command = plan + assert { + condition = output.github_repo.name == var.name + error_message = "Output repository name does not match input" + } + assert { + condition = output.ssh_clone_url != "" + error_message = "SSH clone URL should not be empty" + } + assert { + condition = output.node_id != "" + error_message = "Node ID should not be empty" + } + assert { + condition = output.full_name != "" + error_message = "Full name should not be empty" + } + assert { + condition = output.repo_id != null + error_message = "Repository ID should not be null" + } + assert { + condition = output.html_url != "" + error_message = "HTML URL should not be empty" + } + assert { + condition = output.http_clone_url != "" + error_message = "HTTP clone URL should not be empty" + } + assert { + condition = output.git_clone_url != "" + error_message = "Git clone URL should not be empty" + } + assert { + condition = output.visibility == "public" + error_message = "Visibility should be public" + } + assert { + condition = output.default_branch == "main" + error_message = "Default branch should be 'main'" + } + assert { + condition = length(output.topics) == 2 + error_message = "Should have exactly 2 topics" + } +} + +# Test repository settings inheritance +run "verify_settings_inheritance" { + variables { + name = "test-inheritance" + repo_org = "TestOrg" + github_is_private = true + enforce_prs = true + github_required_approving_review_count = 2 + # Don't set other settings to test defaults + } + + command = plan + + assert { + condition = github_repository.repo[0].allow_squash_merge == true + error_message = "Should inherit default allow_squash_merge setting" + } + + assert { + condition = github_repository.repo[0].allow_merge_commit == false + error_message = "Should inherit default allow_merge_commit setting" + } + + assert { + condition = github_repository.repo[0].allow_rebase_merge == false + error_message = "Should inherit default allow_rebase_merge setting" + } + + assert { + condition = github_repository.repo[0].delete_branch_on_merge == true + error_message = "Should inherit default delete_branch_on_merge setting" + } +} + +# Test complete repository configuration +run "verify_complete_repository_config" { + variables { + name = "test-complete-config" + repo_org = "TestOrg" + github_is_private = false + github_repo_description = "Complete configuration test" + github_repo_topics = ["test", "complete", "config"] + github_has_issues = true + github_has_wiki = true + github_has_projects = true + github_has_discussions = true + github_auto_init = true + github_allow_merge_commit = true + github_allow_squash_merge = true + github_allow_rebase_merge = true + github_allow_auto_merge = true + github_default_branch = "main" + vulnerability_alerts = true + enforce_prs = true + github_required_approving_review_count = 2 + github_enforce_admins_branch_protection = true + require_signed_commits = true + security_and_analysis = { + advanced_security = { + status = "enabled" + } + secret_scanning = { + status = "enabled" + } + secret_scanning_push_protection = { + status = "enabled" + } + } + admin_teams = ["test-team"] # Changed from "admins" to match real team name + template_repo_org = "TestOrg" + template_repo = "template-repo" + } + + command = plan + + assert { + condition = alltrue([ + github_repository.repo[0].name == "test-complete-config", + github_repository.repo[0].has_issues == true, + github_repository.repo[0].has_wiki == true, + github_repository.repo[0].has_projects == true, + github_repository.repo[0].has_discussions == true, + github_repository.repo[0].allow_auto_merge == true, + github_repository.repo[0].visibility == "public", + github_repository.repo[0].vulnerability_alerts == true, + can(github_repository.repo[0].security_and_analysis[0].advanced_security[0].status) && + github_repository.repo[0].security_and_analysis[0].advanced_security[0].status == "enabled", + github_repository.repo[0].security_and_analysis[0].secret_scanning[0].status == "enabled", + github_repository.repo[0].security_and_analysis[0].secret_scanning_push_protection[0].status == "enabled" + ]) + error_message = "All repository settings should be applied correctly" + } + + assert { + condition = length(github_repository.repo[0].topics) == 3 + error_message = "Should have exactly 3 topics" + } + + assert { + condition = github_branch_protection.protection["main"].required_pull_request_reviews[0].required_approving_review_count == 2 + error_message = "Should require 2 approvals" + } +} + diff --git a/terraform_data_dirs/sct-engineering/modules/repo_list/github_team_access.tf b/terraform_data_dirs/sct-engineering/modules/repo_list/github_team_access.tf new file mode 100644 index 0000000..21e14bc --- /dev/null +++ b/terraform_data_dirs/sct-engineering/modules/repo_list/github_team_access.tf @@ -0,0 +1,35 @@ +# https://registry.terraform.io/providers/integrations/github/latest/docs/resources/repository +data "github_organization_teams" "root_teams" { + count = var.github_org_teams == null && var.repo_org != null ? 1 : 0 + root_teams_only = false +} + +data "github_team" "admin_teams" { + for_each = toset(var.admin_teams) + slug = each.value +} + +locals { + github_org_teams = var.github_org_teams == null ? try(data.github_organization_teams.root_teams[0].teams, []) : var.github_org_teams + github_teams = { for obj in local.github_org_teams : "${obj.slug}" => obj.id } + team_repository_permissions = { + "pull" = "read" + "triage" = "triage" + "push" = "write" + "maintain" = "maintain" + "admin" = "admin" + } +} + +resource "github_team_repository" "admin" { + for_each = { for team in var.admin_teams : team => data.github_team.admin_teams[team].id } + team_id = each.value + repository = local.github_repo.name + permission = "admin" + + lifecycle { + ignore_changes = [ + team_id + ] + } +} diff --git a/terraform_data_dirs/sct-engineering/modules/repo_list/outputs.tf b/terraform_data_dirs/sct-engineering/modules/repo_list/outputs.tf new file mode 100644 index 0000000..5afc19d --- /dev/null +++ b/terraform_data_dirs/sct-engineering/modules/repo_list/outputs.tf @@ -0,0 +1,59 @@ +output "github_repo" { + description = "All attributes of the GitHub repository" + value = local.github_repo +} + +output "ssh_clone_url" { + description = "URL that can be provided to git clone to clone the repository via SSH" + value = local.github_repo.ssh_clone_url +} + +output "node_id" { + description = "Node ID of the repository, used for GraphQL API access" + value = local.github_repo.node_id +} + +output "full_name" { + description = "Full name of the repository in org/repo format" + value = local.github_repo.full_name +} + +output "repo_id" { + description = "Repository ID" + value = local.github_repo.repo_id +} + +output "html_url" { + description = "URL to the repository on GitHub" + value = local.github_repo.html_url +} + +output "http_clone_url" { + description = "URL that can be provided to git clone to clone the repository via HTTPS" + value = local.github_repo.http_clone_url +} + +output "git_clone_url" { + description = "URL that can be provided to git clone to clone the repository anonymously via the git protocol" + value = local.github_repo.git_clone_url +} + +output "visibility" { + description = "Whether the repository is private or public" + value = local.github_repo.visibility +} + +output "default_branch" { + description = "Default branch of the repository" + value = local.github_repo.default_branch +} + +output "topics" { + description = "List of topics applied to the repository" + value = local.github_repo.topics +} + +output "template" { + description = "Template repository this repository was created from" + value = local.github_repo.template +} diff --git a/terraform_data_dirs/sct-engineering/modules/repo_list/templates/CODEOWNERS b/terraform_data_dirs/sct-engineering/modules/repo_list/templates/CODEOWNERS new file mode 100644 index 0000000..3da2911 --- /dev/null +++ b/terraform_data_dirs/sct-engineering/modules/repo_list/templates/CODEOWNERS @@ -0,0 +1,4 @@ +# These owners will be the default owners for everything in the repo. Unless a later match takes precedence +%{ for codeowner in codeowners ~} +* @${codeowner} +%{ endfor ~} diff --git a/terraform_data_dirs/sct-engineering/modules/repo_list/terraform-github-repo.code-workspace b/terraform_data_dirs/sct-engineering/modules/repo_list/terraform-github-repo.code-workspace new file mode 100644 index 0000000..152a815 --- /dev/null +++ b/terraform_data_dirs/sct-engineering/modules/repo_list/terraform-github-repo.code-workspace @@ -0,0 +1,18 @@ +{ + "folders": [ + { + "path": "." + }, + { + "path": "../providers/terraform-provider-github/website/docs/r", + "name": "provider/github/resources" + }, + { + "path": "../providers/terraform-provider-github/website/docs/d", + "name": "provider/github/data-sources" + }, + { + "path": "../docs/terraform/website/docs/language" + }, + ] +} \ No newline at end of file diff --git a/terraform_data_dirs/sct-engineering/modules/repo_list/variables.tf b/terraform_data_dirs/sct-engineering/modules/repo_list/variables.tf new file mode 100644 index 0000000..21c9187 --- /dev/null +++ b/terraform_data_dirs/sct-engineering/modules/repo_list/variables.tf @@ -0,0 +1,420 @@ +variable "name" { + description = "Name of the repository" + type = string +} + +variable "repo_org" { + description = "GitHub organization name" + type = string + default = null +} + +variable "github_codeowners_team" { + default = "terraform-reviewers" +} + +variable "github_repo_description" { + description = "Repository description" + type = string + default = null +} + +variable "github_repo_topics" { + description = "Repository topics" + type = list(string) + default = [] +} + +variable "github_push_restrictions" { + description = "List of team/user IDs with push access" + type = list(string) + default = [] +} +variable "github_is_private" { + description = "Make repository private" + type = bool + default = true +} +variable "github_auto_init" { + description = "Initialize repository with README" + type = bool + default = true +} +variable "github_allow_merge_commit" { + description = "Allow merge commits" + type = bool + default = false +} +variable "github_allow_squash_merge" { + description = "Allow squash merging" + type = bool + default = true +} +variable "github_allow_rebase_merge" { + description = "Allow rebase merging" + type = bool + default = false +} +variable "github_delete_branch_on_merge" { + description = "Delete head branch after merge" + type = bool + default = true +} +variable "github_has_projects" { + description = "Enable projects feature" + type = bool + default = true +} +variable "github_has_issues" { + description = "Enable issues feature" + type = bool + default = false +} +variable "github_has_wiki" { + description = "Enable wiki feature" + type = bool + default = true +} +variable "github_default_branch" { + description = "Default branch name" + type = string + default = "main" +} +variable "github_required_approving_review_count" { + description = "Number of approvals needed for pull requests" + type = number + default = 1 +} +variable "github_require_code_owner_reviews" { + description = "Require code owner review" + type = bool + default = true +} +variable "github_dismiss_stale_reviews" { + description = "Dismiss stale pull request approvals" + type = bool + default = true +} +variable "github_enforce_admins_branch_protection" { + description = "Enforce branch protection rules on administrators" + type = bool + default = true +} + +variable "github_allow_auto_merge" { + description = "Allow pull requests to be automatically merged" + type = bool + default = false +} + +variable "github_has_downloads" { + description = "Enable downloads feature" + type = bool + default = false +} + +variable "additional_codeowners" { + description = "Additional entries for CODEOWNERS file" + type = list(string) + default = [] +} + +variable "prefix" { + description = "Prefix to add to repository name" + type = string + default = null +} + +variable "force_name" { + description = "Keep exact repository name (no date suffix)" + type = bool + default = false +} + +variable "github_org_teams" { + description = "Organization teams configuration" + type = list(any) + default = null +} + +variable "template_repo_org" { + description = "Template repository organization" + type = string + default = null +} + +variable "template_repo" { + description = "Template repository name" + type = string + default = null +} + +variable "is_template" { + description = "Make this repository a template" + type = bool + default = false +} + + +variable "admin_teams" { + description = "Teams to grant admin access" + type = list(string) + default = [] +} + + +variable "required_status_checks" { + description = "Required status checks for protected branches" + type = object({ + contexts = list(string) + strict = optional(bool, false) + }) + default = null +} + +variable "archived" { + description = "Archive this repository" + type = bool + default = false +} + +variable "secrets" { + description = "GitHub Actions secrets" + type = list(object({ + name = string + value = string + })) + default = [] +} + +variable "vars" { + description = "GitHub Actions variables" + type = list(object({ + name = string + value = string + })) + default = [] +} + +variable "extra_files" { + description = "Additional files to create in the repository" + type = list(object({ + path = string + content = string + })) + default = [] +} + +variable "managed_extra_files" { + description = "Additional files to manage in the repository" + type = list(object({ + path = string + content = string + })) + default = [] +} + +variable "pull_request_bypassers" { + description = "Users/teams that can bypass pull request requirements" + type = list(string) + default = [] +} + +variable "create_codeowners" { + description = "Create CODEOWNERS file" + type = bool + default = true +} + +variable "enforce_prs" { + description = "Enforce pull request reviews" + type = bool + default = true +} + +variable "collaborators" { + description = "Map of collaborators and their permission levels" + type = map(string) + default = {} + validation { + condition = alltrue([for perm in values(var.collaborators) : contains(["pull", "triage", "push", "maintain", "admin"], perm)]) + error_message = "Valid permissions are: pull, triage, push, maintain, admin" + } +} + + +variable "archive_on_destroy" { + description = "Archive repository instead of deleting on destroy" + type = bool + default = true +} + +variable "vulnerability_alerts" { + description = "Enable Dependabot alerts" + type = bool + default = false +} + +variable "gitignore_template" { + description = "Gitignore template to use" + type = string + default = null +} + +variable "homepage_url" { + description = "Repository homepage URL" + type = string + default = null +} + +variable "create_repo" { + description = "Whether to create a new repository or manage an existing one" + type = bool + default = true +} + +variable "security_and_analysis" { + description = "Security and analysis settings for the repository" + type = object({ + advanced_security = optional(object({ + status = string + }), { status = "disabled" }) + secret_scanning = optional(object({ + status = string + }), { status = "disabled" }) + secret_scanning_push_protection = optional(object({ + status = string + }), { status = "disabled" }) + }) + default = null + validation { + condition = var.security_and_analysis == null ? true : alltrue([ + try(contains(["enabled", "disabled"], var.security_and_analysis.advanced_security.status), true), + try(contains(["enabled", "disabled"], var.security_and_analysis.secret_scanning.status), true), + try(contains(["enabled", "disabled"], var.security_and_analysis.secret_scanning_push_protection.status), true) + ]) + error_message = "Status values must be either 'enabled' or 'disabled'." + } +} + +variable "environments" { + description = "List of GitHub environments to create for the repository" + type = list(object({ + name = string + reviewers = optional(object({ + teams = optional(list(string), []) + users = optional(list(string), []) + }), {}) + deployment_branch_policy = optional(object({ + protected_branches = optional(bool, true) + custom_branch_policies = optional(bool, false) + }), {}) + secrets = optional(list(object({ + name = string + value = string + })), []) + vars = optional(list(object({ + name = string + value = string + })), []) + })) + default = [] +} + +variable "license_template" { + description = "License template to use for the repository" + type = string + default = null +} + +variable "github_has_discussions" { + description = "Enable discussions feature" + type = bool + default = false +} + +variable "github_merge_commit_title" { + description = "Title for merge commits" + type = string + default = "MERGE_MESSAGE" +} + +variable "github_merge_commit_message" { + description = "Message for merge commits" + type = string + default = "PR_TITLE" +} + +variable "github_squash_merge_commit_title" { + description = "Title for squash merge commits" + type = string + default = "COMMIT_OR_PR_TITLE" +} + +variable "github_squash_merge_commit_message" { + description = "Message for squash merge commits" + type = string + default = "COMMIT_MESSAGES" +} + +variable "github_allow_update_branch" { + description = "Allow updating pull request branches" + type = bool + default = true +} + +variable "pages_config" { + description = "Configuration for GitHub Pages" + type = object({ + branch = optional(string, "gh-pages") + path = optional(string, "/") + cname = optional(string) + }) + default = null +} + +variable "allow_unsigned_files" { + description = "Whether to allow file management even when signed commits are required" + type = bool + default = false +} + +variable "commit_author" { + description = "The author name to use for file commits" + type = string + default = "Terraform" +} + +variable "commit_email" { + description = "The email to use for file commits" + type = string + default = "terraform@roknsound.com" +} + +variable "require_signed_commits" { + description = "Whether to require signed commits for the default branch" + type = bool + default = false +} + +variable "require_last_push_approval" { + description = "Require approval from the last pusher" + type = bool + default = false +} + +variable "github_pro_enabled" { + type = bool + default = false + description = "Is this a Github Pro Account? If not, then it's limited in feature set" +} + +variable "deploy_keys" { + description = "List of SSH deploy keys to add to the repository" + type = list(object({ + title = string + key = string + read_only = optional(bool, true) + })) + default = [] +} diff --git a/terraform_data_dirs/sct-engineering/modules/repo_list/versions.tf b/terraform_data_dirs/sct-engineering/modules/repo_list/versions.tf new file mode 100644 index 0000000..fbe53be --- /dev/null +++ b/terraform_data_dirs/sct-engineering/modules/repo_list/versions.tf @@ -0,0 +1,7 @@ +terraform { + required_providers { + github = { + source = "integrations/github" + } + } +} diff --git a/terraform_data_dirs/sct-engineering/modules/sandbox/CODEOWNERS b/terraform_data_dirs/sct-engineering/modules/sandbox/CODEOWNERS new file mode 100644 index 0000000..b3ac177 --- /dev/null +++ b/terraform_data_dirs/sct-engineering/modules/sandbox/CODEOWNERS @@ -0,0 +1,3 @@ +#### How to use this file: https://help.github.com/en/github/creating-cloning-and-archiving-repositories/about-code-owners +# These owners will be the default owners for everything in the repo. Unless a later match takes precedence +* @RoknSound-Public-Modules/terraform-reviewers diff --git a/terraform_data_dirs/sct-engineering/modules/sandbox/README.md b/terraform_data_dirs/sct-engineering/modules/sandbox/README.md new file mode 100644 index 0000000..bf965f4 --- /dev/null +++ b/terraform_data_dirs/sct-engineering/modules/sandbox/README.md @@ -0,0 +1,373 @@ +# Terraform GitHub Repository Module + +A comprehensive Terraform module for managing GitHub repositories with advanced features like branch protection, file management, team access control, and deployment keys. You can use this module to create new repositories or manage existing ones. + +## Features +- Create new repositories or manage existing ones +- Complete GitHub repository management +- Branch protection rules +- File content management +- Team access configuration +- Action secrets management +- Repository collaborator management +- Deploy key management +- Automated README generation +- Issue management + +## Usage + +### Creating a New Repository +```hcl +module "new_repository" { + source = "HappyPathway/repo/github" + + name = "my-repository" + repo_org = "MyOrganization" + create_repo = true # Default, can be omitted + force_name = true + github_repo_description = "Repository description" + github_repo_topics = ["terraform", "automation"] + github_is_private = false +} +``` + +### Managing an Existing Repository +```hcl +module "existing_repository" { + source = "HappyPathway/repo/github" + + name = "existing-repository" + repo_org = "MyOrganization" + create_repo = false # Tell Terraform to manage existing repository + + # All other settings will be applied to the existing repository + github_repo_topics = ["managed", "terraform"] + github_has_issues = true +} +``` + +### Basic Repository + +```hcl +module "basic_repo" { + source = "HappyPathway/repo/github" + + name = "my-project" + repo_org = "MyOrganization" +} +``` + +### Repository with Protected Branches + +```hcl +module "protected_repo" { + source = "HappyPathway/repo/github" + + name = "protected-project" + repo_org = "MyOrganization" + + branch_protections = { + main = { + required_status_checks = true + enforce_admins = true + required_reviews = 2 + } + } +} +``` + +### Repository with Managed Files + +```hcl +module "managed_repo" { + source = "HappyPathway/repo/github" + + name = "managed-project" + repo_org = "MyOrganization" + + managed_extra_files = { + "README.md" = { + content = file("${path.module}/templates/readme.md") + overwrite = true + } + "CONTRIBUTING.md" = { + content = file("${path.module}/templates/contributing.md") + overwrite = false + } + } +} +``` + +### Repository with Deploy Keys + +```hcl +module "repo_with_deploy_keys" { + source = "HappyPathway/repo/github" + + name = "my-project-with-deploy-keys" + repo_org = "MyOrganization" + + deploy_keys = [ + { + title = "CI Server Key" + key = "ssh-rsa AAAAB3NzaC1yc2EAAA..." + read_only = true # Default is true, can be omitted + }, + { + title = "Deploy Server Key" + key = "ssh-rsa AAAAB3NzaC1yc2EBBB..." + read_only = false # Write access for deployment + } + ] +} +``` + +## Inputs + +| Name | Description | Type | Required | Default | +|------|-------------|------|----------|---------| +| name | Repository name | string | Yes | - | +| repo_org | GitHub organization name | string | No | null | +| create_repo | Whether to create a new repository or manage existing | bool | No | true | +| force_name | Keep exact repository name (no date suffix) | bool | No | false | +| github_repo_description | Repository description | string | No | null | +| github_repo_topics | Repository topics | list(string) | No | [] | +| github_is_private | Make repository private | bool | No | true | +| // ...other inputs... | + +## Outputs + +| Name | Description | +|------|-------------| +| github_repo | All repository attributes (see details below) | +| ssh_clone_url | SSH clone URL | +| node_id | Repository node ID for GraphQL | +| full_name | Full repository name (org/repo) | +| repo_id | Repository ID | +| html_url | Repository web URL | +| http_clone_url | HTTPS clone URL | +| git_clone_url | Git protocol clone URL | +| visibility | Repository visibility (public/private) | +| default_branch | Default branch name | +| topics | Repository topics | +| template | Template repository info | + +### Complete Repository Attributes + +The `github_repo` output includes: + +Basic Info: +- `name` - Repository name +- `full_name` - Full repository name (org/repo) +- `description` - Repository description +- `html_url` - GitHub web URL +- `ssh_clone_url` - SSH clone URL +- `http_clone_url` - HTTPS clone URL +- `git_clone_url` - Git protocol URL +- `visibility` - Public or private status + +Settings: +- `topics` - Repository topics +- `has_issues` - Issue tracking enabled +- `has_projects` - Project boards enabled +- `has_wiki` - Wiki enabled +- `is_template` - Template repository status +- `allow_merge_commit` - Merge commit allowed +- `allow_squash_merge` - Squash merge allowed +- `allow_rebase_merge` - Rebase merge allowed +- `allow_auto_merge` - Auto-merge enabled +- `delete_branch_on_merge` - Branch deletion on merge + +Additional Info: +- `default_branch` - Default branch name +- `archived` - Archive status +- `homepage_url` - Homepage URL if set +- `vulnerability_alerts` - Vulnerability alerts status +- `template` - Template repository details if used +- `gitignore_template` - .gitignore template if used +- `license_template` - License template if used + +## Limitations and Important Notes + +### Managing Existing Repositories +When managing existing repositories (`create_repo = false`): +- The repository must already exist in the specified organization +- You must have admin access to the repository +- Some settings may be read-only if they were set during repository creation +- Initial repository settings (like `auto_init`) are ignored +- Branch protection rules can only be added, not removed + +### Error Cases +The module will fail if: +- When `create_repo = false` and the repository doesn't exist +- When `create_repo = false` and `repo_org` is not specified +- When trying to manage a repository you don't have admin access to +- When applying branch protection rules to a private repository without a GitHub Enterprise plan + +### Best Practices +1. When managing existing repositories: + - Start with `create_repo = false` and minimal settings + - Gradually add configuration to avoid conflicts + - Use `terraform plan` to verify changes + - Consider using `lifecycle` blocks to ignore specific attributes + +2. For new repositories: + - Use `create_repo = true` (default) + - Set `force_name = true` to maintain consistent naming + - Configure all settings during initial creation + +## Testing + +This module includes automated tests that verify: +- Repository creation +- Data source lookups for existing repositories +- All output attributes + +Run the tests using: +```bash +terraform test +``` + +## Contributing + +1. Fork the repository +2. Create a feature branch +3. Commit your changes +4. Push to the branch +5. Create a Pull Request + +## License + +MIT License - see [LICENSE](LICENSE) for details + + +[![Terraform Validation](https://github.com/HappyPathway/terraform-github-repo/actions/workflows/terraform.yaml/badge.svg)](https://github.com/HappyPathway/terraform-github-repo/actions/workflows/terraform.yaml) + + +[![Modtest Dev](https://github.com/HappyPathway/terraform-github-repo/actions/workflows/modtest-dev.yaml/badge.svg)](https://github.com/HappyPathway/terraform-github-repo/actions/workflows/modtest-dev.yaml) + + +## Requirements + +No requirements. + +## Providers + +| Name | Version | +|------|---------| +| [github](#provider\_github) | 6.6.0 | + +## Modules + +No modules. + +## Resources + +| Name | Type | +|------|------| +| [github_actions_environment_secret.environment_secrets](https://registry.terraform.io/providers/integrations/github/latest/docs/resources/actions_environment_secret) | resource | +| [github_actions_environment_variable.environment_variables](https://registry.terraform.io/providers/integrations/github/latest/docs/resources/actions_environment_variable) | resource | +| [github_actions_secret.secret](https://registry.terraform.io/providers/integrations/github/latest/docs/resources/actions_secret) | resource | +| [github_actions_variable.variable](https://registry.terraform.io/providers/integrations/github/latest/docs/resources/actions_variable) | resource | +| [github_branch.branch](https://registry.terraform.io/providers/integrations/github/latest/docs/resources/branch) | resource | +| [github_branch_default.default_main_branch](https://registry.terraform.io/providers/integrations/github/latest/docs/resources/branch_default) | resource | +| [github_branch_protection.protection](https://registry.terraform.io/providers/integrations/github/latest/docs/resources/branch_protection) | resource | +| [github_repository.repo](https://registry.terraform.io/providers/integrations/github/latest/docs/resources/repository) | resource | +| [github_repository_collaborator.collaborators](https://registry.terraform.io/providers/integrations/github/latest/docs/resources/repository_collaborator) | resource | +| [github_repository_environment.environments](https://registry.terraform.io/providers/integrations/github/latest/docs/resources/repository_environment) | resource | +| [github_repository_file.codeowners](https://registry.terraform.io/providers/integrations/github/latest/docs/resources/repository_file) | resource | +| [github_repository_file.extra_files](https://registry.terraform.io/providers/integrations/github/latest/docs/resources/repository_file) | resource | +| [github_repository_file.managed_extra_files](https://registry.terraform.io/providers/integrations/github/latest/docs/resources/repository_file) | resource | +| [github_team_repository.admin](https://registry.terraform.io/providers/integrations/github/latest/docs/resources/team_repository) | resource | +| [github_organization_teams.root_teams](https://registry.terraform.io/providers/integrations/github/latest/docs/data-sources/organization_teams) | data source | +| [github_repository.existing](https://registry.terraform.io/providers/integrations/github/latest/docs/data-sources/repository) | data source | +| [github_team.admin_teams](https://registry.terraform.io/providers/integrations/github/latest/docs/data-sources/team) | data source | +| [github_team.environment_teams](https://registry.terraform.io/providers/integrations/github/latest/docs/data-sources/team) | data source | +| [github_user.collaborators](https://registry.terraform.io/providers/integrations/github/latest/docs/data-sources/user) | data source | +| [github_user.environment_users](https://registry.terraform.io/providers/integrations/github/latest/docs/data-sources/user) | data source | +| [github_user.pull_request_bypassers](https://registry.terraform.io/providers/integrations/github/latest/docs/data-sources/user) | data source | + +## Inputs + +| Name | Description | Type | Default | Required | +|------|-------------|------|---------|:--------:| +| [additional\_codeowners](#input\_additional\_codeowners) | Additional entries for CODEOWNERS file | `list(string)` | `[]` | no | +| [admin\_teams](#input\_admin\_teams) | Teams to grant admin access | `list(string)` | `[]` | no | +| [allow\_unsigned\_files](#input\_allow\_unsigned\_files) | Whether to allow file management even when signed commits are required | `bool` | `false` | no | +| [archive\_on\_destroy](#input\_archive\_on\_destroy) | Archive repository instead of deleting on destroy | `bool` | `true` | no | +| [archived](#input\_archived) | Archive this repository | `bool` | `false` | no | +| [collaborators](#input\_collaborators) | Map of collaborators and their permission levels | `map(string)` | `{}` | no | +| [commit\_author](#input\_commit\_author) | The author name to use for file commits | `string` | `"Terraform"` | no | +| [commit\_email](#input\_commit\_email) | The email to use for file commits | `string` | `"terraform@roknsound.com"` | no | +| [create\_codeowners](#input\_create\_codeowners) | Create CODEOWNERS file | `bool` | `true` | no | +| [create\_repo](#input\_create\_repo) | Whether to create a new repository or manage an existing one | `bool` | `true` | no | +| [enforce\_prs](#input\_enforce\_prs) | Enforce pull request reviews | `bool` | `true` | no | +| [environments](#input\_environments) | List of GitHub environments to create for the repository |
list(object({
name = string
reviewers = optional(object({
teams = optional(list(string), [])
users = optional(list(string), [])
}), {})
deployment_branch_policy = optional(object({
protected_branches = optional(bool, true)
custom_branch_policies = optional(bool, false)
}), {})
secrets = optional(list(object({
name = string
value = string
})), [])
vars = optional(list(object({
name = string
value = string
})), [])
}))
| `[]` | no | +| [extra\_files](#input\_extra\_files) | Additional files to create in the repository |
list(object({
path = string
content = string
}))
| `[]` | no | +| [force\_name](#input\_force\_name) | Keep exact repository name (no date suffix) | `bool` | `false` | no | +| [github\_allow\_auto\_merge](#input\_github\_allow\_auto\_merge) | Allow pull requests to be automatically merged | `bool` | `false` | no | +| [github\_allow\_merge\_commit](#input\_github\_allow\_merge\_commit) | Allow merge commits | `bool` | `false` | no | +| [github\_allow\_rebase\_merge](#input\_github\_allow\_rebase\_merge) | Allow rebase merging | `bool` | `false` | no | +| [github\_allow\_squash\_merge](#input\_github\_allow\_squash\_merge) | Allow squash merging | `bool` | `true` | no | +| [github\_allow\_update\_branch](#input\_github\_allow\_update\_branch) | Allow updating pull request branches | `bool` | `true` | no | +| [github\_auto\_init](#input\_github\_auto\_init) | Initialize repository with README | `bool` | `true` | no | +| [github\_codeowners\_team](#input\_github\_codeowners\_team) | n/a | `string` | `"terraform-reviewers"` | no | +| [github\_default\_branch](#input\_github\_default\_branch) | Default branch name | `string` | `"main"` | no | +| [github\_delete\_branch\_on\_merge](#input\_github\_delete\_branch\_on\_merge) | Delete head branch after merge | `bool` | `true` | no | +| [github\_dismiss\_stale\_reviews](#input\_github\_dismiss\_stale\_reviews) | Dismiss stale pull request approvals | `bool` | `true` | no | +| [github\_enforce\_admins\_branch\_protection](#input\_github\_enforce\_admins\_branch\_protection) | Enforce branch protection rules on administrators | `bool` | `true` | no | +| [github\_has\_discussions](#input\_github\_has\_discussions) | Enable discussions feature | `bool` | `false` | no | +| [github\_has\_downloads](#input\_github\_has\_downloads) | Enable downloads feature | `bool` | `false` | no | +| [github\_has\_issues](#input\_github\_has\_issues) | Enable issues feature | `bool` | `false` | no | +| [github\_has\_projects](#input\_github\_has\_projects) | Enable projects feature | `bool` | `true` | no | +| [github\_has\_wiki](#input\_github\_has\_wiki) | Enable wiki feature | `bool` | `true` | no | +| [github\_is\_private](#input\_github\_is\_private) | Make repository private | `bool` | `true` | no | +| [github\_merge\_commit\_message](#input\_github\_merge\_commit\_message) | Message for merge commits | `string` | `"PR_TITLE"` | no | +| [github\_merge\_commit\_title](#input\_github\_merge\_commit\_title) | Title for merge commits | `string` | `"MERGE_MESSAGE"` | no | +| [github\_org\_teams](#input\_github\_org\_teams) | Organization teams configuration | `list(any)` | `null` | no | +| [github\_pro\_enabled](#input\_github\_pro\_enabled) | Is this a Github Pro Account? If not, then it's limited in feature set | `bool` | `false` | no | +| [github\_push\_restrictions](#input\_github\_push\_restrictions) | List of team/user IDs with push access | `list(string)` | `[]` | no | +| [github\_repo\_description](#input\_github\_repo\_description) | Repository description | `string` | `null` | no | +| [github\_repo\_topics](#input\_github\_repo\_topics) | Repository topics | `list(string)` | `[]` | no | +| [github\_require\_code\_owner\_reviews](#input\_github\_require\_code\_owner\_reviews) | Require code owner review | `bool` | `true` | no | +| [github\_required\_approving\_review\_count](#input\_github\_required\_approving\_review\_count) | Number of approvals needed for pull requests | `number` | `1` | no | +| [github\_squash\_merge\_commit\_message](#input\_github\_squash\_merge\_commit\_message) | Message for squash merge commits | `string` | `"COMMIT_MESSAGES"` | no | +| [github\_squash\_merge\_commit\_title](#input\_github\_squash\_merge\_commit\_title) | Title for squash merge commits | `string` | `"COMMIT_OR_PR_TITLE"` | no | +| [gitignore\_template](#input\_gitignore\_template) | Gitignore template to use | `string` | `null` | no | +| [homepage\_url](#input\_homepage\_url) | Repository homepage URL | `string` | `null` | no | +| [is\_template](#input\_is\_template) | Make this repository a template | `bool` | `false` | no | +| [license\_template](#input\_license\_template) | License template to use for the repository | `string` | `null` | no | +| [managed\_extra\_files](#input\_managed\_extra\_files) | Additional files to manage in the repository |
list(object({
path = string
content = string
}))
| `[]` | no | +| [name](#input\_name) | Name of the repository | `string` | n/a | yes | +| [pages\_config](#input\_pages\_config) | Configuration for GitHub Pages |
object({
branch = optional(string, "gh-pages")
path = optional(string, "/")
cname = optional(string)
})
| `null` | no | +| [prefix](#input\_prefix) | Prefix to add to repository name | `string` | `null` | no | +| [pull\_request\_bypassers](#input\_pull\_request\_bypassers) | Users/teams that can bypass pull request requirements | `list(string)` | `[]` | no | +| [repo\_org](#input\_repo\_org) | GitHub organization name | `string` | `null` | no | +| [require\_last\_push\_approval](#input\_require\_last\_push\_approval) | Require approval from the last pusher | `bool` | `false` | no | +| [require\_signed\_commits](#input\_require\_signed\_commits) | Whether to require signed commits for the default branch | `bool` | `false` | no | +| [required\_status\_checks](#input\_required\_status\_checks) | Required status checks for protected branches |
object({
contexts = list(string)
strict = optional(bool, false)
})
| `null` | no | +| [secrets](#input\_secrets) | GitHub Actions secrets |
list(object({
name = string
value = string
}))
| `[]` | no | +| [security\_and\_analysis](#input\_security\_and\_analysis) | Security and analysis settings for the repository |
object({
advanced_security = optional(object({
status = string
}), { status = "disabled" })
secret_scanning = optional(object({
status = string
}), { status = "disabled" })
secret_scanning_push_protection = optional(object({
status = string
}), { status = "disabled" })
})
| `null` | no | +| [template\_repo](#input\_template\_repo) | Template repository name | `string` | `null` | no | +| [template\_repo\_org](#input\_template\_repo\_org) | Template repository organization | `string` | `null` | no | +| [vars](#input\_vars) | GitHub Actions variables |
list(object({
name = string
value = string
}))
| `[]` | no | +| [vulnerability\_alerts](#input\_vulnerability\_alerts) | Enable Dependabot alerts | `bool` | `false` | no | +| [deploy\_keys](#input\_deploy\_keys) | List of SSH deploy keys to add to the repository |
list(object({
title = string
key = string
read_only = optional(bool, true)
}))
| `[]` | no | + +## Outputs + +| Name | Description | +|------|-------------| +| [default\_branch](#output\_default\_branch) | Default branch of the repository | +| [full\_name](#output\_full\_name) | Full name of the repository in org/repo format | +| [git\_clone\_url](#output\_git\_clone\_url) | URL that can be provided to git clone to clone the repository anonymously via the git protocol | +| [github\_repo](#output\_github\_repo) | All attributes of the GitHub repository | +| [html\_url](#output\_html\_url) | URL to the repository on GitHub | +| [http\_clone\_url](#output\_http\_clone\_url) | URL that can be provided to git clone to clone the repository via HTTPS | +| [node\_id](#output\_node\_id) | Node ID of the repository, used for GraphQL API access | +| [repo\_id](#output\_repo\_id) | Repository ID | +| [ssh\_clone\_url](#output\_ssh\_clone\_url) | URL that can be provided to git clone to clone the repository via SSH | +| [template](#output\_template) | Template repository this repository was created from | +| [topics](#output\_topics) | List of topics applied to the repository | +| [visibility](#output\_visibility) | Whether the repository is private or public | + diff --git a/terraform_data_dirs/sct-engineering/modules/sandbox/action_secrets.tf b/terraform_data_dirs/sct-engineering/modules/sandbox/action_secrets.tf new file mode 100644 index 0000000..b0c503c --- /dev/null +++ b/terraform_data_dirs/sct-engineering/modules/sandbox/action_secrets.tf @@ -0,0 +1,15 @@ +resource "github_actions_secret" "secret" { + for_each = tomap({ for secret in var.secrets : secret.name => secret.value }) + repository = local.github_repo.name + secret_name = each.key + plaintext_value = each.value + depends_on = [local.github_repo] +} + +resource "github_actions_variable" "variable" { + for_each = tomap({ for _var in var.vars : _var.name => _var.value }) + repository = local.github_repo.name + variable_name = each.key + value = each.value + depends_on = [local.github_repo] +} diff --git a/terraform_data_dirs/sct-engineering/modules/sandbox/branch_protection.tf b/terraform_data_dirs/sct-engineering/modules/sandbox/branch_protection.tf new file mode 100644 index 0000000..344bbd3 --- /dev/null +++ b/terraform_data_dirs/sct-engineering/modules/sandbox/branch_protection.tf @@ -0,0 +1,57 @@ +locals { + branch_protection_rules = merge( + var.enforce_prs == true ? { + main = { + pattern = var.github_default_branch + enforce_admins = var.github_enforce_admins_branch_protection + allows_deletions = false + require_signed_commits = var.require_signed_commits + required_linear_history = true + required_status_checks = var.required_status_checks + required_pull_request_reviews = { + dismiss_stale_reviews = var.github_dismiss_stale_reviews + require_code_owner_reviews = var.github_require_code_owner_reviews + required_approving_review_count = var.github_required_approving_review_count + pull_request_bypassers = var.pull_request_bypassers + } + } + } : {} + ) +} + +# https://registry.terraform.io/providers/integrations/github/latest/docs/resources/branch_protection +resource "github_branch_protection" "protection" { + for_each = { + for k, v in local.branch_protection_rules : k => v if var.enforce_prs && (!var.github_is_private || var.github_pro_enabled) + } + + repository_id = var.create_repo ? github_repository.repo[0].node_id : data.github_repository.existing[0].node_id + pattern = each.key + + enforce_admins = var.github_enforce_admins_branch_protection + required_linear_history = true + allows_force_pushes = false + allows_deletions = false + require_signed_commits = var.require_signed_commits + + required_pull_request_reviews { + required_approving_review_count = var.github_required_approving_review_count + dismiss_stale_reviews = var.github_dismiss_stale_reviews + require_code_owner_reviews = var.github_require_code_owner_reviews + require_last_push_approval = var.require_last_push_approval + } + + dynamic "required_status_checks" { + for_each = var.required_status_checks != null ? ["true"] : [] + content { + strict = try(var.required_status_checks.strict, true) + contexts = try(var.required_status_checks.contexts, []) + } + } + + depends_on = [ + github_repository.repo, + github_branch.branch, + github_branch_default.default_main_branch + ] +} \ No newline at end of file diff --git a/terraform_data_dirs/sct-engineering/modules/sandbox/collaborators.tf b/terraform_data_dirs/sct-engineering/modules/sandbox/collaborators.tf new file mode 100644 index 0000000..ae4a1f2 --- /dev/null +++ b/terraform_data_dirs/sct-engineering/modules/sandbox/collaborators.tf @@ -0,0 +1,27 @@ +locals { + # Permission mapping for collaborator roles + permission_map = { + "pull" = "read" + "triage" = "triage" + "push" = "write" + "maintain" = "maintain" + "admin" = "admin" + } +} + +data "github_user" "collaborators" { + for_each = var.collaborators + username = each.key +} + +# Add a collaborator to a repository +resource "github_repository_collaborator" "collaborators" { + for_each = tomap(var.collaborators) + repository = local.github_repo.name + username = each.key + permission = local.permission_map[each.value] + + depends_on = [ + data.github_user.collaborators + ] +} diff --git a/terraform_data_dirs/sct-engineering/modules/sandbox/data.tf b/terraform_data_dirs/sct-engineering/modules/sandbox/data.tf new file mode 100644 index 0000000..7695660 --- /dev/null +++ b/terraform_data_dirs/sct-engineering/modules/sandbox/data.tf @@ -0,0 +1,8 @@ +locals { + codeowners = length(var.additional_codeowners) > 0 ? flatten(["${var.repo_org}/${var.github_codeowners_team}", formatlist("${var.repo_org}/%s", var.additional_codeowners)]) : ["${var.repo_org}/${var.github_codeowners_team}"] +} + +data "github_repository" "existing" { + count = var.create_repo ? 0 : 1 + full_name = "${var.repo_org}/${var.name}" +} diff --git a/terraform_data_dirs/sct-engineering/modules/sandbox/environment.tf b/terraform_data_dirs/sct-engineering/modules/sandbox/environment.tf new file mode 100644 index 0000000..256de11 --- /dev/null +++ b/terraform_data_dirs/sct-engineering/modules/sandbox/environment.tf @@ -0,0 +1,72 @@ +data "github_team" "environment_teams" { + for_each = toset(flatten([ + for env in var.environments : + try(coalesce(env.reviewers.teams, []), []) + ])) + slug = each.value # Look up teams by slug (name) instead of ID +} + +data "github_user" "environment_users" { + for_each = toset(flatten([ + for env in var.environments : + try(coalesce(env.reviewers.users, []), []) + ])) + username = each.value +} + +resource "github_repository_environment" "environments" { + for_each = { for env in var.environments : env.name => env } + + environment = each.value.name + repository = github_repository.repo[0].name + reviewers { + teams = [for team_slug in try(each.value.reviewers.teams, []) : data.github_team.environment_teams[team_slug].id] + users = [for username in try(each.value.reviewers.users, []) : data.github_user.environment_users[username].id] + } + deployment_branch_policy { + protected_branches = try(each.value.deployment_branch_policy.protected_branches, true) + custom_branch_policies = try(each.value.deployment_branch_policy.custom_branch_policies, false) + } +} + +resource "github_actions_environment_secret" "environment_secrets" { + for_each = { + for pair in flatten([ + for env in var.environments : [ + for secret in coalesce(env.secrets, []) : { + env_name = env.name + name = secret.name + value = secret.value + } + ] + ]) : "${pair.env_name}.${pair.name}" => pair + } + + repository = github_repository.repo[0].name + environment = each.value.env_name + secret_name = each.value.name + plaintext_value = each.value.value + + depends_on = [github_repository_environment.environments] +} + +resource "github_actions_environment_variable" "environment_variables" { + for_each = { + for pair in flatten([ + for env in var.environments : [ + for _var in coalesce(env.vars, []) : { + env_name = env.name + name = _var.name + value = _var.value + } + ] + ]) : "${pair.env_name}.${pair.name}" => pair + } + + repository = github_repository.repo[0].name + environment = each.value.env_name + variable_name = each.value.name + value = each.value.value + + depends_on = [github_repository_environment.environments] +} \ No newline at end of file diff --git a/terraform_data_dirs/sct-engineering/modules/sandbox/github_branch.tf b/terraform_data_dirs/sct-engineering/modules/sandbox/github_branch.tf new file mode 100644 index 0000000..2e14d6c --- /dev/null +++ b/terraform_data_dirs/sct-engineering/modules/sandbox/github_branch.tf @@ -0,0 +1,33 @@ +# https://registry.terraform.io/providers/integrations/github/latest/docs/data-sources/team +# data "github_team" "github_codeowners_team" { +# slug = var.github_codeowners_team +# } + +# Create non-main default branch if specified +resource "github_branch" "branch" { + count = var.github_default_branch != "main" ? 1 : 0 + repository = local.github_repo.name + branch = var.github_default_branch + depends_on = [ + github_repository.repo + ] +} + +# Set the default branch +resource "github_branch_default" "default_main_branch" { + count = var.github_default_branch != "main" ? 1 : 0 + repository = local.github_repo.name + branch = var.github_default_branch + depends_on = [ + github_branch.branch + ] +} + +data "github_user" "pull_request_bypassers" { + for_each = toset(var.pull_request_bypassers) + username = each.value +} + +locals { + pull_request_bypassers = [for user in data.github_user.pull_request_bypassers : user.node_id] +} \ No newline at end of file diff --git a/terraform_data_dirs/sct-engineering/modules/sandbox/github_deploy_keys.tf b/terraform_data_dirs/sct-engineering/modules/sandbox/github_deploy_keys.tf new file mode 100644 index 0000000..76b7aa3 --- /dev/null +++ b/terraform_data_dirs/sct-engineering/modules/sandbox/github_deploy_keys.tf @@ -0,0 +1,14 @@ +// This file implements GitHub Deploy Keys functionality for the repository + +resource "github_repository_deploy_key" "deploy_key" { + for_each = { for k, v in var.deploy_keys : k => v } + + title = each.value.title + repository = local.github_repo.name + key = each.value.key + read_only = each.value.read_only + + depends_on = [ + github_repository.repo + ] +} \ No newline at end of file diff --git a/terraform_data_dirs/sct-engineering/modules/sandbox/github_files.tf b/terraform_data_dirs/sct-engineering/modules/sandbox/github_files.tf new file mode 100644 index 0000000..e4dee3a --- /dev/null +++ b/terraform_data_dirs/sct-engineering/modules/sandbox/github_files.tf @@ -0,0 +1,98 @@ +locals { + # Process files only if commit signing is not required or if explicitly allowed + should_manage_files = !try(local.github_repo.require_signed_commits, false) || var.allow_unsigned_files +} + +# https://registry.terraform.io/providers/integrations/github/latest/docs/resources/repository_file +resource "github_repository_file" "codeowners" { + count = var.create_codeowners && local.should_manage_files ? 1 : 0 + + repository = local.github_repo.name + branch = var.github_default_branch + file = "CODEOWNERS" + content = templatefile("${path.module}/templates/CODEOWNERS", { codeowners = local.codeowners }) + commit_message = "Update CODEOWNERS file" + commit_author = var.commit_author + commit_email = var.commit_email + overwrite_on_create = true + depends_on = [ + github_repository.repo, + github_branch_protection.protection + ] + lifecycle { + ignore_changes = [ + content, + branch + ] + } +} + +# data "github_repository" "template_repo" { +# count = var.template_repo == null && var.template_repo_org == var.repo_org ? 0 : 1 +# full_name = "${var.template_repo_org == null ? "" : var.template_repo_org}/${var.template_repo == null ? "" : var.template_repo}" +# } + +# data "github_ref" "ref" { +# count = var.template_repo == null && var.template_repo_org == var.repo_org ? 0 : 1 +# owner = var.template_repo_org +# repository = var.template_repo +# ref = "heads/${element(data.github_repository.template_repo, 0).default_branch}" +# } + +locals { + extra_files = concat( + var.extra_files, + # var.template_repo == null && var.template_repo_org == var.repo_org ? [] : [ + # { + # path = ".TEMPLATE_SHA", + # content = data.github_ref.ref[0].sha + # } + # ] + ) + repository_name = var.create_repo ? local.github_repo.name : var.name +} + +resource "github_repository_file" "extra_files" { + for_each = local.should_manage_files ? tomap({ for file in local.extra_files : "${element(split("/", file.path), length(split("/", file.path)) - 1)}" => file }) : {} + + repository = local.github_repo.name + branch = var.github_default_branch + file = each.value.path + content = each.value.content + commit_message = "Update ${each.value.path}" + commit_author = var.commit_author + commit_email = var.commit_email + overwrite_on_create = true + depends_on = [ + github_repository.repo, + github_branch_protection.protection + ] + lifecycle { + ignore_changes = [ + content, + branch + ] + } +} + +resource "github_repository_file" "managed_extra_files" { + for_each = local.should_manage_files ? tomap({ for file in var.managed_extra_files : "${element(split("/", file.path), length(split("/", file.path)) - 1)}" => file }) : {} + + repository = local.github_repo.name + branch = var.github_default_branch + file = each.value.path + content = each.value.content + commit_message = "Update ${each.value.path}" + commit_author = var.commit_author + commit_email = var.commit_email + overwrite_on_create = true + depends_on = [ + github_repository.repo, + github_branch_protection.protection + ] + lifecycle { + ignore_changes = [ + branch + ] + } +} diff --git a/terraform_data_dirs/sct-engineering/modules/sandbox/github_repo.tf b/terraform_data_dirs/sct-engineering/modules/sandbox/github_repo.tf new file mode 100644 index 0000000..514adff --- /dev/null +++ b/terraform_data_dirs/sct-engineering/modules/sandbox/github_repo.tf @@ -0,0 +1,93 @@ +locals { + repo_name = var.force_name ? var.name : "${var.name}-${formatdate("YYYYMMDD", timestamp())}" + + github_repo = var.create_repo ? github_repository.repo[0] : data.github_repository.existing[0] + + validate_merge_options = ( + var.github_allow_merge_commit || + var.github_allow_squash_merge || + var.github_allow_rebase_merge + ) ? null : file("ERROR: At least one merge option must be enabled") +} + +resource "github_repository" "repo" { + count = var.create_repo ? 1 : 0 + name = local.repo_name + description = var.github_repo_description + visibility = var.github_is_private ? "private" : "public" + has_issues = var.github_has_issues + has_projects = var.github_has_projects + has_wiki = var.github_has_wiki + has_downloads = var.github_has_downloads + auto_init = var.github_auto_init + archive_on_destroy = var.archive_on_destroy + archived = var.archived + vulnerability_alerts = var.vulnerability_alerts + topics = var.github_repo_topics + homepage_url = var.homepage_url + gitignore_template = var.gitignore_template + license_template = var.license_template + is_template = var.is_template + has_discussions = try(var.github_has_discussions, false) + merge_commit_title = try(var.github_merge_commit_title, "MERGE_MESSAGE") + merge_commit_message = try(var.github_merge_commit_message, "PR_TITLE") + squash_merge_commit_title = try(var.github_squash_merge_commit_title, "COMMIT_OR_PR_TITLE") + squash_merge_commit_message = try(var.github_squash_merge_commit_message, "COMMIT_MESSAGES") + allow_update_branch = try(var.github_allow_update_branch, true) + + allow_merge_commit = var.github_allow_merge_commit + allow_squash_merge = var.github_allow_squash_merge + allow_rebase_merge = var.github_allow_rebase_merge + allow_auto_merge = var.github_allow_auto_merge + delete_branch_on_merge = var.github_delete_branch_on_merge + + dynamic "template" { + for_each = var.template_repo == null ? [] : ["*"] + content { + owner = var.template_repo_org + repository = var.template_repo + } + } + + dynamic "security_and_analysis" { + for_each = var.security_and_analysis == null ? [] : ["*"] + content { + dynamic "advanced_security" { + for_each = try(var.security_and_analysis.advanced_security, null) == null ? [] : ["*"] + content { + status = var.security_and_analysis.advanced_security.status + } + } + dynamic "secret_scanning" { + for_each = try(var.security_and_analysis.secret_scanning, null) == null ? [] : ["*"] + content { + status = var.security_and_analysis.secret_scanning.status + } + } + dynamic "secret_scanning_push_protection" { + for_each = try(var.security_and_analysis.secret_scanning_push_protection, null) == null ? [] : ["*"] + content { + status = var.security_and_analysis.secret_scanning_push_protection.status + } + } + } + } + + dynamic "pages" { + for_each = var.pages_config == null ? [] : ["true"] + content { + source { + branch = try(var.pages_config.branch, "gh-pages") + path = try(var.pages_config.path, "/") + } + cname = try(var.pages_config.cname, null) + } + } + + lifecycle { + ignore_changes = [ + auto_init, + template + ] + } +} diff --git a/terraform_data_dirs/sct-engineering/modules/sandbox/github_repo.tftest.hcl b/terraform_data_dirs/sct-engineering/modules/sandbox/github_repo.tftest.hcl new file mode 100644 index 0000000..d551186 --- /dev/null +++ b/terraform_data_dirs/sct-engineering/modules/sandbox/github_repo.tftest.hcl @@ -0,0 +1,544 @@ +# valid_string_concat.tftest.hcl +variables { + name = "github-repo-test" + repo_org = "HappyPathway" + force_name = true + github_is_private = false + enforce_prs = false + archive_on_destroy = false + github_org_teams = [] + admin_teams = ["test-team"] + github_repo_description = "Test repository" + github_repo_topics = ["test", "terraform"] + create_repo = true + secrets = [ + { + name = "TEST_SECRET" + value = "secret-value" + } + ] + vars = [ + { + name = "TEST_VAR" + value = "test-value" + } + ] + extra_files = [ + { + path = "test.md" + content = "Test content" + } + ] +} + +# Test repository creation first +run "create_new_repository" { + command = apply +} + +# Then test repository data source +run "verify_data_source" { + variables { + create_repo = false + } + command = plan + assert { + condition = data.github_repository.existing[0].name == var.name + error_message = "Data source repository name does not match input" + } +} + +# Now test other components that depend on the repository existing +run "repo_tests" { + command = plan + assert { + condition = github_repository.repo[0].name == "github-repo-test" + error_message = "Github Repo name did not match expected" + } +} + +run "verify_branch_protection" { + variables { + github_default_branch = "main" + enforce_prs = true + github_is_private = false + github_required_approving_review_count = 2 + } + command = plan + assert { + condition = github_branch_protection.protection["main"].pattern == "main" + error_message = "Branch protection pattern should be main" + } + assert { + condition = github_branch_protection.protection["main"].required_pull_request_reviews[0].required_approving_review_count == 2 + error_message = "Should require 2 review approvals" + } +} + +# Test branch protection with different configurations +run "verify_branch_protection_with_strict_settings" { + variables { + github_default_branch = "main" + enforce_prs = true + github_is_private = false + github_required_approving_review_count = 2 + github_enforce_admins_branch_protection = true + github_dismiss_stale_reviews = true + github_require_code_owner_reviews = true + require_signed_commits = true + pull_request_bypassers = ["test-user"] + required_status_checks = { + strict = true + contexts = ["test/build", "test/lint"] + } + } + + command = plan + + assert { + condition = github_branch_protection.protection["main"].pattern == "main" + error_message = "Branch protection pattern should be main" + } + + assert { + condition = github_branch_protection.protection["main"].required_pull_request_reviews[0].required_approving_review_count == 2 + error_message = "Should require 2 review approvals" + } + + assert { + condition = github_branch_protection.protection["main"].enforce_admins == true + error_message = "Should enforce branch protection on admins" + } + + assert { + condition = github_branch_protection.protection["main"].required_pull_request_reviews[0].dismiss_stale_reviews == true + error_message = "Should dismiss stale reviews" + } + + assert { + condition = github_branch_protection.protection["main"].required_pull_request_reviews[0].require_code_owner_reviews == true + error_message = "Should require code owner reviews" + } + + assert { + condition = github_branch_protection.protection["main"].require_signed_commits == true + error_message = "Should require signed commits" + } + + assert { + condition = github_branch_protection.protection["main"].required_status_checks[0].strict == true + error_message = "Should require strict status checks" + } + + assert { + condition = length(github_branch_protection.protection["main"].required_status_checks[0].contexts) == 2 + error_message = "Should have exactly 2 required status check contexts" + } +} + +# Test edge cases for branch protection +run "verify_branch_protection_with_minimal_settings" { + variables { + enforce_prs = true + github_default_branch = "main" + github_required_approving_review_count = 0 + github_enforce_admins_branch_protection = false + github_dismiss_stale_reviews = false + github_require_code_owner_reviews = false + required_status_checks = null + } + + command = plan + + assert { + condition = github_branch_protection.protection["main"].required_pull_request_reviews[0].required_approving_review_count == 0 + error_message = "Should allow zero required approvals" + } + + assert { + condition = github_branch_protection.protection["main"].enforce_admins == false + error_message = "Should not enforce on admins when disabled" + } + + assert { + condition = length(github_branch_protection.protection["main"].required_status_checks) == 0 + error_message = "Should not have required status checks when null" + } +} + +# Test branch protection disabled +run "verify_branch_protection_disabled" { + variables { + enforce_prs = false + github_default_branch = "main" + } + + command = plan + + assert { + condition = length(keys(github_branch_protection.protection)) == 0 + error_message = "Branch protection should not be created when enforce_prs is false" + } +} + +run "verify_repository_files" { + command = plan + assert { + condition = github_repository_file.extra_files["test.md"].file == "test.md" + error_message = "Extra file should be created" + } + assert { + condition = github_repository_file.extra_files["test.md"].content == "Test content" + error_message = "Extra file content should match input" + } +} + +run "verify_team_access" { + command = plan + assert { + condition = github_team_repository.admin["test-team"].permission == "admin" + error_message = "Team should have admin access" + } +} + +run "verify_action_secrets" { + command = plan + assert { + condition = github_actions_secret.secret["TEST_SECRET"].secret_name == "TEST_SECRET" + error_message = "Action secret should be created" + } + assert { + condition = github_actions_variable.variable["TEST_VAR"].variable_name == "TEST_VAR" + error_message = "Action variable should be created" + } +} + +# Test repository visibility settings +run "verify_private_repository" { + variables { + github_is_private = true + github_repo_description = "Private repository test" + vulnerability_alerts = true + security_and_analysis = { + advanced_security = { + status = "enabled" + } + secret_scanning = { + status = "enabled" + } + secret_scanning_push_protection = { + status = "enabled" + } + } + } + + command = plan + + assert { + condition = github_repository.repo[0].visibility == "private" + error_message = "Repository should be private" + } + + assert { + condition = github_repository.repo[0].security_and_analysis[0].advanced_security[0].status == "enabled" + error_message = "Advanced security should be enabled for private repo" + } + + assert { + condition = github_repository.repo[0].vulnerability_alerts == true + error_message = "Vulnerability alerts should be enabled" + } +} + +run "verify_public_repository" { + variables { + github_is_private = false + github_repo_description = "Public repository test" + vulnerability_alerts = true + github_has_wiki = true + github_has_issues = true + github_has_projects = true + github_has_discussions = true + github_allow_merge_commit = true + github_allow_squash_merge = true + github_allow_rebase_merge = true + } + + command = plan + + assert { + condition = github_repository.repo[0].visibility == "public" + error_message = "Repository should be public" + } + + assert { + condition = github_repository.repo[0].has_wiki + error_message = "Wiki should be enabled for public repo" + } + + assert { + condition = github_repository.repo[0].has_issues + error_message = "Issues should be enabled for public repo" + } + + assert { + condition = github_repository.repo[0].has_projects + error_message = "Projects should be enabled for public repo" + } + + assert { + condition = github_repository.repo[0].has_discussions + error_message = "Discussions should be enabled for public repo" + } + + assert { + condition = github_repository.repo[0].allow_merge_commit + error_message = "Merge commits should be enabled for public repo" + } + + assert { + condition = github_repository.repo[0].allow_squash_merge + error_message = "Squash merges should be enabled for public repo" + } + + assert { + condition = github_repository.repo[0].allow_rebase_merge + error_message = "Rebase merges should be enabled for public repo" + } +} + +# Test visibility transitions +run "verify_visibility_transition_to_private" { + variables { + github_is_private = false + } + + command = plan + + assert { + condition = github_repository.repo[0].visibility == "public" + error_message = "Should be public" + } +} + +run "verify_visibility_transition_from_public" { + variables { + github_is_private = true + } + + command = plan + + assert { + condition = github_repository.repo[0].visibility == "private" + error_message = "Should transition to private" + } +} + +# Test security features based on visibility +run "verify_security_features_private" { + variables { + github_is_private = true + security_and_analysis = { + advanced_security = { + status = "enabled" + } + secret_scanning = { + status = "enabled" + } + } + } + + command = plan + + assert { + condition = github_repository.repo[0].security_and_analysis[0].advanced_security[0].status == "enabled" + error_message = "Advanced security should be available for private repo" + } +} + +run "verify_security_features_public" { + variables { + github_is_private = false + security_and_analysis = { + secret_scanning = { + status = "enabled" + } + } + } + + command = plan + + assert { + condition = github_repository.repo[0].security_and_analysis[0].advanced_security[0].status == "disabled" + error_message = "Advanced security should not be available for public repo" + } +} + +# Test archive behavior with branch protection +run "verify_archive_with_branch_protection" { + variables { + enforce_prs = true + archived = true + github_default_branch = "main" + } + + command = plan + + assert { + condition = github_repository.repo[0].archived == true + error_message = "Repository should be archived" + } +} + +run "verify_outputs" { + command = plan + assert { + condition = output.github_repo.name == var.name + error_message = "Output repository name does not match input" + } + assert { + condition = output.ssh_clone_url != "" + error_message = "SSH clone URL should not be empty" + } + assert { + condition = output.node_id != "" + error_message = "Node ID should not be empty" + } + assert { + condition = output.full_name != "" + error_message = "Full name should not be empty" + } + assert { + condition = output.repo_id != null + error_message = "Repository ID should not be null" + } + assert { + condition = output.html_url != "" + error_message = "HTML URL should not be empty" + } + assert { + condition = output.http_clone_url != "" + error_message = "HTTP clone URL should not be empty" + } + assert { + condition = output.git_clone_url != "" + error_message = "Git clone URL should not be empty" + } + assert { + condition = output.visibility == "public" + error_message = "Visibility should be public" + } + assert { + condition = output.default_branch == "main" + error_message = "Default branch should be 'main'" + } + assert { + condition = length(output.topics) == 2 + error_message = "Should have exactly 2 topics" + } +} + +# Test repository settings inheritance +run "verify_settings_inheritance" { + variables { + name = "test-inheritance" + repo_org = "TestOrg" + github_is_private = true + enforce_prs = true + github_required_approving_review_count = 2 + # Don't set other settings to test defaults + } + + command = plan + + assert { + condition = github_repository.repo[0].allow_squash_merge == true + error_message = "Should inherit default allow_squash_merge setting" + } + + assert { + condition = github_repository.repo[0].allow_merge_commit == false + error_message = "Should inherit default allow_merge_commit setting" + } + + assert { + condition = github_repository.repo[0].allow_rebase_merge == false + error_message = "Should inherit default allow_rebase_merge setting" + } + + assert { + condition = github_repository.repo[0].delete_branch_on_merge == true + error_message = "Should inherit default delete_branch_on_merge setting" + } +} + +# Test complete repository configuration +run "verify_complete_repository_config" { + variables { + name = "test-complete-config" + repo_org = "TestOrg" + github_is_private = false + github_repo_description = "Complete configuration test" + github_repo_topics = ["test", "complete", "config"] + github_has_issues = true + github_has_wiki = true + github_has_projects = true + github_has_discussions = true + github_auto_init = true + github_allow_merge_commit = true + github_allow_squash_merge = true + github_allow_rebase_merge = true + github_allow_auto_merge = true + github_default_branch = "main" + vulnerability_alerts = true + enforce_prs = true + github_required_approving_review_count = 2 + github_enforce_admins_branch_protection = true + require_signed_commits = true + security_and_analysis = { + advanced_security = { + status = "enabled" + } + secret_scanning = { + status = "enabled" + } + secret_scanning_push_protection = { + status = "enabled" + } + } + admin_teams = ["test-team"] # Changed from "admins" to match real team name + template_repo_org = "TestOrg" + template_repo = "template-repo" + } + + command = plan + + assert { + condition = alltrue([ + github_repository.repo[0].name == "test-complete-config", + github_repository.repo[0].has_issues == true, + github_repository.repo[0].has_wiki == true, + github_repository.repo[0].has_projects == true, + github_repository.repo[0].has_discussions == true, + github_repository.repo[0].allow_auto_merge == true, + github_repository.repo[0].visibility == "public", + github_repository.repo[0].vulnerability_alerts == true, + can(github_repository.repo[0].security_and_analysis[0].advanced_security[0].status) && + github_repository.repo[0].security_and_analysis[0].advanced_security[0].status == "enabled", + github_repository.repo[0].security_and_analysis[0].secret_scanning[0].status == "enabled", + github_repository.repo[0].security_and_analysis[0].secret_scanning_push_protection[0].status == "enabled" + ]) + error_message = "All repository settings should be applied correctly" + } + + assert { + condition = length(github_repository.repo[0].topics) == 3 + error_message = "Should have exactly 3 topics" + } + + assert { + condition = github_branch_protection.protection["main"].required_pull_request_reviews[0].required_approving_review_count == 2 + error_message = "Should require 2 approvals" + } +} + diff --git a/terraform_data_dirs/sct-engineering/modules/sandbox/github_team_access.tf b/terraform_data_dirs/sct-engineering/modules/sandbox/github_team_access.tf new file mode 100644 index 0000000..21e14bc --- /dev/null +++ b/terraform_data_dirs/sct-engineering/modules/sandbox/github_team_access.tf @@ -0,0 +1,35 @@ +# https://registry.terraform.io/providers/integrations/github/latest/docs/resources/repository +data "github_organization_teams" "root_teams" { + count = var.github_org_teams == null && var.repo_org != null ? 1 : 0 + root_teams_only = false +} + +data "github_team" "admin_teams" { + for_each = toset(var.admin_teams) + slug = each.value +} + +locals { + github_org_teams = var.github_org_teams == null ? try(data.github_organization_teams.root_teams[0].teams, []) : var.github_org_teams + github_teams = { for obj in local.github_org_teams : "${obj.slug}" => obj.id } + team_repository_permissions = { + "pull" = "read" + "triage" = "triage" + "push" = "write" + "maintain" = "maintain" + "admin" = "admin" + } +} + +resource "github_team_repository" "admin" { + for_each = { for team in var.admin_teams : team => data.github_team.admin_teams[team].id } + team_id = each.value + repository = local.github_repo.name + permission = "admin" + + lifecycle { + ignore_changes = [ + team_id + ] + } +} diff --git a/terraform_data_dirs/sct-engineering/modules/sandbox/outputs.tf b/terraform_data_dirs/sct-engineering/modules/sandbox/outputs.tf new file mode 100644 index 0000000..5afc19d --- /dev/null +++ b/terraform_data_dirs/sct-engineering/modules/sandbox/outputs.tf @@ -0,0 +1,59 @@ +output "github_repo" { + description = "All attributes of the GitHub repository" + value = local.github_repo +} + +output "ssh_clone_url" { + description = "URL that can be provided to git clone to clone the repository via SSH" + value = local.github_repo.ssh_clone_url +} + +output "node_id" { + description = "Node ID of the repository, used for GraphQL API access" + value = local.github_repo.node_id +} + +output "full_name" { + description = "Full name of the repository in org/repo format" + value = local.github_repo.full_name +} + +output "repo_id" { + description = "Repository ID" + value = local.github_repo.repo_id +} + +output "html_url" { + description = "URL to the repository on GitHub" + value = local.github_repo.html_url +} + +output "http_clone_url" { + description = "URL that can be provided to git clone to clone the repository via HTTPS" + value = local.github_repo.http_clone_url +} + +output "git_clone_url" { + description = "URL that can be provided to git clone to clone the repository anonymously via the git protocol" + value = local.github_repo.git_clone_url +} + +output "visibility" { + description = "Whether the repository is private or public" + value = local.github_repo.visibility +} + +output "default_branch" { + description = "Default branch of the repository" + value = local.github_repo.default_branch +} + +output "topics" { + description = "List of topics applied to the repository" + value = local.github_repo.topics +} + +output "template" { + description = "Template repository this repository was created from" + value = local.github_repo.template +} diff --git a/terraform_data_dirs/sct-engineering/modules/sandbox/templates/CODEOWNERS b/terraform_data_dirs/sct-engineering/modules/sandbox/templates/CODEOWNERS new file mode 100644 index 0000000..3da2911 --- /dev/null +++ b/terraform_data_dirs/sct-engineering/modules/sandbox/templates/CODEOWNERS @@ -0,0 +1,4 @@ +# These owners will be the default owners for everything in the repo. Unless a later match takes precedence +%{ for codeowner in codeowners ~} +* @${codeowner} +%{ endfor ~} diff --git a/terraform_data_dirs/sct-engineering/modules/sandbox/terraform-github-repo.code-workspace b/terraform_data_dirs/sct-engineering/modules/sandbox/terraform-github-repo.code-workspace new file mode 100644 index 0000000..152a815 --- /dev/null +++ b/terraform_data_dirs/sct-engineering/modules/sandbox/terraform-github-repo.code-workspace @@ -0,0 +1,18 @@ +{ + "folders": [ + { + "path": "." + }, + { + "path": "../providers/terraform-provider-github/website/docs/r", + "name": "provider/github/resources" + }, + { + "path": "../providers/terraform-provider-github/website/docs/d", + "name": "provider/github/data-sources" + }, + { + "path": "../docs/terraform/website/docs/language" + }, + ] +} \ No newline at end of file diff --git a/terraform_data_dirs/sct-engineering/modules/sandbox/variables.tf b/terraform_data_dirs/sct-engineering/modules/sandbox/variables.tf new file mode 100644 index 0000000..21c9187 --- /dev/null +++ b/terraform_data_dirs/sct-engineering/modules/sandbox/variables.tf @@ -0,0 +1,420 @@ +variable "name" { + description = "Name of the repository" + type = string +} + +variable "repo_org" { + description = "GitHub organization name" + type = string + default = null +} + +variable "github_codeowners_team" { + default = "terraform-reviewers" +} + +variable "github_repo_description" { + description = "Repository description" + type = string + default = null +} + +variable "github_repo_topics" { + description = "Repository topics" + type = list(string) + default = [] +} + +variable "github_push_restrictions" { + description = "List of team/user IDs with push access" + type = list(string) + default = [] +} +variable "github_is_private" { + description = "Make repository private" + type = bool + default = true +} +variable "github_auto_init" { + description = "Initialize repository with README" + type = bool + default = true +} +variable "github_allow_merge_commit" { + description = "Allow merge commits" + type = bool + default = false +} +variable "github_allow_squash_merge" { + description = "Allow squash merging" + type = bool + default = true +} +variable "github_allow_rebase_merge" { + description = "Allow rebase merging" + type = bool + default = false +} +variable "github_delete_branch_on_merge" { + description = "Delete head branch after merge" + type = bool + default = true +} +variable "github_has_projects" { + description = "Enable projects feature" + type = bool + default = true +} +variable "github_has_issues" { + description = "Enable issues feature" + type = bool + default = false +} +variable "github_has_wiki" { + description = "Enable wiki feature" + type = bool + default = true +} +variable "github_default_branch" { + description = "Default branch name" + type = string + default = "main" +} +variable "github_required_approving_review_count" { + description = "Number of approvals needed for pull requests" + type = number + default = 1 +} +variable "github_require_code_owner_reviews" { + description = "Require code owner review" + type = bool + default = true +} +variable "github_dismiss_stale_reviews" { + description = "Dismiss stale pull request approvals" + type = bool + default = true +} +variable "github_enforce_admins_branch_protection" { + description = "Enforce branch protection rules on administrators" + type = bool + default = true +} + +variable "github_allow_auto_merge" { + description = "Allow pull requests to be automatically merged" + type = bool + default = false +} + +variable "github_has_downloads" { + description = "Enable downloads feature" + type = bool + default = false +} + +variable "additional_codeowners" { + description = "Additional entries for CODEOWNERS file" + type = list(string) + default = [] +} + +variable "prefix" { + description = "Prefix to add to repository name" + type = string + default = null +} + +variable "force_name" { + description = "Keep exact repository name (no date suffix)" + type = bool + default = false +} + +variable "github_org_teams" { + description = "Organization teams configuration" + type = list(any) + default = null +} + +variable "template_repo_org" { + description = "Template repository organization" + type = string + default = null +} + +variable "template_repo" { + description = "Template repository name" + type = string + default = null +} + +variable "is_template" { + description = "Make this repository a template" + type = bool + default = false +} + + +variable "admin_teams" { + description = "Teams to grant admin access" + type = list(string) + default = [] +} + + +variable "required_status_checks" { + description = "Required status checks for protected branches" + type = object({ + contexts = list(string) + strict = optional(bool, false) + }) + default = null +} + +variable "archived" { + description = "Archive this repository" + type = bool + default = false +} + +variable "secrets" { + description = "GitHub Actions secrets" + type = list(object({ + name = string + value = string + })) + default = [] +} + +variable "vars" { + description = "GitHub Actions variables" + type = list(object({ + name = string + value = string + })) + default = [] +} + +variable "extra_files" { + description = "Additional files to create in the repository" + type = list(object({ + path = string + content = string + })) + default = [] +} + +variable "managed_extra_files" { + description = "Additional files to manage in the repository" + type = list(object({ + path = string + content = string + })) + default = [] +} + +variable "pull_request_bypassers" { + description = "Users/teams that can bypass pull request requirements" + type = list(string) + default = [] +} + +variable "create_codeowners" { + description = "Create CODEOWNERS file" + type = bool + default = true +} + +variable "enforce_prs" { + description = "Enforce pull request reviews" + type = bool + default = true +} + +variable "collaborators" { + description = "Map of collaborators and their permission levels" + type = map(string) + default = {} + validation { + condition = alltrue([for perm in values(var.collaborators) : contains(["pull", "triage", "push", "maintain", "admin"], perm)]) + error_message = "Valid permissions are: pull, triage, push, maintain, admin" + } +} + + +variable "archive_on_destroy" { + description = "Archive repository instead of deleting on destroy" + type = bool + default = true +} + +variable "vulnerability_alerts" { + description = "Enable Dependabot alerts" + type = bool + default = false +} + +variable "gitignore_template" { + description = "Gitignore template to use" + type = string + default = null +} + +variable "homepage_url" { + description = "Repository homepage URL" + type = string + default = null +} + +variable "create_repo" { + description = "Whether to create a new repository or manage an existing one" + type = bool + default = true +} + +variable "security_and_analysis" { + description = "Security and analysis settings for the repository" + type = object({ + advanced_security = optional(object({ + status = string + }), { status = "disabled" }) + secret_scanning = optional(object({ + status = string + }), { status = "disabled" }) + secret_scanning_push_protection = optional(object({ + status = string + }), { status = "disabled" }) + }) + default = null + validation { + condition = var.security_and_analysis == null ? true : alltrue([ + try(contains(["enabled", "disabled"], var.security_and_analysis.advanced_security.status), true), + try(contains(["enabled", "disabled"], var.security_and_analysis.secret_scanning.status), true), + try(contains(["enabled", "disabled"], var.security_and_analysis.secret_scanning_push_protection.status), true) + ]) + error_message = "Status values must be either 'enabled' or 'disabled'." + } +} + +variable "environments" { + description = "List of GitHub environments to create for the repository" + type = list(object({ + name = string + reviewers = optional(object({ + teams = optional(list(string), []) + users = optional(list(string), []) + }), {}) + deployment_branch_policy = optional(object({ + protected_branches = optional(bool, true) + custom_branch_policies = optional(bool, false) + }), {}) + secrets = optional(list(object({ + name = string + value = string + })), []) + vars = optional(list(object({ + name = string + value = string + })), []) + })) + default = [] +} + +variable "license_template" { + description = "License template to use for the repository" + type = string + default = null +} + +variable "github_has_discussions" { + description = "Enable discussions feature" + type = bool + default = false +} + +variable "github_merge_commit_title" { + description = "Title for merge commits" + type = string + default = "MERGE_MESSAGE" +} + +variable "github_merge_commit_message" { + description = "Message for merge commits" + type = string + default = "PR_TITLE" +} + +variable "github_squash_merge_commit_title" { + description = "Title for squash merge commits" + type = string + default = "COMMIT_OR_PR_TITLE" +} + +variable "github_squash_merge_commit_message" { + description = "Message for squash merge commits" + type = string + default = "COMMIT_MESSAGES" +} + +variable "github_allow_update_branch" { + description = "Allow updating pull request branches" + type = bool + default = true +} + +variable "pages_config" { + description = "Configuration for GitHub Pages" + type = object({ + branch = optional(string, "gh-pages") + path = optional(string, "/") + cname = optional(string) + }) + default = null +} + +variable "allow_unsigned_files" { + description = "Whether to allow file management even when signed commits are required" + type = bool + default = false +} + +variable "commit_author" { + description = "The author name to use for file commits" + type = string + default = "Terraform" +} + +variable "commit_email" { + description = "The email to use for file commits" + type = string + default = "terraform@roknsound.com" +} + +variable "require_signed_commits" { + description = "Whether to require signed commits for the default branch" + type = bool + default = false +} + +variable "require_last_push_approval" { + description = "Require approval from the last pusher" + type = bool + default = false +} + +variable "github_pro_enabled" { + type = bool + default = false + description = "Is this a Github Pro Account? If not, then it's limited in feature set" +} + +variable "deploy_keys" { + description = "List of SSH deploy keys to add to the repository" + type = list(object({ + title = string + key = string + read_only = optional(bool, true) + })) + default = [] +} diff --git a/terraform_data_dirs/sct-engineering/modules/sandbox/versions.tf b/terraform_data_dirs/sct-engineering/modules/sandbox/versions.tf new file mode 100644 index 0000000..fbe53be --- /dev/null +++ b/terraform_data_dirs/sct-engineering/modules/sandbox/versions.tf @@ -0,0 +1,7 @@ +terraform { + required_providers { + github = { + source = "integrations/github" + } + } +} diff --git a/terraform_data_dirs/sct-engineering/providers/registry.terraform.io/hashicorp/aws/5.84.0/linux_amd64 b/terraform_data_dirs/sct-engineering/providers/registry.terraform.io/hashicorp/aws/5.84.0/linux_amd64 new file mode 120000 index 0000000..d559488 --- /dev/null +++ b/terraform_data_dirs/sct-engineering/providers/registry.terraform.io/hashicorp/aws/5.84.0/linux_amd64 @@ -0,0 +1 @@ +/data/terraform/workspaces/arnol377/terraform-plugin-cache/registry.terraform.io/hashicorp/aws/5.84.0/linux_amd64 \ No newline at end of file diff --git a/terraform_data_dirs/sct-engineering/providers/registry.terraform.io/hashicorp/local/2.5.2/linux_amd64 b/terraform_data_dirs/sct-engineering/providers/registry.terraform.io/hashicorp/local/2.5.2/linux_amd64 new file mode 120000 index 0000000..9e2ab54 --- /dev/null +++ b/terraform_data_dirs/sct-engineering/providers/registry.terraform.io/hashicorp/local/2.5.2/linux_amd64 @@ -0,0 +1 @@ +/data/terraform/workspaces/arnol377/terraform-plugin-cache/registry.terraform.io/hashicorp/local/2.5.2/linux_amd64 \ No newline at end of file diff --git a/terraform_data_dirs/sct-engineering/providers/registry.terraform.io/hashicorp/null/3.2.3/linux_amd64 b/terraform_data_dirs/sct-engineering/providers/registry.terraform.io/hashicorp/null/3.2.3/linux_amd64 new file mode 120000 index 0000000..fe28aef --- /dev/null +++ b/terraform_data_dirs/sct-engineering/providers/registry.terraform.io/hashicorp/null/3.2.3/linux_amd64 @@ -0,0 +1 @@ +/data/terraform/workspaces/arnol377/terraform-plugin-cache/registry.terraform.io/hashicorp/null/3.2.3/linux_amd64 \ No newline at end of file diff --git a/terraform_data_dirs/sct-engineering/providers/registry.terraform.io/integrations/github/6.5.0/linux_amd64 b/terraform_data_dirs/sct-engineering/providers/registry.terraform.io/integrations/github/6.5.0/linux_amd64 new file mode 120000 index 0000000..8ef9cbf --- /dev/null +++ b/terraform_data_dirs/sct-engineering/providers/registry.terraform.io/integrations/github/6.5.0/linux_amd64 @@ -0,0 +1 @@ +/data/terraform/workspaces/arnol377/terraform-plugin-cache/registry.terraform.io/integrations/github/6.5.0/linux_amd64 \ No newline at end of file diff --git a/tf.plan b/tf.plan new file mode 100644 index 0000000000000000000000000000000000000000..1a3d148b28db0240f8b0938e70ded36f8e5cd408 GIT binary patch literal 135995 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 a^xgieaj-HTYLXqJ zA~9k#p~;pJr^h7#BIOb-Mka!2Yb$}2%__mE{YbT9lsb|W!4Q@7bIuf$m$lW-#p7bC zXf%s`Lc}37?i$@fMA29Xc2e^x-`ORgeyToB9H^D|zR02q7F@dUjuWWMF-A?qD&odO zDKhW&TliN5&#brff0YdJW?_%kb!ZwtERWUrmd_;j@%_Yw#{UT3krjLa4baAUh^}8Kq3=>#AvjCnEE9k9wo#|&gp$r4hUk8+6i{EraQaSOUBQ+)} z5?ux?Q(+&4v%bE2uCF|EqpUwi#TBeP{uf%^abFl0BlUj;c-(sdR4r2eJY1kfqT0h; zIS>Vbrwuc}TMuIr=j$+6@attw<6$x%eX#8b=0KVzKmx5nQc^z|*%Us+I5`eNu!OMz zu9aLO0CT=qMx7p(myj-%J~DdJNhXzj?E$qQL!;Br@R~r@RNsYe0gCZZuQV8kzvzL) zeyd}7R+!L&*%b9aP|~OC{R=;iEmHeM45^!jl7}JW`O9KFSN4;|$s5VX8@&7Hsgg}^)53%HmMxI zSX7p2z;xp&@*~0V>dK8^tj4ZTYYFG$8_2h%%6T585O(9=ETuz*@xZB6_sjuA7)0X5I>y zZ%MgI^i^5H^!i{|^X_&b#okuC-?W`#dBV11t#D}Zd)DE5*72iIa9E+ufnH&Uut^}Y zxIhRPISg1r1OO$uY&jqtK30w$I7QDP9m4~|!7NQNeq4yz+r>)c@SmpRS?c);W+Sm= zL5>t9Uf}$n&HlIi#c5N_q2x*=X1RlnW?fFx(VH z+G*)9WL1Dd9MQr+pmQ(1j0!FW<7cHr(`$68{;z-+wB#N@h=`j4h6@_FB2b_jI!7zE ze~n@K_pUTNKU(jvnl^?xQ_1C>Nd2Z?QRe=I2R&S)4n9T+P;kgl$}~a?UdipEQULFk zALc3tyM&Lm8W!YgqCq3&=0mi+uyMSiFt^c2L}JXwJLMvNY5Ndl?@z-Vl!Yh9y!u}E z&-X(s__60a7@HZ+lJ(2|ecnq>h28&E%gifrj>}N=V-3orQpZy3Vo*!OKusA#FRE?R}r7QK^|!2iZmQ-%ZVX(><57Sz zMgV_P4|dQ0!^jyJU+p^=F6GVhD_J5{F3+F04<>#6560qqADFB4by$(vxvdrv zF#CG8J>S0n2HQ)eC@XO(APgJSUzvH}Mb(^IO(t7vM#vgG7>TjKfl8gWXC3Jozk@HU zCK(U1l0?M&BmD1#M7xb>{>vo8bR1cDVjR9I5~3CB??rE>IT~DZj%Ywv-%@ACXJ&e{ z@b4QEd3fg(ZH=(ZfoR11;K>D8!*#oPo?OY$dt61%ZZG3ugOoA)6uih~&CPus~C?7y*WP{40T>MwN6k(E&D^ zYZL%$4H5!00Yz9!A(faCAPA@?Ha=-ctbpYWEom!|VYdfguodeWIB`>j(oE2H(G@>T z=)d&Y)>HVE-h7Vvm+kf4C&oV0=1gO1)=cN#Sn*`_4r`L{?BB!n{T}Cmvt0Y%J>Y7h z;Rfh;;s>~`ZL2%|@$P%TVX}uawY@uI<##@kLV}fU0hLN^;aDw>-e|@T7@tmlh(-viVMGyFBuROIB;~Y7&<;+TiKJ2zrY5ZHAQS^+R9aI%Jr-r8 zNbP4`nUaD*sEBgjo?>sOg>gfz(VV+zl{Hu2-_P|Y$N1^>@3+Ut27vmo}F)J~kyG$bUBp zHz{}WZN373C&Dud2w zx^W)0Q-0~-OggEK-nt5&^tAYGVJV7C%#GS;Gbh&K#znT+-dMf)aTzmEP!CjqK87CN z$_nZH$o^Y^>g`zBAhy(;qbWUxo)7wzn$|NoJvB)p3rX7c?mQoB!qd^=V~WC(Ow%mN>^APsPx+4^d#haz@8@Q*z|q)@$h$O z;|<(%l0rC{9p%zpZqf%EJrO?;~){`q>8KO4pLlv)!E_cq@W0B;ewKxIRd} z<5PW-!rgIK;&TeGfg@faq*dUN_v1PLnOvT|@Hd>dA2{gwRS@~E%Ui;Ub3QxA6kjLN zGd@K}C$~j`GyUYCJz81(`w{C>OjBJZcA@xaf$#;Uy>#ee;MVb4*5cS9>&{J6tl z`Lsv5Q=dtJwg)@#3$s<_%QgIcSXWH}Pj`jC2RaUZv;`r@a^c8x)YzND?pa{CVYB16 zKZPGx=t`G5c#e(d9P37?-zm z%@OUXYv9BtRr}qYcr_2t4D2|wKwd#>&z|zE``k$n>Co1V<|8-*V@I`&t2G0iT}%cQ zTj-kBwQX%QP5@*yYA7sbWAt=Ot@rPCC+y>x@-kj|M(#6bIuFHUes`^kFK+$CZ|~~h zfEBVJ&__qIhThETJyYohRaWO8m{|~tGVEfku~$qQMt{BQ?#emDdlHI zuBP|ZX%+%kyM*?t)}q!bz9ErNS9r4{JOT38Vl3VZUbc+-a`~op2jiK3r*HSgpW*UF zWj9;fE^WtZem#h`Lf`aOL`8l0Xlux^R*Rv4m51e?pXv-48f1c6zi~=j27ikw;#IKBu@PwrV||rp-;|yoBhe1SY8K%g7RC=H<+jOUe8>I zzk8HzXeDo#Dc{Dv$`o9)0^pt|FE_PLv^e@+8dzd4K2wXxvIDrG8>AKs9M)^GL#`nU^We$dMq;EDi!>nGT{!`?$ONOq5DZHmR7Grcw6*QSw zmsx_1rC(=}--3oTCpo^rM~t#f|GbU6x5!~RtN+cNUWgs^@(Xa~{JA*4U zE9VQsW^EN%DF_Fv3~&%Lc7Rjp8^IWNCF~V)$Y&|)Z3&8)!sm!*PXn*!2bxsLPRbl) z4`~y%hi}sXJ*}0b1=WIVk^*N@r>8mH)<;s)@P=*M1_}f~)o6LA95(EUSc*mDGRfz8 zjq@e-VH&}t@O%26Gvl^r+PlGdj41b;fZ5Z4@a0__d^V?ppDS&f>TPJoJrpm8oPSWF z4|D$Lsq6AA)B#zGWvjiPC)9}WuA@)a%YvQ;HO@BxPNN?tTZGnbtiSqNo!zGFk#Z~j z>!!=Ubagiz0-D?cl1Rxx@d7trI4CIVkk8K0S&jtX(uUsHol2<0{1uWJ zz)ypN|AzYR_69Jt;oD0FEE3$8D)h6jwOta@l;t;QCCjP7Ppai*gBzw+a--qRARh*6 zTB0k}(cotCx&61YWlxsGV;+mC9#e(NU@y>MCEme*LqFu$4|5|v3l9#nlwMIs9x zN~%y8;}xrvE_iS#SvoTltJuCbm2qXV@&{k+WmfZfU1Dw4u!eSWB9 zdO$zQ-@&I!Kl^O@X;GbZTL@;1TcYJ1l=JUscTBeR7b{p?AZ(Bwd(sZSDr<0ZEaxd= zvGDS$YE8O465UJvek0IbQ%Kzsew;>WUfIl-lX85*TX_*rJ$oPF4pAI=*Kf!Xr8aQ# z;N$iZKPn}$kxc0EmX_VgqxjsJE~A`3|Fu9c-1qF#SR*PWDeFU?$DFodx=&Bn;!A$D zpHcK9di{9*6+sZLd-dFF9wMf4==zt0KdakKgHUVR%a_%63|lsy?)d5lHlC0CjCNeg zip!)q6iUw&Z%G5_#?v@(hRQ^Ys?2S*a~={^;R1tTESCg-m;K<9QwIFknl~8nyTjej zKZ~UAZBc}DW)kK`$n^C{wTsNjK}^!?Lgpl%IPb#gClRZf!m>a)7p*Mp>w@@#(e$6S4(cQ#Id~92HmS>_7}_E0*pxLm0GvTAD`4YKT&g(nM0KX#0~ZpX(3c zlX5!bb#v5RWkMo@e*W_K+_~$tvfow*$;)A`;!-4#@U;E)e*wLjY}!qUOi2pHN%5R< zDs2#ZO9+@jpj@fSzk63NKe-N}eO$*coHe=@{$r>V%T!kYq!<>n(>`t8&@Y+QZ}7XJ z4E-_jYk?3<)}tl|gznwS{Hg=ss3!^^WgJ{3nV?j2)vI$Pv@4hTFuVq(sJ2Orx#`s? zsNLBL5b-M{jWeY8)4D9uUt`7zY)p5^nNFWntzoMVm-OkpE*Ouvek@$Bf6*YV`jN_~ zXY$J(I0uhIp`qPagaBSx+!_$E5FA`Dw$@5uaf-;JF_BZS_>TujMjjYUqK}oku)ZV zytl5@eNunskht|H_9GPI({@WVY%4Sgd5w&$M!n`Xfo-v&E2}fIpz)D596(u}r`KW; zSHB`EySrVeT4PqkG`zPvATqsf8lc-wQYNw7-SaGsZrC5Zb zjXxB1NJlI(Osu{47_TeWXw7lF%*MdW0IyJ#rEy78@}3sfFN(`WUVjt5V&x{hl^`C3 zFg#gRqd!Dw8rS4!r-D|-ZDUPwxTqSdH~c@GxlOTkL+f;%nW^GZX$SB-gri1jlZh?y zvZ{ADN@5gXB*&H|zry6>cqAbX9N(1T`1ZGana3Bdts<6S9z{_bZb|U!z03_2ad?F# z1R=912T4i9nljGgi`xi)HC|xws$Kha$lx`tbY7822V6`XAo=O9$v7|YOn`Z$eaB8U z&6+(?J;1Q3V8MK>Y5Y|jLS0pfB9$AtgRVx`Gs|wW*#+wgAceWZvz7{C>ch~~dW8)2}o6UWw{ zDs8lwT5eSD;o_qCFvFUyi58!%C{v_C-};FsN+RiqEw5?K8b?>r8f^H}7SNbY3PzXF zn9VZits}U@hozexH11OOui~1qzbrpVksHTTGZN?0nw_A#+|3dP>xq8bT*H8A|CwH}uKS9}W?ZsRFZp_%%aUc_M{X zn4!ocPmmfdn@sOPS}-$e96^SMK6Nb)3aI)7YP(Q-4X6@*4xuftN2u#hMwM^ZfPF~W7o zYGz2Ii?DQ5E!Rii%kv_?-EkLqQrPdaH@r)1%xCBuXb=Setd(Q9E@>ANHRI-9pu5$c zj_{A(AoU3rJ`dQU5o+YVk2xMXgjEaF<#DJbwYp=)4Sw3C-EbhACgZ4rIZ%y=HJL3u zgH1k$rR2h8StRNA18*>n>B)z3E7d3A%rVa><5YC1U;teKW&?>DDiT}-mC2p6L&Rwrz0O}WFMz2XlE$5_87FMC!q`eSRM?>@EAX zDnT|1;-KW_05UJ$pQORVXZcpme;OGh_S=Du-6Ovx32kC4P9-uHX=NAZ7iql zY9J7?%l@DxDl39ild)aMvz?NI4zv~@ zr>$AzEw`AyOtHk8Zr&!R!Rx~yy-b_gltu{^oP}mEQAbRUQtQbejR40mc_bwkvaJwZ zeMJ3FA=>tW>eHdHw_sYT#rlN(A{=tRYE|p9onpUrG|mbG&K0Dk>(G*zw>PntpZ;6& zTa#Q=eXBr1rUCG|6Or6krImAro5Iv^kzI`;NKH$Pj3I>g{f#C>2|o6M0)01|^n$|t zK|JOKMIJ}EH_KJ&VQY!9F0$v|4r@v+$GSD!9ym#RT}zvnG7r^t+Q8WY>+H@~QH(oY z0;}(@4i2JQ zKNSV~rdn7>n_9PPwZW&)+cNLEfHrNJ0qUU7-}^0oC9UH>1wb#0fU6rJkz{DzdDeS6 zKOy77;Vcn?sBO$_s<2_6^l3!RnhsLD@Nn7!Ub>bP!P~YB;U?g}v+YmI_jY%bu-W6~ z=P`3<;OFPzz`;4N-uq`?!v(41)`1Dl(%!wEsQ5SXlWkS5Ze6D*Q9AnZ(=ur_Q{+{? z?X6e=7B&xVbTdjp=9zp9nulyO4)f>n`^cw1wz%U_yEa)zSHP{p!%|cn)$vx&)EpF; zv!2+5MYQIz6$2nUghl0$n3Yi0JUG1Og*{$tCNZlnsaK$J4UFQ z#Xvk>L{-2rQh1FzqSD%`Hby ze-Q2jxFd7`Qv4%ZV~SDEDxGN7Q}Ry{`Da6jo#m{bYhOUkGOOO9E`)LO(pSYa4pfC~ z+*LM41yXjL9M|+faWNy$hczaGp@qQuhOQ24xK%jZdAC|@@Fv)Efd66CaRicM2q&nH zAf{V7BNQwiS<678DD4(Z^&_Bj?ghYdQrp%vm4tpT^abqGt?Xf##DRK&SYx_^y7V~? zMM>F3e_iPT&86wPM#UR2C+4!#-!}vw&vEo{&fnNL@B0wsb2R>(L+TlbQVq5+y&zZ4 zt&Fg`4Y2y#F6`+KtNlI%Ei6T<$J5y8xSr?1k+AUuhV~dnBYqaV1!5vt4h-1kv^IWM zYuxE{zAK0I-gOTAK|GyJLk*kq=#Ro*Zx6Yi$28V6lTj+Y=#J<FV);6&k?VajAW^s|9s z_?!LtM0{lIPlp}wn~$k!4TqA-{~Fb;C2|%TP)Qt>K3=-XhSEc5 zUjKrg-W)uZ$H|70uk9b4B5XNu-P9qw83_LmUGEfC>Ho$JH`z`0 zc1_yZwkEr#np`_$XFUD>&wKEmJZs%Y*L`wht?z{oF1uxmBtJLYrtO?dvYDUBPJ*zy zt9cq$-Q`Z9t95+$XGQH8Qp3%w=1@&z&wit<8cJAkmJCT!j^7{JMeb&QoX2&uJEIR$ zCEr2zm3_Q|L@0DGFmO4anIVD+zdtK`&~j@!?S9QvKQEm z3Vg)9E-(k|eE97AFfj%49+ctGq{^KDjC}5HO?VAr#}y_u3cgS%+(-F*)6bvnGjQTt ztWRelPi^M88Tr};ah!qUvpba6_mV~7e;CcDGL3!bT(~_$*)xx)$2R2yo zx2y_7IbuXZ{;Qa@rJzu}pjyXqbi&pn~ z5FNFA2q{4Dcrv6HC8eP-suf6?o_!Xs=r?q^o_#tVbBNfY$vD-ouweas({U3SrZH2c zq(kmM}Nq9R**;k_QKzrevln>$A*hpz{azC>dHH zX;aRVJLkMx?d`XReW=IcPqV46SEory>++t!2ajf{o_z1emsZ`-`<7~Wl%|d6b?3-% zb=hG4G;EnebB61mvh-}R_$tB~d(fmJhW!~D0J8O}UJlz(oUmq}^hVP!>xAPJX)SG$ zjDRc7g)4qcu4&h~Fyz^=JBCCBI^qa+6#rOtg-Jl&#YDT}v*-h)5FZ4|M^cRYgU2N= z2!+44^Cx&~mbE)*0zYz7x9`}yKF>Cj(JA3yw+vicz1YLZ_xUqU=YR8*eL2t>dQ5$P zmqm<`F<}P#w}j^RL>qR-o7TClob8$a6}H;+?NNwjaO1TliLZ6W*tfa5yUeg@J^!VY z5bk-nFMc9j^wnanw7U z1ErCwv=msO>@eF#)OKb3ETl!_x@yr{_$9A%HIZNKy&n$-`dCy2?A(` z*|)6OoPHM`1ZIbNXO-%}TuCSDq#arlAf=Em2oKZ6XarkmlZv$*br^7I#h$kGC3*Sq zqj&o~S+*%qwx1K1^A3*v9CFL~Ghr%ll?~ZYYo1OKeeb^#Ldf#4dDP_AcH1vyYZjt^E|0)&H7gBb|;=GRP{O&H{<4U09llonYC1-o7lyO zON|0&we`z{#6pYJX8smV2X^&($y8EZu6OIy^!es#^QfqIX|PtOOt-MPfG*i+?k}&d z7n@Qbp5w8~iiSH`0-4?hBewazQW7c`31hX%8U5rodn{ zC??VAmmABYv12PKkaE=v1xp4JtJqki50Nn@XMnzllr-2xJ+2g{4p>^%%3+Vmu+ z7~3Qz;1s>77^!^z!TrmcyWm~{@Pmu5+cwM~w}Q)G$XRMWEj;W=rv_$opLtw8oyv)E z!=aFvZ0J|@ux=fk+4eMJ?6v9Ea1l-xkl&r0J|bqt#(U%*D3}iik@-^(ChaNsmH4CC zEVn(k1bD~MpZ?h`$Lm@q`hUkp=DtNLMLH9Fc-~xD5`6RBO?H9t%szZeVE`7>!24w3 zV55^F8b^(M%Dx%g$kD73#t?V0!_l9IJ<_R%JqRxckykPm_0t(IJKV1=RgJV}-=ZGB zw&SXEHueBJmpZili6Q9;vIIC!1!67Zb&?4>&+GQtE9$csR~2l}S`=b)+0Ozr^eu50 zR>#n`tr?FGI-duvyF$CZ1d%+`^BRL zN!(d)4gAB{ddBmSkMi&iD}ZZAoUJ!v2e62esur$Csh+nDG2>ZOhNj{CiX+}f$2QXd zTIy(6hHcrj&+dR-$?7<1_g5hNy{cp9>-g^=rp}Dda#F9Tj(B0<6J34%8Hlbog;Pgt z|J2*U+EwR#*&hNIN7UnB$`+ zq3h)zWc#l--=@BaWLY>Svxp(srsb}Uu~s68mfPi+Rfy=gZV|?XZ8@)DzG&_lz5L~~ zG9?HDpT9=l;}8F|HnaI03!WE)`R<8(9%d5{-=VfXgw{aEam(&jtL#id7csY>QaBJ2 zs`Klf?%@TX;3B)`S${LPw{_`Z5$!i!xS~Jsf@=5_0E%Fk3eqJ!2Dih3K55pAN1()t z6=6F^=N85VcM$dcBAS^HbnVQN!8#H_<;)VAH?!;(XJA6t@7DHN;Qv6v*2}u( zBM`F050ot1S<|k6dn-vxrS4 z*Y<Vhf1{jOf{4ve_qH}jiKXU!Z{ z-x6AM$%kayI>1Sfih4bhu{s4;Nn=QeVc2-B!oDmh2& z0p`%Le>!)96`6P?xpA#sEVsY+p;M6KTbp~QB_EfM{c^nKp$^EqHZbqk3Vz3qLEmg1 z45Ra3_P$C1q^aetCjbu4D<5h$Z_ip2>X{zio%Cf4s%4{_n;U*ZB&gg?_EGdeP1wlGm@tY#;IZWqC zAHPnM0?(RotOG4*1>x; zS;^|Mrs!pf(0HhH7)mkhVlF=+f@$W|dwpMQIeG@nx1XlhyaX${*LNLP%ujuGWGl9W zzU$45>cBOXw&qR3R1wIY2`Vwz{Uf#1p`rarrVh;wPq?YwnW4+31wk zLFz>5KBe{X{)fuAG%sz>c%{ zlLzsd}A&LGk+?w<;^E`&|#e08Wh# zCK{a|J8r0TIQ4t})@BTFf`kO$ofPa>PxTzv6fO@;Cpjju!~m>f!KT&^?`^HP5~&gl zj9hqmxP&=>`ol#<3Pr@?tY{T?B~W`HV+t?(D~4x%ws>3ccxOVAO^<6-k9x+^lGPIK+*rG) zU{MoQhsfJ;`$VHXVRigZBL7$&Mhccj8Y_L{ud!Rmn6K0^Metvk)e2Mk5@lqKlQ1$$pj(V&NmY?h zkoDBu|5~3KE3i%-Ksuo8k>r*j(8*x_u|nwV2<>0`6Xj32iZvptGgO33N-g^33o1Pu zM5TOVd z;!F#zHTN$oF*7}q^CiZ*YV09RQoizL36I^%1EGH&Q3M=qr-IP~eJnpKZn+;rZa?%Y z46Dr>=_NI(H2UDhqEpFmEHs4qp{!xAF(A8;HGW~o1q-0LJa5S~R>eNth|(V=&sWu) zw~eG4diY1lY*hWUFz7Bs!f{hrH#~1^(W-JG*1mo#SX!JAEYuULLD73A?+3~ti@mU7F zdq+RsFG?xC+y-a$`9u}s0Y%19qN(w1<1CJ7;$B&!i)e0u6fgP~848%2e-qqNy=;|U zVn-T%yzOC*iC^&q=x64ww1P@~CdV#X0VdX0O>fpu>;;5#UT|6G?-b$%e7c_vj8m`< zv!w6gTtj=lRBg@MeDhE`K(3V5&T_n}gcdCp5bR#EI4#MP;Cqs%l=4n0wh4EY1zaJ~VhDA1gk3-7!=&XGYxE^;#9pJc$ zUl4jpDYi4L@GN!^1x^_h~}m7Akb)kVPHfQ#x|E%p{rGuR<5U{c^jO$ zjNR^J7v^2tCUowD-6{!KvI(LbzY>5tujKMhwUasXkpG(p0q z!M|uS)3qbNGTtUpM$)B-6F_K|YO55opjE2QRwb@+$%n?TQKjBxa_dro@2DH^7RwD) zHE=OBmZ=&RCLD3hK00jl)D@w}V#nZ|3;Z}=kTxXZ*JK$KgI;Vr8Rs~ zT?6NGxkR#r+`RJ}_}9gZlxGQ^x_lZg+kw=Yju`61`wdd}hw!AhEGFTnpqzb&aoy~~31E&5Ny7XMJYN8y)_Y6SnNw&lo+Zaj_|vgSa-|@YAQP3i6@0Cg0`50WOfgB3LuO zS1rrLY_73|g=p^lw4Z|K3xR)zYG)1 zfz|>#nr^dQ+_vIhZc(J3)57Q?b$+=dLglS%)B$w!F`p-Ho-wvRsF2 zFGnZMT1)*xU0qyotXc&z>7iRUv8EImR8zPmLr2*NJ7Vv~)#%=P@ebi4yR8%Tkcln5 z!|FL_^0Q>?cl?M#7WUV1ZSCCVI$sixrhES(k0B-i0#R>f24UGECd1+s>O|?%CAni< zvP)G>=awisrrXqYcBGdjoyt5z4RMpclHKpWn0*_ zCOrHPG)4YDXO35VX!=+5aQ6qlD@mMyi5zwisy7Yat#n z)SEY8ks#rY4^54D!+Hlrwg+V!SrC>zZR7932PyWnIqFzT)HVWdzL!= zbc^JLqS+Ra#*fapcQ-VG1`%(_cm+6--5-#HKOJ976kmzRhI&<$voqozSo2k}PBG(o zqox(Bu{kzY$2cGAx802h3}A-N)#)iP?5pv;A=Dxq&ZDWoN2WD%H-ZLgGAu z)jJIgbM0nA&=!(qY9lIr}hjgGT3s<}TT zP8{j6y38eUx6?Eh{b>F=>(f20_yrps>(xG}YV^bRBf3%%P1%gZWcwB6tOpl>L8!}h zoG$-CC@vqSs3R?U2t&3reD7a5;nGYwutG=;!>m&W{>2{a&6H2SyPDnYg*0saRmr;JNj za|TJ;%1<9&b0(uR!>IS;Fy6b`W_dVqlL-OkRhN3kkzv~m3~qj7eh?g(Stv( zmwoSB<#X6<<-2lsz$_uQLI?)0E+}DNr=L{Eo)+e(*j2l;ZdX z&~DJ%DqTMEd5N(!U@~Y2ZxN!7E1Q1zFXT2hp@CwgnN>FtW*veT>4TbxRZ9IHuEH3p zgo2%7CyNrA@aXQ&!nQK=eK4SN@LrcZoBKAs{h*+ihu}1M%eT7 z0O{aUxI0^Js;f&y&sG)T%EPA6(_h-Pi$0jV zpst6tj+Q_~;H!N+aW)}6%0iNee`!yEr3x@(*%zSV)YPFuuiE>3;LCToc2EmkE!!`#zSpUEO-RnYxm`g46=`eo9^Ve%$Nc z+2}mzTu;L6;p4Lb2UYXXJ|~P`Uo+7@P+|I(k`pn#3~sF%{C07qVep%a^R!#E&f^XA z)ZFHMrl#_Dn?3|7rsG?9%z12c9PMnoGY=;1uOk;mxQ%}|MYh1|v4XXv)2U_AoA`TX z5>UMJanEukA1+qDh8M`}2fY6ANIdt_`bemnjHZ;-#Lt!F3M(`ZOt?CH?0qgUya zC3!w1Im>biRWJpENkFqlNXmlbk1oqNI6GP>!tyUVOkIY|PXz0pgM~mgx)dk$nM@^` zGU)y`F-{S7_t!tWl-Sy2rAydqSRZ3)*Q8?WEP1&CxT4;qu9ot;+u1*Cq_@n139y+n z#6pb$m21bvb(5^N0egC=bhfZMzkS>@hm3td8d;bW`KQZ_%#evO;rq?NOM$lbGMr>) zJD8r2x6$Z;XCcjsfTmr4Zq@npq#tf^Md9}`F#I|gF^$}*m_tn$e}*S>7AJOE>?l(P z&ha4H4?Q6txc_-#ET{B4thDGOwwhs1bF^ZnWkWeqqcqOohQH+3sJGH>6{ENI@*vw4 z-})ZOz1pRTFwnngAxdHH>lf9$P(%8+hNRMwt!$V!gzj#tB!yyRm-r!^&wg{QNuidb zS)QVjp(!kyOjlM75z^#VKB(Q+f2-mG1YRF@s|$B2Cm^n1nMOj%c#yJ$LyHaylNKN= zL@JE245-rZ!>jV}BdKP>RQ&m=es7czeQ=u9TQ2YSz#u#<6NFfQwPN5Mt+4GCq6Rrl zB^+$>2U_`&vLJXS!xBCWTI_q`eo((K!|ARzX<&|Y)d@7(K8bVHjS>=E*=w`b8~w~n zjQ^e>Ge*YGgfv8Yar6UmJ4t_QcvR7Fgu^eECdO@{N!HcDPC<}}rsQEo1XT$vDOc&e zSpEkLPHv;A9OrRtmb@Qb$jTQ7T( z>i*xGKu2?km?bCLhg6C=+H&-*Bmt0rlD}goVG+B|-OEr4bIiN6#aNM2r??Js_-duT zubhfbPG`$=m|Zt@?WWzh$chz*V+^P@zSGbh9#SF}zKwLic|sHq-a28Xi7ZqGXl;y) zYPK?|SX%>ua}Yx>-Eu_~uOh5Pp4fT}Pc}i<)y% zl{9O66iVhBTI#qEZrz*?AB|hj>vw1s*hmz#RO9-7Y8y`J!sAXA>*}uM&@(vtG*d2Gd{&cKyFR2T6C&l-IVu^fy}}_W)}Q!ujOGtZI4LFnB3U6DsVWrZ zU=Ri^ZPS6nfr#>nA>GC#CF*2!U$YI|My209bqr){yph%$__QltzjY-@uRpF6IYL=A z-x(!{Em#G^b|iCoghd7=A|Zkwes}%3_p+Pqw2eDd6y+s-(vo>%i$xsMl%por7X=G$;!d zE1e)XAw!v*_Eq@{JoYXmW_7xPPnk}G%(?4$nvQ98%>+dl1y0YAM&Qcr`*}c=_T%&B z8+Vvsz8!i#=7}FXxpWXS79|#qh#&OV2zcx7VMP!T2|vcgNKN|i5(cQ*&Giw=$o9DL z^R7fo=p~_fF|vdk#V{q|&m^@Wr`-zp*kDKb@kAIYR0 z{2Jh{JowdF6Yr-*{SXAxH@=)vGW%k7>r>q5syM^_{$5`<75^)tqsl=kK=&61E z#fW2B4gC-~@2%7_KUUO6sJp++4`8#~Ew(-I#1#kl9!^+~-K@p}WN*!tyiBG48nk|s zLx}=_y1^q2P1ePMfy$rhU1yy}4o3_$KCZbM?97vX4yj9$@!gY2XtQSG5*u~Pw@1~# zW!IkvajWBIx|)_7t!8qoKh3yPgNtn(pJ3%#<4ARq=LU6R$z$M}-8FV0-b)l1rN2*{ zX2-_rGrAArRq!EbACZ~lBU=%Ny+xhm$eezq4okK$>L~L)A-LRq{|&l`fQQlQBzbjBXvP?klkGJVk7B}l^nTIy>I(ioX(Q2maWcn6-_UKS z6~nqS+^l97Hl9WUvof+uNjo&6MXM^Ut;bZFz+Nhw{L^m1CJD<_tpbad(w-t+RhmFB z|LM9&war-r{Hn3FpmokVc=SYb@w7i@HhRhLdUL!RwGof3!;Od`0>$V*golD`u1o*r z%biPKs0uRqH;l9Fo-nrqV&q3WbPPHh7Ij!ywjgZ`)It`0T6pV+GfLHU+;B-jy_Icz zJs2+J%_O~-xY~iw!zp3)F2oKxYx_!XJdme)$*Ilp9w{8JA-}G-; ziL0(@E}m^Gj-B$YTGQr;1rM>3!b2ncD$)O8!=fP_MJgW92aho%4MVom2S3k>#jz{? z1Z`Gap(^i;{yqMS(XX2L!Z3E%vm+~#m)OMBSU16}BWE-FvSK(u`?HSr_Jh4a{N=4F zwO4Jbn=6-K_xLcqB9nq%*X{-!I490BcR?pz-j7Ag{(OYm<+DZ;?Jm^hY|=@gr;qWk z-8d*OTAgI}%u}>3MiL8^HL?w0a3SIH*Qe= zfxgn)Qi9=eJ-v2Q?26)VGjMd9)_t@HVkCArbP67Lp^|Q5Um=p5h0$l{jTKllxUrOB zRv!vya~^|~OE5m^w8wI+)(wJ1lOiolB>bI(vVLSU5zZ{bD(A6ffUfeE88jf)!U~nd zI^|*NQg86S%3{G7B|>&`(hU;Vy)Vcodqz6&o>^Ww@f4R z-NnS>c}Es}2?)F_Z1i|*?&qEsu#Y-7ajDtlV+?fV?bW@U>hI5K`g^GH{OPi{Y~w+rk}9j!0kVvNW9_Uv%WeUkR!Y7%kvBNe2EeQD3ta%cscDNd|s z@+d$0wEKQoGRH94EyxrtgH?v3XbN>VS%G5Q%D-tyB=|%p?;kOA;G4gXrPbv&fum*0 zoJtBL-ZlU(xhc8~BX-)mP^o((?8?%CFW+m5cApP7Dw%ty0M`zH3V>L@DZ6wizquqK zOr7!wF4+Q>OeFh(u4%ffX7_51Ba&8(x@#r&{9k z)%5~X@=GxUj67TOUsq#MMV*5(i|Dl^HPl9pr@;ZiAR(aoN8RpQz(L`y0qe0u`#U4_ z*GxFmZ?goD5v+p9(&tAI5Cxty<9fVy#wJCL#>i?1smD(jiT3wIdFv_kgom_kq&WY= z6xJ#yjfdS|mf}$y>Fu+Xt^}y+S4oTuKk}i2-)SN)?EIY(O_Zd3t8O+2mRMVWKtbQ; zhq0xX1FUX=S)@_&fQM?3HMqsDvO>YW$P>%#NYot7OW|s|^zfN>p}waBHNn#zmSl7O z%O_d9Nk`8n@8lI*h8f+s++PHNQ=8loa*&McC%FjEO=>L}MX(ZrD%lR6+At(4Bm(xb zIPLE!PB9P806IvDZxK2)-o7+#wN0YIqJo_25u~JoaFJ}|uR)MwnMz^TVM$|O&)r}{ zEu(Gd6vlY8*yXJ&(;3mraxbTEtkHiDt|3lHT5w@u&NRw7Bok{$3mK&-E1`EAztm(v z($TX0sQ_j`PfX32M?M#X{pXQ->>Sn)!~-A=g|FU(0L1`pd=N>mR4(Stv144^JVsyY>9vx1i%q`#HLx z0*12B=xAymzTSPyAF$HyYWstk3NpjKR71b;v+zrsK8KhrYta4@Bf*n_S3_K2LFfBied{$POfa}TTjhe+V?GG4+3+^SjnMZIjH|u-L`i6(X_CGy451aOe?hHC;SCbJs%M1xLCrgfIh}R3PEu}s zIAF7&x?O4iX09@H|LC!#WOU?z)6pHeidbe0S%4Kbi{@7m%ubXw9r)|(P&tMxEu;ce zs5bIy*JLBsAN>7Hkv#3;KN!rpgB9vv0lBUmDnrSSaGP_UjLaV#u4$*-lO9bASqHoq zrTS8Wr6!#I;bxTvuqY4sQqs^lc6}VM&@$7I7_fgKzNZQ&kdLG(rP`){`XmRgHS2Ju z3_i{cl;ew`TZCMtJ4>`&=C4>bpS<$#!EDex6)`y|IUdRHy>*kpy7OTnEzoPB0%x>; z?6c4=&qonq991jsC-9pws-XgvbpDGD{1>IJ`7dhmmL4Xy8~^}5Kk;0;y?i%6KRgjz zhCPvO&00DnHI0SELy8ssuJQGeh;%SPRo`_GZxopVnHGn%B)mWwJ&J?v7g_IXqz6)UIt{;WY)c%GH@2rMoP4kC(6E=kf6P_A2Ok-%ah-n+0F90Kx;5Kz zZf}~XmB_|%=-HM3k?iz*1?piad~Gv@fJvH^=75$ogNEoARUL!cMXIJ%3#A*%TxKYs zgZKIRRob8S3pRp>O9de#e!Kull(o1vBsFg(x$C*&#>QufR2yf= zTt*;UnZv@_8D+Zz)LU2*m7NDYpjIl9>hSir7@GPkTd!RNF}2O@%HU^8bbQl3=96M@ za$JHA)M>kUElvedU|;Tx^#FX_`HxyQSD6}CJsz<4^c4vi9K|xGHgd2g_j>G<7N9Ri z4a?Zt@~>EUb_3=|)o~sSUedoi3*9rO_P>Q1jiWzAxOyS27(9ivgHm}eUtUIv`xp2L zR8Dj6E83v7&!qFy&s*?q+i9Wx5z=O&!Q(>XeJ^DVccT%7$1CU=m|rOjLR9Uioi+K& zHWfM|E*6rE-H$4fHN*MOZ?YP1jk8!7oMvCZoA}qUV41>a@nc9QUUap1qil7saXZU< zArG=OxttgOBu`#x8!!*)_Hio`)-Kgx?0A?J&3bu{`-TefZ(~$rZHU$aAW`&!n@m)1 zxQ5tAIzr~NmDpU5c2qZ+t zf?0#C<Aqy!E-yjeQ;o@sLx+mq(|`o00S1~xeGN1unUcH82!W_J z$t8S@aU*bDfw-%N00U)Wh(7o$1S!gZE_o3I1|lIkMp%e2-1ndag0gz#M5Zc`iI%Zr zv%ufSz!c~EWLx6@?5zasJaw}(`D z+3b(gaFLt5hNJNEG?lHZJR6kuKtE*^9_~~!F7tkcUPZ5e@S#?})7=M8!`YV-ZC&2# zoUw)mQ$b?bm;LYxJ>2XmR0mX>hmR~wtB5jt)tFTxsJ@z3#DMgy4a){!)5`V zW*UtA+~jUDdv_!?MlAxMkTCvy#=eOgdF;^9SRs3oQ3+e=&huajS**+!2lc$PUm1}s z#Z#$oM_ttG$LCkN?jpIs#e7QLD8jAU+^oUGUV3#}xzIMSYgxwhm&V@hVb>=-M{-1t z_;WJq&ycL7{V|HVB%3HW` zsYZU2PwZO8G}KK|8t8QuOObVW)qmV*5?>pe>|JotF9j-J=SBYNbkd_f{=3}bL>E&} zY#$QFbH2L_aAV=2u1OmHw>~zFA!cup{yjW2v)h4{GWJyUGl-T!6~2nDorQ;y*XIyp zLZeyA;{2AV^|qb&VD$pirl|2ErYxIbtV<^uOet)L1A(4~ zL0(`};Ad8Hmt0z87=4#->jZkTw6p2a%XMC2UzWP68XKv_A@2+}eB(#l{v4p5`I?FF z3hX~~Oez5oTi3s59PE>3{^r=(X*(<^(iB2!F00PMYs4`a;6Xq2d?majSYb(vDuL2m z1qg=0Xzo8Nn;5*U$$C`n3J{!toOHw8Q8VnbCm_=UN?CB-Aal5FnQ`;oFc>v3fUFDV zGDDFSlrof8NqjPt!D>-S&JL3bY2x{9tBZc1sp8YsL3WouLp1e@Q@$~n?9 zp@qL#$VyFxzv7P>{|24VC+eQXa;u&Jpr_vbIJ24;)=-4AtL9q#JBl;z4TfdF#^*8j zMh{pG3YmNR^22cRNI^M5Tl@~X)QXv@*m60imqh9r0B)qiGUgJz6GtipkV8JM~=J8a(ZE>Kf>lEp!_ylZWg3BGdd+oHn)ckXBEr^wBPN6&&mus0<*tN@w3b~|&9NGFekL732ascU88TpeO z`n$5W&2Dj<)j|Ar*JfI3?C-T@1pQ9xtYloT!oRVw+s*4emtH>bWc}P!;>J59AaKW7 zqQ5|E6p?@rNmC4^*xT;&iduF}O{Qk&mSMgYV{vDLJqa+(wbWta3>iQ9;v$0LA@4Ww znzj%JyN6E)@%h`MsVTvYJD}%wV=9+8iMK`Ne9qF#ESH$%ckR-lnH~Vk(JP=^(B-p- z2R6GX)F}8C#G-A_f?4bud7Km<_zu8$xXE%&`Za5MWvIT*;LQ422l3_3uZ(fSFH@Pr z9p5hgrOgj=gc#506U;WF6N9F*Wa_GZ6&nT+n{LM0WaghVdiW2wHm=UII6SWXJ=vqB zDaaO9jD?S4){cZEg8g@<}7?W?%>+tmy*Y#Rr;iaY2e=HW4gSi zoAz`hxy~})P9Cc_sTZitJ%xaZ&2$8LUk0My++bF&wwP!<7uq@q1H;_YznusO8h$OE z5gaXFRZ_2v*XUA`xCql4u>$>VHeO4{X&o?CVLD{L)+5PCn&CM~qeWOjU5rYK%q>5V zCg0)qphMughSo`PJ}1hhiCSgVjiba+R4GrA<`oKTbe^lLHPq;KPW5{C&}9F^A`yCr ze^+Rnp^8TroS=$jy)BGSgAy`}meE*b(tI7JTxXtPL93|4!cb)?_RKa_eU@t2Nahe` zne?~vwZJ)YxY%t;>aZ)~Ar?l9W(X1|C-gu!nM?;$vX*eBbPPOB%M~RXMwi*g;yH1vng{wO@VqJT z=ETeG0>;~br<;1$AK$5cooYG~#in;;(^BjJWOAy>sx5!(m`pg%LQ9fH#4D0q&(Ft_ z7E9FCxT@tI`8`EdWwgeG=!hh)>+LE@x<_8>7^8QW7#c5^T;+RA(Xo1Nn!n@*@{(rZ z5sQv-8^fCp`GqRb@C=NRh%0y5;fS!t6l6#!pY_5c@--=<6-f66;t1_f2K?0FIb-r0 z0KRl?v4>a)w=3yD$O|J-k?to!2f;)ePqpvJ6PUdoIPR z2S7vyFH%Q;Ek!ZwVb{eU3EnRZiiC(;%s6GV^!o^z$9MK!$xi)~=h3ZWr8fpnd)~4- zeNF<8b|3gQD!MeBo-gy2d35^+9{S3;beA&apXfV%{-wRon^c?NZ~&GnzKKUYwi7zX zK588*Xv@VcU6E;2!O`*XuB7QAGj5w_JdFYU2sH~iO5Sz0Em3+vWKWgckznH>A<~V@ zJzV^Id*P-u;Lvj}oji6+qMhHdD zyU&q%{V>e4-XBvx#LF}@4=}oU5Q11GG#*`Ibi4fOy!|r}u9r*F$GSg4I3C@}8*JCC+*6cyr1jaFpP7fBo zv^}h-$2xX=W4F>1*tk(1k}&ui@grBpKieN!U}g?`8%g624ssru`BT}-@=`%2G6fRG zj0+om3}73FGS@ky!0g*VVfO8&{wM)aM;^eNTkq^^2XK4TcDf!phxsojXmxlRqAFIh zxh7i|wbFm{kB@xzAQlF~Et64sHvZ?oNYv{l?*goQ27%r;DNF6#s_rP}XzP?Ug6yWw`!uhz52RyR9FxJHL}I3T{NT3OZ_bepuB@)?)viYV5a-UpZls5TdYNYK-a%c zb3fM{vq&)NK0H>`Wamk!_`NQmx)bGEVC0Fad63Fc^Pj`1Ay9u`BxG`|ZfoO>%kOv= z=EB(cTmSr+n)-NfZD=u5DtY?b03OGOtC>+NfQQd<@OQ+P)1bteZ$Xp^NebNR6LZw} zDF?@Sib=0c^W<jAfM%;aS1hkOm?S}djPmd`%yxT7m zA`45{P}FOkpuW^^zjT;PMqE|2r0}~*L`Lhi1q)|>@-JFshWfsAm>9>&{cc4fCTx^Z z%J)C^!J--#3KOu_i*hP49xP}pNem?(F2b1Xc`n;3Jf@sV6PjHsX_yTTF(+j8u=d2r z?=blNfU$x?*rOX@s^bB#wJM25Fe}$|it3ImJ%{k^7DTun&4tL;VxF(f^B^R$=*ANr z6WHNvaV!G05tXGCkpoNAfip?Hx&-1lLg?My&k%K~CX=9A`@vq2Ma03~wh^JOI>d^I z9C3i@yN8iljoukUx*m#3q@pgWGsyPKe8agK)l-|Su)0)x)0{*cR)22hFxgQMMk)Op z5arzIudzi`anrOsrZDGsq&pT(Wt1CVCX#xvzw)Vpi3y`EWR){NAx|JLM(4w`Q7v8|z3 zZ*veINZu@Of#W0IJgcT(?I03`ld?#>^wkXXbYg0``h&MG3wwsE>+~UW7M+;kxI4VEow8#w%eDVJIu7VHXc*b+0m_fp`Eh8=Z4Tdy4JsQ) zuaIQB|33Dv{H;z)e83>35G`-!FZ!pyF#A-m=j5PnbJ+h(*sS=*WOG&v9BS+pMqdOp z%PfwK39E6a>ge?R^zU;45r?$tI|KjLI94vtPH7OH*jAfuxOVAdX0znnv)mAG5~kLj zm{|QEy51?ivhRr=3~p@Ow(X>2+qOHl&5k;@&5qe|I<}Ke$F?;$-`{`cGxIQS=VY&Q zA1Y_>Rki9=)q4tLciM&$m*u9_{TnY0^2>Qg8qG0dqcc~DMD2lArbBT?q|VB$z|lc% zy=G|n;rg**Kj&YmhH7#)hm~;02j@7{ztRq+e7y%z$x3evV$QFss=mM zn!VRh}2=R7L$v=JJA|4Emz)Kz_y==dv&X| zBi)DYI~aS(Q!F@$NFt>MhUR9WFm17CEmqw#*kLB|nlE}+3(v<+`v*t)^V=koFolPx zdzL$r8Z>jwZFO|XQyCl&AS%>##|v!!_OtUIGuLoSF?Pcr2lkY;5k|rbzo>zIz{K+k zg<7dU`=BQ!trhMxL99R4o+{t$%XKWXn(setbMUa|uh*;GefqN&N&;I*-;A^zKE!g~ zUz&MlGv3XAoKVW4ha+55?Gm_Vx-gU3@4y#}SQ+=AXV5W~y+KXMP`x%Lj}b+VJtW89 zvcfbEQKQe6k5!DO?PI;?-S(p^v>?NNklYpSbH0b=9@JgW>emkjOX!d;GIg|nY#La6 z-~<$tS+XVDsCV^jaA`l?_9+RpSoFK+?=>cm=S8VHJWl9#KYxvjFgx;fbVi-_PS%Xg zS`^KouR-$}tpBDYY_Yw!;f*zpRJ{}ATz!gL&i zZr}$6C1`50XWZ-uqpZp0gy+6A=^FFyl2t!E*>i1uOscuSH}WDYQ`Y_qzca?K)ej)> z^iZcB2G_iRAnW~O&ncH}ILx*55--<5tgchqzGi&AzNG}U>IRj7jtC%+^2}jW)W)Un z$J+SfYI?8TcS7)L_d0>4WZlc4o|Vl)_F_5stt5wQt2EQhQhLKf;n-066~a2YEc@?V zxy*{WygIwJC71e6vu@Uyj>bg0?MM}l!<40i(XaQc%D2j`u^ctsQ*?64OzX-Y0_sxB zC3G4k>>PE7d2?1;4SAW3PgyQw);V*i7Q!V0kSca?J*+s$$fV%OSX`U~Eo&#c ztBX+etDL|$_;lP^Vfd*(40f7Yd#C4}Wo5v$@X$XRx8SE9;GjRumn=HB_=X!NW% zA-oVLWej4j%NU~>EMuERo1Fc-|Sdjn$705yg(UiP#11! z=Dpq*tEsK2=g6S5y3zZY`Mm64_1({^A2HV4U!G;d%C2V=(_ZPBBiCM}_L_(`cZ|SRQ z%DGN5)MPk4B6uohin{BWFq-yhV`dj~qwVb~SH3yf&SlBoT^$+yd{;~nK_VPXm`B3& z>W{f`WMAVN!}(3L_gAb-04i_!K7@eZYN8Y|ce1sq;~r6f_hKLX2c~$Oy0*>~3qR8V zcZL{Gn5byH1pc&2_FxRY&gpDLim%R(T(-HW#=4zZ0elzG;kqs(Oa0=MLEOLB)FZ(+ao-Wox@J<%yCOq)OwwL$Di zEzx0vKXt-uAGa}Wp0dW_pf?m8h1d=`L2Sm7ctsekw&AbFF}A39xLZ3hTlhzB-~bPtSl_lbVq zw>_Ra)m2+#d+nq_4Ah73q;W`cB|3=hI$bhTd#*!6U{2^oyoa6Y;g8=CKK2CoY*hWI zn}!(|=iqSVc+=!LlUJhA3&z9Z%MZ`#xqz%a6uj{JJYC;4pt~7V$}F&=lvL%>@!fds zSs_biaa>=SWpGQ%ZXt#;-?&j?Wu zO)8q6F^iFrklblo97{_6x%bTNW*ZJ3DcKe~8snoW5)u;E1_J)$)m}%b zJY0)<6_Q(%fCryOV-k3pfRhf7ojBM-;MdZzv(F%d_JPKpJ{TX3tRn8kj>kU@u1 zSN^FL9hN;o7B`}mOha>F6C~in3rdxPMzF1?_e*xM%A(sl@uJJ}Upa-9PHB9;6IuY) zXzt}v%siEr;F8u+YwfY6x}E z=hI4zpLOLzl!=zJ`3R1p0cEKxu<51*?d3rycw z0SgAsmdpor;qy(zFWmD3I7HDZm!#kgD&j_$-#Nn;5@uhTS_lL97oomRvFB@T3+Hd2 z>W`Q6fO$IMUOY_F>w(vQ5kx&SZQWiJbfwpm6i6oej)jMC1hBO^x;-ZjBAM;x^VVS# z)ayCQta6k>r~EhK#9pZO?40rwtb;GbBl^vS>kkfP(EU}(0b0Pny#5Tzkh(>Z7*~M5R4;A`ah=T*l3;| zW=*N4Tb#*78=f5@mN`9Y?x+GtR$X|MS1@!ZP+;LXw=;NIQ=LPc;v7w3_wOKSex#aow?uSC zr6NSdFwgNbX@2BryHH{nr@7dG(K*Y}P%T&XIxEfF6bjG^&K_nM_0IlH7RhEei{qZE zDrw633I2Or)4MsX?rv=Y!F7Hh=Ne)7xqND*yI1fJQbI^U1eKFsCz9KIh_~6YQ+>_j z)@DnD0QT06TUNkEGS1H;oNErA!D|9;N=xP)B1af*{HNF-O zTs0|6F!ay}U>a?8=yd%79%IdZG4^)p+Rf?w=#V(oKh`rucZ0L-x4o~Au9ZH_!k#t^ zlo&_N%KE!~Oz?cxT7q%A=k>DioIzg;un$F0UJI4xXUWyF`6|<1OO$)A@1yYq*pAk4 zo9%X&phe=9{+V0{%kjs+Wz2qy%KEx|++_vBS%Mo!_vTBR*8E0q8nL6k%{ZZ}X92BlHLdKN2ZB=ab0qIrVDsNhfN( z10g!v0{uUNO~Q}R&91ydp63AFY!LL#=&U!4foOg7gvHhZo@hVxa7Y`xaAQ_67Q1*0 z=U5P{>x2SC9K2Ecz>w;@5LWs zMJ_eBXTtmLYiSLmK_`87fBdb|4i9L|i-#?^ovhjBuIt&XQ}^u-rwi#j`olJ4bl5P_ z#BT2}3h&T#=d0f2+|oL^3s3jg21bn)Yct}P8}f44TKG<4CU;g7 zy4jwpbdL?HvA#dUK4!SI_&Nx{O;0}?vjha(`mPEHnP6Lw=D`fTC#fe+{GN5$c_{Eu z_ndrvd`@PYFfQ`fI3dbo9eG6@hqlXUji2aT58uHW>XgY-f4Jli=SyXbNZr{flW0fc z!Id6Kd&b&N7vQQlvmQ#`)p?%k;ic_TlVLEwBUT&NbGh5#=V6j!%8BP^KDBFgbylhM z!Fnv)TuTV9nfJK{MY&ebrzc_QeE~kJ`Gat)|24+vxyt|h; zt7Yy_Q9{AT396G(8+>JfG9?XI)NQ6*H(Cbod_yTD@w$w(yFxeeI|aoPkE?~+yc>so z?5%}UOA6O{{?p3oG%gNxrHkqDXHrzx)0aY}mhc7bM4y}EGFGr(&nYz18n8jrA zD8df4JTRVL2dOAoJ^aI_yC`d`h9|Tp`LH1L#rgaxN%d{l`*YA8;rOH73pkE8$MRRe z5^o2iOf;$3s@qf7_sVqqO;L}N4=-7zth7VD^DZYpUw_a%uiCd88~91*9$%YEe{J4V zc)c1BZJklm%N0+1;J5VPFM90>Cx?e>{>-T1mM#8_cvn(5_nRl$=f|Lr^eK*nvtfUP zI|Wi1BEyV#Bv89dPQNi|-dd(D%BHM3%Yg3=*WWIdnPNHX?4LY8-%MR1)HiQ4Juke^ zl!gyz9G7m*Po1qfovWPFaZ+sIa$%M56)YYLbJNBvabeUf07J!D{;NXPk;s!c?TbU zA6Hj90ln^2!^{n|By0m30ij-2N%8%kol}M>SD7MB)T*1Jw{_f>$3Z%piG*RwWcP+%v-d|1S)xo7^c zKUn_?e%Rtp~frt$ou0r4U(SB=@ybC z@1t`a&FhPF6^rMId)9QF<)db+Xvs>iuN93X#r=oFr`-&<2hoLOjwYT|(~0KfdlJR&a!m4i)$2RiJidE5)i_h6Xiu>wtzv7B z*Ms+tMmT(3(w=FrnQ zMYGqh+C>mw?ex}kek0e{lI?StKMhu`24LMBiulg(fpl9W^|T5 zzg^6Lzt}yad1ie|2M|4((maTGFSq0j`MLrzGUL=IO`J(<+D>FJd~WKH(m*fx5g9uq zL_^bmejKtez+?i2*iC5qsHi@MHZ*U0QrN}RF=LmbOF_7qdSkNLx8^k~w4dlYvGDp% zsvlmnOUcG60rPj zfBCV>|L@1jl2;5%hj-ZZgyvYy%?MK6Bbi#IK|8oXaqUe9mtCXYVVBcvWvAlnf?w~$ zLfzI`jAiS?X3U9zwv`kN(mq-fOJ({`)mpcuO3m? zx9QfDF4CnGmy45hfyVu*sNw-QZNK3caKB~xg3kG(*<l84a3*o| z_NkiT?k1=YD|(y%7#Dx{zv^#eQ0uJ9)^k})5b*D*-B9z9Iej@uWswp0>0R+YS~$j2 z5V*X7^jBHLQdhe`-+kDR4e;-&*?b;$8S8SIiXJ*Rmu))O=t4J~4S94{_DqsN*TfT8 zn7VM(WhgoAy<_BqXb5vuxE3=Ia)8A`dTQTC$dZ(3*YLJ?m9;7Pmb01L+oSeC7u>hC z8$KL+)WrC@F|qu}av!VKyU}Ze(cEQ-7YDg4pxME&+5C&|5*}FM-o3_yJC-B5+2fG^ z+Qn=YOPJC`SK}<(YE-6HDYU|`=~;ujd3!J!>11}j_}w7JxlF6mSVHR95Pw^fPhuPg zb|h7av6+0it+wl_E@d|VM5aAyTk>Z9eEgZsh8y-?ht{Jy=6${qSScgXWYAOT1_x|1 zRnQUOh%a=A&b8`5=3o@lTQZywYF4PV-H6-v4A1 z2VA85pi}YVW8C~UbV;Y^cKDgikap%zqPN+fl>p?rFq@r~?jE$&T5m_#Q%Ih@btb%awlOL<2jOLVbjxLo<(_ancPlJD^fL{kt!a(FMfix;L; zT{&D1;_-u`QJjr0ew(^9M@A4G++h-rs}T;5^30HzL}TK^D;oG#g$_v)P;TIKjT0Go zw*S~AoTWWdLj4M|cJPK%a`7{JIVkwobnXJ7gIF+Ob${9Y^X7FWwiXl-X^U(gG7PZsXCjerQkuVN6u*X8r@w31I0KbDqXb(S4I3hwR{olw zq9J=&N((KaaxRnlN(sgM8{FAVV&?(g@VfptVCIyX=+Y`?pSNRKBHa9+G}!EH_uidx z*uRi?!ZP0p((9`ytP7KW`;4yZl^3L+=NW-wL~xK6Mc}==jH8m z$24G4UWe$9832HR2@k@n2rf=ZuR{?zh0q!hxF>FW*;@LVCF@hQzBY~nQ+ z1QATzSM?NS(gHmzaV>r; zVyfI;xM}x?;n^?O2DOj#blzH`0SGQTWcm4hACk4y`opFJ^SI~iv~_^ez(<3O2@QOX z_MYimxmtHuH9J-9tQLEB+nl2T2cvFHYjW4DTc<4DRNgh)>P|RY1|RdbkT@f4PDV^> z_F|JA!O%r?b!cX=wriTDc6cYRJ@!#8;bgNh2%f_MJtv!kj6ym=xK>7N7M|QuCZ-9$ zD^)5(A}d#Va%Qi?(S7bQ?w|99(g$6#L2PjGI_RHejkWrY0O8la#f5S71A)=|!qd^e zhbIKz=@Zgx92x7P5fGCfxZGUwe*_SSDMCY(E{j3F?E1g@OBC0fWG=b;t-D_p%gt4C zO+l$LZR-AsO|BM#3$>f=K}w}(^GyYzcunn>GYRnVvb0FLlAShOlKXd+AXJhu_yPSm zH9@{Z)!SR0F&L!Xo1O7y`j8cuYIfwKA%x$er-czzY;m0)8_@|!f}JD0K$W6hnF3`B zDn^yE;T$JPPy>^mG~)pz$q-lIFhmHez>vEg+=2=tfJy78H6u&eoK%MitF$IGAWP8( z6+1Zm4+%)Z#rWVMuBd3KoX^8k6oKB+&7wdw}!pXZ=da3w744|I7I^!NjDXc_|r za6Wz4(jinFkg^zBm<3mt^5YKUF-TT`;E6rr!Fa#LMjX1R@91{LTJd+#%&g`b zKgL)JPB&a-rLB`{0{H!b!)WJMP;gzx*af)|UD4)=p=TJfh7X7R9ZYb0c~4x94$$F4 zhQ^LiMlCV1#ymY`i1UcgcW8oqgU|8vQAeqQd@Y*r!Jf$zrsYz_i1Pq98MDsNd&$Cr zmV!hep~MN(ZrX4`zNJ$-(0eX$IKWHP(ZhrPA*G4)ly`tnw7ci=zFS|Zh5i*Vg@D;& zOg{mEWS41P;pl zaFnhZM4+J-AfdIm39(i)ZlPZ%w;`nqG&gb93ZqpPo-kt>_XB zbTfz9%D&EnmO4em->28spT`iQ>*K#L^rBX?2#_ObYdAN)w}Ih`>Ll}`-4<)XhNdX-zzgc~DRm1i5>>|Xk4C>x>|X~G|9DKjsPT?~mibSYJ6Q`mtx<2=(|UHW^2yF)Do(4ZbPKqfQ4ZeMUM zc0oGYzfkwLKch3DjN0JH-MqAK%z@OcDd#AGM~HZ$AccGok+tc4TOnxj-%qvMj=V2t zdyo=qaMQQ^+bfv z^Ghvx%-8Oz)<@6Wci;V0&oLd;V<~RgZp-wK7aSOyT3Yu$wh5wv4_BZFT z4a_Mh^4ZCCV7HU*MADgqwioP;J7sh~da~Lau2)P2gX=@GM4oM8zE#T9II_GZp?! zA_tLxc`KFK}!AUw@nZ9KD4}$cL*zf-wX(o2X zq+klXd?{r5d2fkBLu;}|Gz-aq#X+JHD>sd@<90Vx%NsZNs`nT8@xRPz3c=eJ+ez5TK#i9rxu~1k8fJRZCA1NDDJDs{Sqq-cqCq6 zK3GH~TQx9bB&cMup+pHw$O`?H`FpYrsQ)a}7|i#j-9Hf%^d-!$ThS?RNV-BBqI@YV z`n}OeHbM!~M>S2Ts<}}56<1zJ<*;Ex3+hS4KuM_^lr(67eL{;Xe@)0H5!*wicHQME|e&)9Ea#oZ@&R8guZ{VI_d8LG^C6zYNL z`zRr1;-=rk|6*qh0H?uIDQg{=iTqQS_?Ix+K(FBy3jCa%!@(src(WNRrYoz^$iu#0 z(UVDt#KNdWL_rEWtL^qA9rJDOS7`c&)`+xK&#fft)^F**V@%}qSX=sH&{W2)*`c9c zr~09x*b$U=p;Ewqgdnd6iCX9&^`7iCvI*r+2J;Q+gAYV_eTk>5R`lU(67tYK?jBTd z<2Wbem)|XMyL3)SOW05(gmxa?6xHDUyekQAfmR9!7#Pv9#8(5w<* zlTx@N(Xv4|Kg>YkhMI%4gshU#gZHzJTJVIL3j>$wBkJLy$BB#fkyAm9aVC5PL3|{& zAWs`H`&p%Onvqj~W3mD-iRnWo8U8~C*25R}3n7ggool$ggbY+bli&=(q9%#BCyDH| zfXXD+1e0wT^1ft{!7<|(qKBbzj9R7dd#Rhz$SYGMCRzVPL6`VOD?cwa$DJ!dJI#Vm zCY?Fj09!-ttkc+6eMz4>I*O65o{>q5>{9q@n+&0WAm?7&*U^wc$XZt!5F;1Vw)2vr z7Nq{(kV$jp{Ol^tV6LTW3QJCsSO_@_-|3qFtqqLN4tfXnESRp|Ve5}DhSvT}lU&f< z)vHp~n(maGW#u|_29ZM(eam?o)PW<*236ZzF~uib-;E~ERVwQOxo!Z|96edf!oPB>rtjeOUM7BndM*GL5b z0NdhHEF+u`0Ax-&Lqn$o3bSb=f(D@?TS<(Q5G#R!um=YUFPk#}F}$`U#4`+L z^Z)?xnJnG^kkp_-5@7*^$X3ylCwGVaswiOKaTw&xGiS^*%^vb%st^S=ke}2WoWd0K z_DXo`4}WA!6KQYolbGq|`BQk}RERAaLeb-lIn+&f;xsWbFs(;rz(OE0mcEg*Aj1|` zJ11pga`9d|#F(>^N*?|!9ga`3E!DjH*En3gG7B6oEr4#Y8P4!eviFbtd=;PBr22fC z;^SqfO$X;q$I^|H_n-Ar9OE4vk%TWFOQZu1aQw1L2OjR)tZ6Bhm?WFs8i}!Kqai#~ zI41js)fZFizQj<{B#rrby;27}=S?FbXCZE%-qL694n&lSbh&;^|G<-XBn0qu?3;6a zupTx9KOA;0Jj;6_uC=i6V*l=G;J}LRT<004TQWTFk}gp6Y;a*$crMt#V;{incy8|Q zaougAo&_6GW~Z`F8LUj#pcwrwmFTHcj1!Fp0EkB!{BxMvczVOLa(BZzVhj`xs*Ud} z7U^pe#=_&o))qW6LTV#)<*yDdxNs98nK;{!WUD_AW8Ori2iOO&6HRUlkFg4ju<9|N znV@;<^Dhc4Ab@lCJX`4;>=eQDIp!Z9y1=g|vTiS^B8gDVIVK3JOGDs4B5(!FpAaEWV`4v$+uQ69OQvZa^HUgQq} zk`>~F0D|s-cP`Pc#>BNArc$wC^=o?kG2*Y&WnRE1LZLq3kyr!T_mhyrtI*=5T%RYi z99x)*R_M{S!men;O081!+~U5=7sK#9womU`(q&E;0coA_`}cZe(|I^vVCMkzhdijw zEl=hF2UX@iChX@Ra1kzSaVGSb4$iq_NZjq06D}p-7qu=fsh1EM$AQPuV7{tDh);*o zC0^dDcH0`KhjBUuY9Ek#bV+d%8vtaIvku`$N*k9x4{)f!#OniPrKo+M0K}EQo0voW zIl&5CT$t1CE4Sy_))n0J%o!@dJUicC6hVZElkn=0A_6fjh)S#W>;>Ok`l`#1<*VN{ z*0X5n1>lBRTS#K&R~q*33b=kQE{f&fTlS=X>^~ilJWa1qLWm19p8Z>`jiaS|$}I_7 z3{#cmjXB;1T=~Xn=SUe+22)o4m`RE$z9Ic-i2BgDrDJi44ki z^uRCwr_S*!zo2Sn;IVy zX^Pcl#fhG3O~YR=8g|S7oOm8JH$`->sbYN+iM(0?b9e_Tf_a=&8ihSklz)It2}Mm| z!7376W0yn?L#O!LgUcSu_oJ49Wt-`Xf>K559(#1|bx3yUjkn)UF1}?M#&{a5;V z=jO8`%ZUzfg_8A?EEeUluSijuKK|ozQu>c(P5Z^n-FX@4{NKD6h~Q7Fxa^v~+*eBF z=PoUi>Rzo|dFWGcj%{XP0UeVvoqv7;nYGR+W*5^z%tD39XwRUW-N-*N|#L&o>m;G+}`w!f=-p}RF=g)T_KD(#y52q4$OSACm z=S$w_<7c`m2TKvc0)z&K&}v9U4|8SqECmrxX+TLc3cMtc{p00ch?=&$Zmk%f$gsp=_x#i3 z)?ruEllJ_v5>jcTFFZikjb)Qw^+(?sfl>FyrRasnm>Can)wx#|$gz)|39tGVf<%4Z zl#iW22NDPa2HwuS<3LZwxfiZ|+uY^&k!Tqi|Y2Zs6P?2eHtU(_EZ>?tpvj{vzPd| z|Ff-;#@*yv9(tE$>P@@6L#Q@w_RAvx!WnPEd1sR&bOW;Kb=_!5&i=9o+afH_vXjh$ zftB)BfOU@wN{IEDnCnk5EPl_%J}Vu*zpS-el57`vTIzLaq$5r2!N5gE21jO{`@Wn^ z5lJg>TB%jfnm9X6T=<4`G9KAG%mhcwsTn^rC9`J2LtlEI-fwrrIGBl_eR@sWh(YbB z>9&;PB+Qy%E|XR~fCCw$TDCkSkO1WL(~jz}K0Q@S2Eai_SS;`oX2K0<(=Q|i^K$vs zG`Nd?vuw_Xo)@jCa7{xnU?G!W!JFrGJ`|`gL$i|>>BDMTCRDRh)YBJJ8<<06lrpE{ z$YU~_6_ATm%lwk5;vZ=MgMb*lp;e=nM$?Kq{1*0`RVK#FZ8s|krIojxfR;h#=NqcA z-XlZRpJ*w47Q*>~%}|}zNX|ICJVh8T`J-sJzjH-dvnrU)Fl~2V8m}NjPs+cHun2%* z2QWJIJ!ZTrp`)yXx0(ZRO@$NW80;Ttr|zJ-9#KWD!eFvnpnQUjP6G}%R17lAHi&-o zyrlLMyGPz;V-Frmx|K3R2k&g;iun2uTEK=p4P9rzhX0;3y>re4-84`b@{0lCXnK+y zCQ}4k09gOvhfzYaJ6uTy;eb(M14cXfl%O^ijrd>-X& zB{pER6PWoG?I;1C;cER4DG#;~3;T&LJh`yGc&r#uMha-ap_4++T1Cm4H?-+$&d#+J z3mu4&8i3a1;@e?Tf3P&p8Hx%EA=_w8?O(?+qN=N}u4c^yNi2*+9Wn|MkqSn|1VmwI zg_n3~l(G}L#D;T^R>ETfAe*}AWoS|7LHKsx>>Jb|LoKs)!0tEjPcke#8;u3$zq6jw5k8j%ah?8+3vz6y;4jN=a7cC=()s_=WJKwgMFvLnE-}0-&8aWXzg7i)uzA zNNhkrH55%%CjqE^G&WuJR^-Gnbrx=|Bs&aoBpc`F*s$4?JmnuiU z2~_10N&wm&KvnJwiE3u8_H-zmTDn=I5MTmS<@)A;svP|!B0a-X?&1&sl^#MZy-3>b z{|Xhb7AnVgPS1Yk^H0Mx=8KYFq3>~znkbl|Ow%bTnQLHTL|a;8vfwgMvk!<$v8DW> zlN!VpWx;S}AI`&sGY5$uwxVd8opdUqfuzE-W8Z)JHYOIWVTZ#0LQ#t-KTBa-hupoF z+E_0yTqGMd|6ANT`X?qKYS$4Xp6FHK`fyBXb{A)8OzC&)V9cE47pq@K4`KmenEDOF z0nXJ{umPJYYnf(uL`XNlmsr>xfDy-*Fdc`!IU@|Msl>TSR5!HtFiN`{o;{G z3+yWu%?8%&sM{U|&xHRT4A=aK=3gMD6IPZ$rLe+PQ_Cn*BWxg1N-?&QQSpR{;aB0I zzp9*w;y*AqQ1K$1XP+z!iXHY|GHHO%pVjIHaCY$6u`hy{gU6Q=7E$L&EhZTv@Ml)4 zF7-=}50q@!p*_TWDGd$DUKml~*cuQ6Y*W-4r(v z{$5On^`;n4F2CQb`^PR>?sGTMXj=t)EWW-NIF`75wipi&=6CW%zmyCX@A7{u970#MxPT{`V;)sW-h9pt%Xg3*?f2lote3ZG_B;MZgRaI-t*?}6< zu8(~gP<0;{B6sAYKOUvYjG2+WPANMTks(Fj*h&;4faMh#`L2I5LV` zh!Wwco(us)YH(ndn?y4qlQL==i37t1*2+#pGJaQ&b5ZySnW?`C(E&%SlwU>0Yz=!w z4=l+-kVr-1T>-C!B0#D#D)-S>f@TwZoP|GoLT1&wn?do>Fn9z`4w0*UOv z?gYjve_75BMg*=jug# zKFB73(>34NXm=KV5UFU1>u?R%6*#vcpG|-B47==NhLi97q_)LE-v3i9oa~RlOFXxEReuf!1qBDm z*`05_(^*i@iPX`3T@~?@8v8F+?3+=30bW-VR_PMZeufT&9cKYYnh`dUDtp zFg|&VG#5a@5;r_e_yNC|`EY|?MvY-x5tOdFFW&h23h<`b=N&C^!6O_PJ)bO(gvJ>9 zM&sQ7SQ!4fo)o*vYci?pKyXHk+;)a0{IJ!)Mb!V>2(n5C+jeFwSXfp0UzrViyL`v@ zO2n*?c1$c_NGDpM=D@yoxc}!?H#9tbXIaM5|!C)OXfovDA$sC0Rh%;43pk+5f&pg0UC{|NWF)xmSEtyRk z6qSC#cd~ktIUl1FZ`hO!D{fFlDc~`W7H$HCgqegXhJZ)SL|Z|$N|?!po}>ZNYbF|S z87L;Ykg}Hn>D5Xh^ne{muUAY3JT*XioumQMtChkRy-r5WWPgc?KqQr@OEi#P*~{); z7mrEMRZ)QV8073_XY6IkGk~o=h`2th-|9w1aQg=i{aD=O(XdR;@ZdDj#vG6?U}7}c z!(_0ttOFJ40|_NK;(^hBU>ZelV<(uE`oZ?*W-?6#tQ)i-byTYjL~Ylymr`s38)q|B zeki917Tb)~N!ZFP(o|W?`!=uYP7QGua4=x_^Cc*VI!e?entScw?699Vl7!CxvR451 z7qSymP^E4CkWx@>du&_@G|Zg)6@wqBl&Qh^ke5A|^2fS0Wr#B4gAc?ACkpz%bBbF2 z>ztyI2cA;}?B`$SREf1I+4B&MyeYl=AY)`-J3t_F$ecBI0QHVq$_G()rpSoTvH>6< zGgAa)&wNQ3?=SYeqZaw`#h!!|N3%foG@^y}{$kIWqA&I&{9@0UB7ndbdwwBN@2r41 zEs-Ck8$kAS0J7)Gtd>YH!DKu^H~fSW&_ih!G$pnc=oqO$UAa)X;{_)%XO}i6R?~(y z*H#wKIK=oCrKE;3*htNiLM�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

h}8k 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 HM2P literal 0 HcmV?d00001 diff --git a/tf.plan.json b/tf.plan.json new file mode 100644 index 0000000..995e5bc --- /dev/null +++ b/tf.plan.json @@ -0,0 +1,45024 @@ +{ + "format_version": "1.2", + "terraform_version": "1.9.1", + "variables": { + "image_pipeline_workflows": { + "value": { + "image-pipeline-goss": "./workflows/goss-testing.yaml", + "image-pipeline-goss-testing": "./workflows/goss-testing.yaml" + } + }, + "imported_repos": { + "value": [ + { + "collaborators": { + "arnol377": "admin", + "littl381": "admin" + }, + "name": "netbackup-automation-platform", + "org": "CSVD", + "public_repo": { + "clone_url": "https://github.com/VeritasOS/netbackup-automation-platform.git", + "default_branch": "main" + }, + "topics": [ + "automation-platform" + ], + "vulnerability_alerts": false + } + ] + }, + "netbackup_automation_platform": { + "value": false + }, + "repolist": { + "value": [ + { + "description": "Terraform module repo for terraform-morpheus-database", + "is_private": false, + "is_template": false, + "name": "terraform-morpheus-database", + "repo_org": "CSVD", + "repo_topics": [ + "morpheus-infra" + ] + }, + { + "description": "Composite Action for configuring pip", + "is_private": false, + "is_template": false, + "name": "pip-config", + "repo_org": "CSVD", + "repo_topics": [ + "github-actions", + "pip" + ] + }, + { + "description": "Terraform module repo for terraform-morpheus-efs", + "is_private": false, + "is_template": false, + "name": "terraform-morpheus-efs", + "repo_org": "CSVD", + "repo_topics": [ + "morpheus-infra" + ] + }, + { + "description": "Terraform module repo for terraform-morpheus-loadbalancer", + "is_private": false, + "is_template": false, + "name": "terraform-morpheus-alb", + "repo_org": "CSVD", + "repo_topics": [ + "morpheus-infra" + ] + }, + { + "description": "Terraform module repo for terraform-morpheus-cluster", + "is_private": false, + "is_template": false, + "name": "terraform-morpheus-cluster", + "repo_org": "CSVD", + "repo_topics": [ + "morpheus-infra" + ] + }, + { + "description": "Terraform module repo for terraform-morpheus-storage", + "is_private": false, + "is_template": false, + "name": "terraform-morpheus-storage", + "repo_org": "CSVD", + "repo_topics": [ + "morpheus-infra" + ] + }, + { + "description": "Terraform module repo for terraform-morpheus-queue", + "is_private": false, + "is_template": false, + "name": "terraform-morpheus-queue", + "repo_org": "CSVD", + "repo_topics": [ + "morpheus-infra" + ] + }, + { + "description": "Terraform module repo for terraform-morpheus-search", + "is_private": false, + "is_template": false, + "name": "terraform-morpheus-search", + "repo_org": "CSVD", + "repo_topics": [ + "morpheus-infra" + ] + }, + { + "description": "service-catalog-workspace", + "enforce_prs": false, + "is_private": false, + "is_template": true, + "name": "service-catalog-workspace", + "repo_org": "CSVD", + "repo_topics": [ + "terraform-tools" + ] + }, + { + "description": "supervisord-managed-runners", + "enforce_prs": false, + "is_private": false, + "is_template": true, + "name": "supervisord-managed-runners", + "repo_org": "CSVD", + "repo_topics": [ + "terraform-tools", + "github-actions" + ] + }, + { + "description": "Workspace for ghe-runners and github-runner-image", + "enforce_prs": false, + "is_private": true, + "is_template": true, + "name": "github-runners-workspace", + "repo_org": "CSVD", + "repo_topics": [ + "terraform-tools", + "github-actions" + ] + }, + { + "description": "Tracking all repos and documentation for Github Actions", + "enforce_prs": false, + "is_private": false, + "is_template": false, + "name": "Github-Actions-Project", + "repo_org": "CSVD", + "repo_topics": [ + "terraform-tools", + "github-actions" + ] + }, + { + "description": "Module for attaching Actions and Environments to target repos", + "enforce_prs": false, + "is_private": false, + "name": "terraform-git-workspace", + "repo_org": "CSVD", + "repo_topics": [ + "terraform-tools", + "github-actions" + ] + }, + { + "description": "Managing AWS CSVD Secrets", + "enforce_prs": false, + "is_private": false, + "name": "aws-secrets", + "repo_org": "CSVD", + "repo_topics": [ + "terraform-tools" + ] + }, + { + "description": "Managing AWS Github Runner Image", + "enforce_prs": false, + "is_private": false, + "name": "github-runner-image", + "repo_org": "CSVD", + "repo_topics": [ + "terraform-tools" + ] + }, + { + "description": "Tools for managing Terraform", + "is_private": false, + "name": "tf-tools", + "repo_org": "CSVD", + "repo_topics": [ + "terraform-tools" + ] + }, + { + "description": "Terraform Caching service", + "is_private": false, + "name": "tf-caching", + "repo_org": "CSVD", + "repo_topics": [ + "terraform-tools" + ] + }, + { + "description": "morpheus-repos", + "enforce_prs": false, + "is_private": false, + "name": "morpheus-repos", + "repo_org": "CSVD", + "repo_topics": [ + "morpheus" + ] + }, + { + "description": "supervisord-conf", + "is_private": false, + "name": "supervisord-conf", + "repo_org": "CSVD", + "repo_topics": [ + "supervisord", + "automation" + ] + }, + { + "description": "Home for github-terraform workspaces", + "enforce_prs": false, + "is_private": false, + "name": "github-workspaces", + "repo_org": "CSVD", + "repo_topics": [ + "github-actions", + "github-workspace" + ] + }, + { + "description": "AWS Copilot Demo", + "enforce_prs": false, + "is_private": false, + "name": "aws-copilot-demo", + "repo_org": "CSVD", + "repo_topics": [ + "aws-copilot", + "aws-cdk" + ] + }, + { + "description": "Project Repo for AI Ingestion", + "is_private": false, + "name": "terraform-ai-ingestion", + "repo_org": "CSVD", + "repo_topics": [ + "ai-ingestion", + "terraform" + ] + }, + { + "description": "Module for AWS RDS", + "is_private": false, + "name": "terraform-aws-rds", + "repo_org": "CSVD", + "repo_topics": [ + "ai-demo", + "terraform" + ] + }, + { + "description": "Module for AWS EFS", + "is_private": false, + "name": "terraform-aws-efs", + "repo_org": "CSVD", + "repo_topics": [ + "ai-demo", + "terraform" + ] + }, + { + "description": "Module for AWS S3", + "is_private": false, + "name": "terraform-aws-ses", + "repo_org": "CSVD", + "repo_topics": [ + "ai-demo", + "terraform" + ] + }, + { + "description": "Template Repo for Image Pipeline", + "enforce_prs": false, + "is_private": false, + "is_template": true, + "name": "template-aws-image-pipeline", + "repo_org": "CSVD", + "repo_topics": [ + "aws-image-pipeline", + "terraform" + ] + }, + { + "description": "Pip Configuration for Image Pipeline", + "enforce_prs": false, + "is_private": false, + "is_template": true, + "name": "aws-image-pipeline-pip-config", + "repo_org": "CSVD", + "repo_topics": [ + "aws-image-pipeline", + "terraform" + ] + }, + { + "description": "Terraform Workspace for creating Elastic Beanstalk Apps and Environments", + "enforce_prs": false, + "is_private": false, + "is_template": true, + "name": "aws-beanstalk", + "repo_org": "arnol377", + "repo_topics": [ + "terraform" + ] + }, + { + "description": "Automation Repos for Morpheus POC", + "enforce_prs": false, + "is_private": false, + "is_template": false, + "name": "automation-repos", + "repo_org": "CSVD", + "repo_topics": [ + "terraform" + ] + }, + { + "description": "Automation Repos for Morpheus POC", + "enforce_prs": false, + "is_private": false, + "is_template": false, + "name": "csvd-org-management", + "repo_org": "CSVD", + "repo_topics": [ + "terraform" + ] + }, + { + "description": "Github Runner Images Import", + "enforce_prs": false, + "is_private": false, + "is_template": false, + "name": "github-runner-images", + "repo_org": "CSVD", + "repo_topics": [ + "terraform" + ] + }, + { + "description": "Terraform Module for managing github repos", + "enforce_prs": false, + "is_private": false, + "is_template": false, + "name": "terraform-github-repo", + "repo_org": "CSVD", + "repo_topics": [ + "terraform" + ] + }, + { + "description": "Terraform Workspace for creating Elastic Beanstalk Apps and Environments", + "enforce_prs": false, + "is_private": false, + "is_template": true, + "name": "aws-beanstalk-java", + "repo_org": "arnol377", + "repo_topics": [ + "terraform" + ] + }, + { + "description": "Terraform Workspace for creating Elastic Beanstalk Apps and Environments", + "enforce_prs": false, + "is_private": false, + "is_template": true, + "name": "aws-beanstalk-php", + "repo_org": "arnol377", + "repo_topics": [ + "terraform" + ] + }, + { + "description": "Terraform Workspace for creating Elastic Beanstalk Apps and Environments", + "enforce_prs": false, + "is_private": false, + "is_template": true, + "name": "aws-beanstalk-nodejs", + "repo_org": "arnol377", + "repo_topics": [ + "terraform" + ] + }, + { + "description": "Terraform Workspace for creating Elastic Beanstalk Apps and Environments", + "enforce_prs": false, + "is_private": false, + "is_template": true, + "name": "aws-beanstalk-docker", + "repo_org": "arnol377", + "repo_topics": [ + "terraform" + ] + }, + { + "description": "Terraform Workspace for creating and managing AWS Beanstalk Demo", + "enforce_prs": false, + "is_private": false, + "is_template": true, + "name": "beanstalk-flask-demo", + "repo_org": "arnol377", + "repo_topics": [ + "terraform" + ] + }, + { + "description": "Github Actions Setup Node", + "enforce_prs": false, + "is_private": false, + "is_template": false, + "name": "gh-actions-setup-node", + "repo_org": "arnol377", + "repo_topics": [ + "terraform" + ] + }, + { + "description": "Add VPC Endpoints for Supported Services to given Subnet", + "enforce_prs": false, + "is_private": false, + "is_template": false, + "name": "vpc-services", + "repo_org": "arnol377", + "repo_topics": [ + "terraform" + ] + }, + { + "description": "Terraform workspace for managing OpenSearch", + "enforce_prs": false, + "is_private": false, + "is_template": false, + "name": "opensearch", + "repo_org": "arnol377", + "repo_topics": [ + "terraform" + ] + }, + { + "description": "Repo for morpheus cloud", + "enforce_prs": false, + "is_private": false, + "is_template": false, + "name": "morpheus-clouds", + "repo_org": "CSVD", + "repo_topics": [ + "terraform", + "morpheus" + ] + }, + { + "description": "Template repo for image pipelines", + "enforce_prs": false, + "is_private": false, + "is_template": false, + "name": "image-pipeline-goss", + "repo_org": "CSVD", + "repo_topics": [ + "terraform" + ] + }, + { + "description": "Template repo for image pipelines", + "enforce_prs": false, + "is_private": false, + "is_template": false, + "name": "image-pipeline-ansible-playbooks", + "repo_org": "CSVD", + "repo_topics": [ + "terraform" + ] + }, + { + "description": "Template repo for image pipelines", + "enforce_prs": false, + "is_private": false, + "is_template": false, + "name": "image-pipeline-packer", + "repo_org": "CSVD", + "repo_topics": [ + "terraform" + ] + }, + { + "description": "Template repo for windows image pipelines", + "enforce_prs": false, + "is_private": false, + "is_template": false, + "name": "windows-image-pipeline", + "repo_org": "CSVD", + "repo_topics": [ + "terraform" + ] + }, + { + "description": "Template repo for docker image pipelines", + "enforce_prs": false, + "is_private": false, + "is_template": false, + "name": "docker-image-pipeline", + "repo_org": "CSVD", + "repo_topics": [ + "terraform" + ] + }, + { + "description": "Terraform Workspace for publishing image-pipeline-assets", + "enforce_prs": false, + "is_private": false, + "is_template": false, + "name": "image-pipeline-asset-releases", + "repo_org": "CSVD", + "repo_topics": [ + "terraform" + ] + }, + { + "description": "Terraform Workspace for creating and managing AWS Image Pipelines", + "enforce_prs": false, + "is_private": false, + "is_template": true, + "name": "aws-image-pipeline", + "repo_org": "CSVD", + "repo_topics": [ + "terraform" + ] + }, + { + "description": "Terraform Module that creates codepipeline and codebuild jobs and other resources for building and deploying images", + "enforce_prs": false, + "is_private": false, + "is_template": false, + "name": "terraform-aws-image-pipeline", + "repo_org": "CSVD", + "repo_topics": [ + "terraform" + ] + } + ] + } + }, + "planned_values": { + "root_module": { + "resources": [ + { + "address": "aws_kms_alias.actions_bucket_east", + "mode": "managed", + "type": "aws_kms_alias", + "name": "actions_bucket_east", + "provider_name": "registry.terraform.io/hashicorp/aws", + "schema_version": 0, + "values": { + "arn": "arn:aws-us-gov:kms:us-gov-east-1:229685449397:alias/csvd-dev-ew-github-actions-east", + "id": "alias/csvd-dev-ew-github-actions-east", + "name": "alias/csvd-dev-ew-github-actions-east", + "name_prefix": "", + "target_key_arn": "arn:aws-us-gov:kms:us-gov-east-1:229685449397:key/985d3603-ef1f-434d-b6c7-de67a3b9533f", + "target_key_id": "985d3603-ef1f-434d-b6c7-de67a3b9533f" + }, + "sensitive_values": {} + }, + { + "address": "aws_kms_alias.actions_bucket_west", + "mode": "managed", + "type": "aws_kms_alias", + "name": "actions_bucket_west", + "provider_name": "registry.terraform.io/hashicorp/aws", + "schema_version": 0, + "values": { + "arn": "arn:aws-us-gov:kms:us-gov-west-1:229685449397:alias/csvd-dev-ew-github-actions", + "id": "alias/csvd-dev-ew-github-actions", + "name": "alias/csvd-dev-ew-github-actions", + "name_prefix": "", + "target_key_arn": "arn:aws-us-gov:kms:us-gov-west-1:229685449397:key/77f3d319-2557-494c-b0c6-1c453048574c", + "target_key_id": "77f3d319-2557-494c-b0c6-1c453048574c" + }, + "sensitive_values": {} + }, + { + "address": "aws_kms_key.actions_bucket_east", + "mode": "managed", + "type": "aws_kms_key", + "name": "actions_bucket_east", + "provider_name": "registry.terraform.io/hashicorp/aws", + "schema_version": 0, + "values": { + "arn": "arn:aws-us-gov:kms:us-gov-east-1:229685449397:key/985d3603-ef1f-434d-b6c7-de67a3b9533f", + "bypass_policy_lockout_safety_check": false, + "custom_key_store_id": "", + "customer_master_key_spec": "SYMMETRIC_DEFAULT", + "deletion_window_in_days": 30, + "description": "KMS key for actions bucket encryption (East)", + "enable_key_rotation": true, + "id": "985d3603-ef1f-434d-b6c7-de67a3b9533f", + "is_enabled": true, + "key_id": "985d3603-ef1f-434d-b6c7-de67a3b9533f", + "key_usage": "ENCRYPT_DECRYPT", + "multi_region": false, + "policy": "{\"Statement\":[{\"Action\":\"kms:*\",\"Effect\":\"Allow\",\"Principal\":{\"AWS\":\"arn:aws-us-gov:iam::229685449397:root\"},\"Resource\":\"*\",\"Sid\":\"Enable IAM User Permissions\"}],\"Version\":\"2012-10-17\"}", + "rotation_period_in_days": 365, + "tags": {}, + "tags_all": {}, + "timeouts": null, + "xks_key_id": "" + }, + "sensitive_values": { + "tags": {}, + "tags_all": {} + } + }, + { + "address": "aws_kms_key.actions_bucket_west", + "mode": "managed", + "type": "aws_kms_key", + "name": "actions_bucket_west", + "provider_name": "registry.terraform.io/hashicorp/aws", + "schema_version": 0, + "values": { + "arn": "arn:aws-us-gov:kms:us-gov-west-1:229685449397:key/77f3d319-2557-494c-b0c6-1c453048574c", + "bypass_policy_lockout_safety_check": false, + "custom_key_store_id": "", + "customer_master_key_spec": "SYMMETRIC_DEFAULT", + "deletion_window_in_days": 30, + "description": "KMS key for actions bucket encryption (West)", + "enable_key_rotation": true, + "id": "77f3d319-2557-494c-b0c6-1c453048574c", + "is_enabled": true, + "key_id": "77f3d319-2557-494c-b0c6-1c453048574c", + "key_usage": "ENCRYPT_DECRYPT", + "multi_region": false, + "policy": "{\"Statement\":[{\"Action\":\"kms:*\",\"Effect\":\"Allow\",\"Principal\":{\"AWS\":\"arn:aws-us-gov:iam::229685449397:root\"},\"Resource\":\"*\",\"Sid\":\"Enable IAM User Permissions\"}],\"Version\":\"2012-10-17\"}", + "rotation_period_in_days": 365, + "tags": {}, + "tags_all": {}, + "timeouts": null, + "xks_key_id": "" + }, + "sensitive_values": { + "tags": {}, + "tags_all": {} + } + }, + { + "address": "aws_s3_bucket.actions_east", + "mode": "managed", + "type": "aws_s3_bucket", + "name": "actions_east", + "provider_name": "registry.terraform.io/hashicorp/aws", + "schema_version": 0, + "values": { + "acceleration_status": "", + "acl": null, + "arn": "arn:aws-us-gov:s3:::csvd-dev-ew-github-actions-east", + "bucket": "csvd-dev-ew-github-actions-east", + "bucket_domain_name": "csvd-dev-ew-github-actions-east.s3.amazonaws.com", + "bucket_prefix": "", + "bucket_regional_domain_name": "csvd-dev-ew-github-actions-east.s3.us-gov-east-1.amazonaws.com", + "cors_rule": [], + "force_destroy": false, + "grant": [ + { + "id": "1cdbccee29c5305ac377a789c6f924db69ec7da804ad7d8303a495cf5eef9084", + "permissions": [ + "FULL_CONTROL" + ], + "type": "CanonicalUser", + "uri": "" + } + ], + "hosted_zone_id": "Z2NIFVYYW2VKV1", + "id": "csvd-dev-ew-github-actions-east", + "lifecycle_rule": [], + "logging": [], + "object_lock_configuration": [], + "object_lock_enabled": false, + "policy": "{\"Statement\":[{\"Action\":[\"s3:GetObject*\",\"s3:PutObject*\",\"s3:DeleteObject*\",\"s3:ListBucket\"],\"Effect\":\"Allow\",\"Principal\":{\"AWS\":\"arn:aws-us-gov:iam::229685449397:role/aws-service-role/ecs.amazonaws.com/AWSServiceRoleForECS\"},\"Resource\":[\"arn:aws-us-gov:s3:::csvd-dev-ew-github-actions-east\",\"arn:aws-us-gov:s3:::csvd-dev-ew-github-actions-east/*\"],\"Sid\":\"AllowECSServiceRole\"}],\"Version\":\"2012-10-17\"}", + "region": "us-gov-east-1", + "replication_configuration": [], + "request_payer": "BucketOwner", + "server_side_encryption_configuration": [ + { + "rule": [ + { + "apply_server_side_encryption_by_default": [ + { + "kms_master_key_id": "arn:aws-us-gov:kms:us-gov-east-1:229685449397:key/985d3603-ef1f-434d-b6c7-de67a3b9533f", + "sse_algorithm": "aws:kms" + } + ], + "bucket_key_enabled": false + } + ] + } + ], + "tags": {}, + "tags_all": {}, + "timeouts": null, + "versioning": [ + { + "enabled": true, + "mfa_delete": false + } + ], + "website": [], + "website_domain": null, + "website_endpoint": null + }, + "sensitive_values": { + "cors_rule": [], + "grant": [ + { + "permissions": [ + false + ] + } + ], + "lifecycle_rule": [], + "logging": [], + "object_lock_configuration": [], + "replication_configuration": [], + "server_side_encryption_configuration": [ + { + "rule": [ + { + "apply_server_side_encryption_by_default": [ + {} + ] + } + ] + } + ], + "tags": {}, + "tags_all": {}, + "versioning": [ + {} + ], + "website": [] + } + }, + { + "address": "aws_s3_bucket.actions_west", + "mode": "managed", + "type": "aws_s3_bucket", + "name": "actions_west", + "provider_name": "registry.terraform.io/hashicorp/aws", + "schema_version": 0, + "values": { + "acceleration_status": "", + "acl": null, + "arn": "arn:aws-us-gov:s3:::csvd-dev-ew-github-actions", + "bucket": "csvd-dev-ew-github-actions", + "bucket_domain_name": "csvd-dev-ew-github-actions.s3.amazonaws.com", + "bucket_prefix": "", + "bucket_regional_domain_name": "csvd-dev-ew-github-actions.s3.us-gov-west-1.amazonaws.com", + "cors_rule": [], + "force_destroy": false, + "grant": [ + { + "id": "1cdbccee29c5305ac377a789c6f924db69ec7da804ad7d8303a495cf5eef9084", + "permissions": [ + "FULL_CONTROL" + ], + "type": "CanonicalUser", + "uri": "" + } + ], + "hosted_zone_id": "Z31GFT0UA1I2HV", + "id": "csvd-dev-ew-github-actions", + "lifecycle_rule": [], + "logging": [], + "object_lock_configuration": [], + "object_lock_enabled": false, + "policy": "{\"Statement\":[{\"Action\":[\"s3:GetObject*\",\"s3:PutObject*\",\"s3:DeleteObject*\",\"s3:ListBucket\"],\"Effect\":\"Allow\",\"Principal\":{\"AWS\":\"arn:aws-us-gov:iam::229685449397:role/aws-service-role/ecs.amazonaws.com/AWSServiceRoleForECS\"},\"Resource\":[\"arn:aws-us-gov:s3:::csvd-dev-ew-github-actions\",\"arn:aws-us-gov:s3:::csvd-dev-ew-github-actions/*\"],\"Sid\":\"AllowECSServiceRole\"}],\"Version\":\"2012-10-17\"}", + "region": "us-gov-west-1", + "replication_configuration": [], + "request_payer": "BucketOwner", + "server_side_encryption_configuration": [ + { + "rule": [ + { + "apply_server_side_encryption_by_default": [ + { + "kms_master_key_id": "arn:aws-us-gov:kms:us-gov-west-1:229685449397:key/77f3d319-2557-494c-b0c6-1c453048574c", + "sse_algorithm": "aws:kms" + } + ], + "bucket_key_enabled": false + } + ] + } + ], + "tags": {}, + "tags_all": {}, + "timeouts": null, + "versioning": [ + { + "enabled": true, + "mfa_delete": false + } + ], + "website": [], + "website_domain": null, + "website_endpoint": null + }, + "sensitive_values": { + "cors_rule": [], + "grant": [ + { + "permissions": [ + false + ] + } + ], + "lifecycle_rule": [], + "logging": [], + "object_lock_configuration": [], + "replication_configuration": [], + "server_side_encryption_configuration": [ + { + "rule": [ + { + "apply_server_side_encryption_by_default": [ + {} + ] + } + ] + } + ], + "tags": {}, + "tags_all": {}, + "versioning": [ + {} + ], + "website": [] + } + }, + { + "address": "aws_s3_bucket_policy.actions_east", + "mode": "managed", + "type": "aws_s3_bucket_policy", + "name": "actions_east", + "provider_name": "registry.terraform.io/hashicorp/aws", + "schema_version": 0, + "values": { + "bucket": "csvd-dev-ew-github-actions-east", + "id": "csvd-dev-ew-github-actions-east", + "policy": "{\"Statement\":[{\"Action\":[\"s3:GetObject*\",\"s3:PutObject*\",\"s3:DeleteObject*\",\"s3:ListBucket\"],\"Effect\":\"Allow\",\"Principal\":{\"AWS\":\"arn:aws-us-gov:iam::229685449397:role/aws-service-role/ecs.amazonaws.com/AWSServiceRoleForECS\"},\"Resource\":[\"arn:aws-us-gov:s3:::csvd-dev-ew-github-actions-east\",\"arn:aws-us-gov:s3:::csvd-dev-ew-github-actions-east/*\"],\"Sid\":\"AllowECSServiceRole\"}],\"Version\":\"2012-10-17\"}" + }, + "sensitive_values": {} + }, + { + "address": "aws_s3_bucket_policy.actions_west", + "mode": "managed", + "type": "aws_s3_bucket_policy", + "name": "actions_west", + "provider_name": "registry.terraform.io/hashicorp/aws", + "schema_version": 0, + "values": { + "bucket": "csvd-dev-ew-github-actions", + "id": "csvd-dev-ew-github-actions", + "policy": "{\"Statement\":[{\"Action\":[\"s3:GetObject*\",\"s3:PutObject*\",\"s3:DeleteObject*\",\"s3:ListBucket\"],\"Effect\":\"Allow\",\"Principal\":{\"AWS\":\"arn:aws-us-gov:iam::229685449397:role/aws-service-role/ecs.amazonaws.com/AWSServiceRoleForECS\"},\"Resource\":[\"arn:aws-us-gov:s3:::csvd-dev-ew-github-actions\",\"arn:aws-us-gov:s3:::csvd-dev-ew-github-actions/*\"],\"Sid\":\"AllowECSServiceRole\"}],\"Version\":\"2012-10-17\"}" + }, + "sensitive_values": {} + }, + { + "address": "aws_s3_bucket_public_access_block.actions_east", + "mode": "managed", + "type": "aws_s3_bucket_public_access_block", + "name": "actions_east", + "provider_name": "registry.terraform.io/hashicorp/aws", + "schema_version": 0, + "values": { + "block_public_acls": true, + "block_public_policy": true, + "bucket": "csvd-dev-ew-github-actions-east", + "id": "csvd-dev-ew-github-actions-east", + "ignore_public_acls": true, + "restrict_public_buckets": true + }, + "sensitive_values": {} + }, + { + "address": "aws_s3_bucket_public_access_block.actions_west", + "mode": "managed", + "type": "aws_s3_bucket_public_access_block", + "name": "actions_west", + "provider_name": "registry.terraform.io/hashicorp/aws", + "schema_version": 0, + "values": { + "block_public_acls": true, + "block_public_policy": true, + "bucket": "csvd-dev-ew-github-actions", + "id": "csvd-dev-ew-github-actions", + "ignore_public_acls": true, + "restrict_public_buckets": true + }, + "sensitive_values": {} + }, + { + "address": "aws_s3_bucket_server_side_encryption_configuration.actions_east", + "mode": "managed", + "type": "aws_s3_bucket_server_side_encryption_configuration", + "name": "actions_east", + "provider_name": "registry.terraform.io/hashicorp/aws", + "schema_version": 0, + "values": { + "bucket": "csvd-dev-ew-github-actions-east", + "expected_bucket_owner": "", + "id": "csvd-dev-ew-github-actions-east", + "rule": [ + { + "apply_server_side_encryption_by_default": [ + { + "kms_master_key_id": "arn:aws-us-gov:kms:us-gov-east-1:229685449397:key/985d3603-ef1f-434d-b6c7-de67a3b9533f", + "sse_algorithm": "aws:kms" + } + ], + "bucket_key_enabled": false + } + ] + }, + "sensitive_values": { + "rule": [ + { + "apply_server_side_encryption_by_default": [ + {} + ] + } + ] + } + }, + { + "address": "aws_s3_bucket_server_side_encryption_configuration.actions_west", + "mode": "managed", + "type": "aws_s3_bucket_server_side_encryption_configuration", + "name": "actions_west", + "provider_name": "registry.terraform.io/hashicorp/aws", + "schema_version": 0, + "values": { + "bucket": "csvd-dev-ew-github-actions", + "expected_bucket_owner": "", + "id": "csvd-dev-ew-github-actions", + "rule": [ + { + "apply_server_side_encryption_by_default": [ + { + "kms_master_key_id": "arn:aws-us-gov:kms:us-gov-west-1:229685449397:key/77f3d319-2557-494c-b0c6-1c453048574c", + "sse_algorithm": "aws:kms" + } + ], + "bucket_key_enabled": false + } + ] + }, + "sensitive_values": { + "rule": [ + { + "apply_server_side_encryption_by_default": [ + {} + ] + } + ] + } + }, + { + "address": "aws_s3_bucket_versioning.actions_east", + "mode": "managed", + "type": "aws_s3_bucket_versioning", + "name": "actions_east", + "provider_name": "registry.terraform.io/hashicorp/aws", + "schema_version": 0, + "values": { + "bucket": "csvd-dev-ew-github-actions-east", + "expected_bucket_owner": "", + "id": "csvd-dev-ew-github-actions-east", + "mfa": null, + "versioning_configuration": [ + { + "mfa_delete": "", + "status": "Enabled" + } + ] + }, + "sensitive_values": { + "versioning_configuration": [ + {} + ] + } + }, + { + "address": "aws_s3_bucket_versioning.actions_west", + "mode": "managed", + "type": "aws_s3_bucket_versioning", + "name": "actions_west", + "provider_name": "registry.terraform.io/hashicorp/aws", + "schema_version": 0, + "values": { + "bucket": "csvd-dev-ew-github-actions", + "expected_bucket_owner": "", + "id": "csvd-dev-ew-github-actions", + "mfa": null, + "versioning_configuration": [ + { + "mfa_delete": "", + "status": "Enabled" + } + ] + }, + "sensitive_values": { + "versioning_configuration": [ + {} + ] + } + }, + { + "address": "github_team.terraform_reviewers", + "mode": "managed", + "type": "github_team", + "name": "terraform_reviewers", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "create_default_maintainer": false, + "description": "Reviewers for changes in Terraform", + "etag": "W/\"92d40c4de6a8d46afab018001de2c625bf0374b9def688e638a839e63b8267a7\"", + "id": "737", + "ldap_dn": "", + "members_count": 3, + "name": "terraform-reviewers", + "node_id": "MDQ6VGVhbTczNw==", + "parent_team_id": "", + "parent_team_read_id": "", + "parent_team_read_slug": "", + "privacy": "closed", + "slug": "terraform-reviewers" + }, + "sensitive_values": {} + }, + { + "address": "github_team_members.terraform_reviewer_members", + "mode": "managed", + "type": "github_team_members", + "name": "terraform_reviewer_members", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "737", + "members": [ + { + "role": "member", + "username": "gomez385" + }, + { + "role": "member", + "username": "morga471" + }, + { + "role": "member", + "username": "naray007" + } + ], + "team_id": "737" + }, + "sensitive_values": { + "members": [ + {}, + {}, + {} + ] + } + } + ], + "child_modules": [ + { + "resources": [ + { + "address": "module.imported_repos[\"netbackup-automation-platform\"].local_file.script", + "mode": "managed", + "type": "local_file", + "name": "script", + "provider_name": "registry.terraform.io/hashicorp/local", + "schema_version": 0, + "values": { + "content_base64": null, + "directory_permission": "0777", + "file_permission": "0777", + "filename": ".terraform/modules/imported_repos/import.sh", + "sensitive_content": null, + "source": null + }, + "sensitive_values": { + "sensitive_content": true + } + }, + { + "address": "module.imported_repos[\"netbackup-automation-platform\"].null_resource.git_import", + "mode": "managed", + "type": "null_resource", + "name": "git_import", + "provider_name": "registry.terraform.io/hashicorp/null", + "schema_version": 0, + "values": { + "triggers": null + }, + "sensitive_values": {} + } + ], + "address": "module.imported_repos[\"netbackup-automation-platform\"]", + "child_modules": [ + { + "resources": [ + { + "address": "module.imported_repos[\"netbackup-automation-platform\"].module.internal_github_actions.github_repository.repo[0]", + "mode": "managed", + "type": "github_repository", + "name": "repo", + "index": 0, + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 1, + "values": { + "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": true, + "delete_branch_on_merge": true, + "description": "netbackup-automation-platform", + "gitignore_template": null, + "has_discussions": false, + "has_downloads": false, + "has_issues": false, + "has_projects": true, + "has_wiki": true, + "homepage_url": null, + "ignore_vulnerability_alerts_during_read": null, + "is_template": false, + "license_template": null, + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "name": "netbackup-automation-platform", + "pages": [], + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "template": [], + "topics": [ + "automation-platform" + ], + "visibility": "public", + "vulnerability_alerts": false, + "web_commit_signoff_required": false + }, + "sensitive_values": { + "pages": [], + "security_and_analysis": [], + "template": [], + "topics": [ + false + ] + } + }, + { + "address": "module.imported_repos[\"netbackup-automation-platform\"].module.internal_github_actions.github_repository_collaborator.collaborators[\"arnol377\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "arnol377", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "permission": "admin", + "permission_diff_suppression": false, + "repository": "netbackup-automation-platform", + "username": "arnol377" + }, + "sensitive_values": {} + }, + { + "address": "module.imported_repos[\"netbackup-automation-platform\"].module.internal_github_actions.github_repository_collaborator.collaborators[\"littl381\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "littl381", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "permission": "admin", + "permission_diff_suppression": false, + "repository": "netbackup-automation-platform", + "username": "littl381" + }, + "sensitive_values": {} + } + ], + "address": "module.imported_repos[\"netbackup-automation-platform\"].module.internal_github_actions" + } + ] + }, + { + "resources": [ + { + "address": "module.repo_list[\"Github-Actions-Project\"].github_repository.repo", + "mode": "managed", + "type": "github_repository", + "name": "repo", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 1, + "values": { + "allow_auto_merge": false, + "allow_merge_commit": false, + "allow_rebase_merge": false, + "allow_squash_merge": true, + "allow_update_branch": false, + "archive_on_destroy": true, + "archived": false, + "auto_init": true, + "default_branch": "main", + "delete_branch_on_merge": true, + "description": "Tracking all repos and documentation for Github Actions", + "etag": "W/\"14853b941bc18e5f4e906893027f62ba7d10550834f28ef6cdd1f765ab79c163\"", + "full_name": "CSVD/Github-Actions-Project", + "git_clone_url": "git://github.e.it.census.gov/CSVD/Github-Actions-Project.git", + "gitignore_template": "", + "has_discussions": false, + "has_downloads": false, + "has_issues": true, + "has_projects": true, + "has_wiki": true, + "homepage_url": "", + "html_url": "https://github.e.it.census.gov/CSVD/Github-Actions-Project", + "http_clone_url": "https://github.e.it.census.gov/CSVD/Github-Actions-Project.git", + "id": "Github-Actions-Project", + "ignore_vulnerability_alerts_during_read": null, + "is_template": false, + "license_template": null, + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "name": "Github-Actions-Project", + "node_id": "MDEwOlJlcG9zaXRvcnkxMTE5", + "pages": [], + "primary_language": "HCL", + "private": false, + "repo_id": 1119, + "security_and_analysis": [ + { + "advanced_security": [ + { + "status": "disabled" + } + ], + "secret_scanning": [ + { + "status": "disabled" + } + ], + "secret_scanning_push_protection": [ + { + "status": "disabled" + } + ] + } + ], + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "ssh_clone_url": "git@github.e.it.census.gov:CSVD/Github-Actions-Project.git", + "svn_url": "https://github.e.it.census.gov/CSVD/Github-Actions-Project", + "template": [], + "topics": [ + "github-actions", + "terraform-tools" + ], + "visibility": "public", + "vulnerability_alerts": false, + "web_commit_signoff_required": false + }, + "sensitive_values": { + "pages": [], + "security_and_analysis": [ + { + "advanced_security": [ + {} + ], + "secret_scanning": [ + {} + ], + "secret_scanning_push_protection": [ + {} + ] + } + ], + "template": [], + "topics": [ + false, + false + ] + } + }, + { + "address": "module.repo_list[\"Github-Actions-Project\"].github_repository_collaborator.collaborators[\"gomez385\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "gomez385", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "Github-Actions-Project:gomez385", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "Github-Actions-Project", + "username": "gomez385" + }, + "sensitive_values": {} + }, + { + "address": "module.repo_list[\"Github-Actions-Project\"].github_repository_collaborator.collaborators[\"morga471\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "morga471", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "Github-Actions-Project:morga471", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "Github-Actions-Project", + "username": "morga471" + }, + "sensitive_values": {} + }, + { + "address": "module.repo_list[\"Github-Actions-Project\"].github_repository_collaborator.collaborators[\"naray007\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "naray007", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "Github-Actions-Project:naray007", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "Github-Actions-Project", + "username": "naray007" + }, + "sensitive_values": {} + } + ], + "address": "module.repo_list[\"Github-Actions-Project\"]" + }, + { + "resources": [ + { + "address": "module.repo_list[\"automation-repos\"].github_repository.repo", + "mode": "managed", + "type": "github_repository", + "name": "repo", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 1, + "values": { + "allow_auto_merge": false, + "allow_merge_commit": false, + "allow_rebase_merge": false, + "allow_squash_merge": true, + "allow_update_branch": false, + "archive_on_destroy": true, + "archived": false, + "auto_init": true, + "default_branch": "main", + "delete_branch_on_merge": true, + "description": "Automation Repos for Morpheus POC", + "etag": "W/\"e8c602ba8a63231bed3200439a518b4793d56c45c286dd6b5cbf8bb4157aa059\"", + "full_name": "CSVD/automation-repos", + "git_clone_url": "git://github.e.it.census.gov/CSVD/automation-repos.git", + "gitignore_template": "", + "has_discussions": false, + "has_downloads": false, + "has_issues": true, + "has_projects": true, + "has_wiki": true, + "homepage_url": "", + "html_url": "https://github.e.it.census.gov/CSVD/automation-repos", + "http_clone_url": "https://github.e.it.census.gov/CSVD/automation-repos.git", + "id": "automation-repos", + "ignore_vulnerability_alerts_during_read": null, + "is_template": false, + "license_template": null, + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "name": "automation-repos", + "node_id": "MDEwOlJlcG9zaXRvcnk5ODE=", + "pages": [], + "primary_language": "HCL", + "private": true, + "repo_id": 981, + "security_and_analysis": [ + { + "advanced_security": [ + { + "status": "disabled" + } + ], + "secret_scanning": [ + { + "status": "disabled" + } + ], + "secret_scanning_push_protection": [ + { + "status": "disabled" + } + ] + } + ], + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "ssh_clone_url": "git@github.e.it.census.gov:CSVD/automation-repos.git", + "svn_url": "https://github.e.it.census.gov/CSVD/automation-repos", + "template": [], + "topics": [ + "terraform" + ], + "visibility": "public", + "vulnerability_alerts": false, + "web_commit_signoff_required": false + }, + "sensitive_values": { + "pages": [], + "security_and_analysis": [ + { + "advanced_security": [ + {} + ], + "secret_scanning": [ + {} + ], + "secret_scanning_push_protection": [ + {} + ] + } + ], + "template": [], + "topics": [ + false + ] + } + }, + { + "address": "module.repo_list[\"automation-repos\"].github_repository_collaborator.collaborators[\"gomez385\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "gomez385", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "automation-repos:gomez385", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "automation-repos", + "username": "gomez385" + }, + "sensitive_values": {} + }, + { + "address": "module.repo_list[\"automation-repos\"].github_repository_collaborator.collaborators[\"morga471\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "morga471", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "automation-repos:morga471", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "automation-repos", + "username": "morga471" + }, + "sensitive_values": {} + }, + { + "address": "module.repo_list[\"automation-repos\"].github_repository_collaborator.collaborators[\"naray007\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "naray007", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "automation-repos:naray007", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "automation-repos", + "username": "naray007" + }, + "sensitive_values": {} + } + ], + "address": "module.repo_list[\"automation-repos\"]" + }, + { + "resources": [ + { + "address": "module.repo_list[\"aws-beanstalk\"].github_repository.repo", + "mode": "managed", + "type": "github_repository", + "name": "repo", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 1, + "values": { + "allow_auto_merge": false, + "allow_merge_commit": false, + "allow_rebase_merge": false, + "allow_squash_merge": true, + "allow_update_branch": false, + "archive_on_destroy": true, + "archived": false, + "auto_init": true, + "default_branch": "main", + "delete_branch_on_merge": true, + "description": "Terraform Workspace for creating Elastic Beanstalk Apps and Environments", + "etag": "W/\"8ac441e7848382c8552d4b8a0cd5205491bce4eca1f8e7d56d5e699cbdce8442\"", + "full_name": "CSVD/aws-beanstalk", + "git_clone_url": "git://github.e.it.census.gov/CSVD/aws-beanstalk.git", + "gitignore_template": "", + "has_discussions": false, + "has_downloads": false, + "has_issues": true, + "has_projects": true, + "has_wiki": true, + "homepage_url": "", + "html_url": "https://github.e.it.census.gov/CSVD/aws-beanstalk", + "http_clone_url": "https://github.e.it.census.gov/CSVD/aws-beanstalk.git", + "id": "aws-beanstalk", + "ignore_vulnerability_alerts_during_read": null, + "is_template": true, + "license_template": null, + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "name": "aws-beanstalk", + "node_id": "MDEwOlJlcG9zaXRvcnk5MjU=", + "pages": [], + "primary_language": "HCL", + "private": true, + "repo_id": 925, + "security_and_analysis": [ + { + "advanced_security": [ + { + "status": "disabled" + } + ], + "secret_scanning": [ + { + "status": "disabled" + } + ], + "secret_scanning_push_protection": [ + { + "status": "disabled" + } + ] + } + ], + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "ssh_clone_url": "git@github.e.it.census.gov:CSVD/aws-beanstalk.git", + "svn_url": "https://github.e.it.census.gov/CSVD/aws-beanstalk", + "template": [], + "topics": [ + "terraform" + ], + "visibility": "public", + "vulnerability_alerts": false, + "web_commit_signoff_required": false + }, + "sensitive_values": { + "pages": [], + "security_and_analysis": [ + { + "advanced_security": [ + {} + ], + "secret_scanning": [ + {} + ], + "secret_scanning_push_protection": [ + {} + ] + } + ], + "template": [], + "topics": [ + false + ] + } + }, + { + "address": "module.repo_list[\"aws-beanstalk\"].github_repository_collaborator.collaborators[\"gomez385\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "gomez385", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "aws-beanstalk:gomez385", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "aws-beanstalk", + "username": "gomez385" + }, + "sensitive_values": {} + }, + { + "address": "module.repo_list[\"aws-beanstalk\"].github_repository_collaborator.collaborators[\"morga471\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "morga471", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "aws-beanstalk:morga471", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "aws-beanstalk", + "username": "morga471" + }, + "sensitive_values": {} + }, + { + "address": "module.repo_list[\"aws-beanstalk\"].github_repository_collaborator.collaborators[\"naray007\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "naray007", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "aws-beanstalk:naray007", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "aws-beanstalk", + "username": "naray007" + }, + "sensitive_values": {} + } + ], + "address": "module.repo_list[\"aws-beanstalk\"]" + }, + { + "resources": [ + { + "address": "module.repo_list[\"aws-beanstalk-docker\"].github_repository.repo", + "mode": "managed", + "type": "github_repository", + "name": "repo", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 1, + "values": { + "allow_auto_merge": false, + "allow_merge_commit": false, + "allow_rebase_merge": false, + "allow_squash_merge": true, + "allow_update_branch": false, + "archive_on_destroy": true, + "archived": false, + "auto_init": true, + "default_branch": "main", + "delete_branch_on_merge": true, + "description": "Terraform Workspace for creating Elastic Beanstalk Apps and Environments", + "etag": "W/\"8fc9f715cca851ec50f80ee04d3528bc284c142cd26c7353f5b28fba10cee0ea\"", + "full_name": "CSVD/aws-beanstalk-docker", + "git_clone_url": "git://github.e.it.census.gov/CSVD/aws-beanstalk-docker.git", + "gitignore_template": "", + "has_discussions": false, + "has_downloads": false, + "has_issues": true, + "has_projects": true, + "has_wiki": true, + "homepage_url": "", + "html_url": "https://github.e.it.census.gov/CSVD/aws-beanstalk-docker", + "http_clone_url": "https://github.e.it.census.gov/CSVD/aws-beanstalk-docker.git", + "id": "aws-beanstalk-docker", + "ignore_vulnerability_alerts_during_read": null, + "is_template": true, + "license_template": null, + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "name": "aws-beanstalk-docker", + "node_id": "MDEwOlJlcG9zaXRvcnk5NDA=", + "pages": [], + "primary_language": "HCL", + "private": true, + "repo_id": 940, + "security_and_analysis": [ + { + "advanced_security": [ + { + "status": "disabled" + } + ], + "secret_scanning": [ + { + "status": "disabled" + } + ], + "secret_scanning_push_protection": [ + { + "status": "disabled" + } + ] + } + ], + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "ssh_clone_url": "git@github.e.it.census.gov:CSVD/aws-beanstalk-docker.git", + "svn_url": "https://github.e.it.census.gov/CSVD/aws-beanstalk-docker", + "template": [], + "topics": [ + "terraform" + ], + "visibility": "public", + "vulnerability_alerts": false, + "web_commit_signoff_required": false + }, + "sensitive_values": { + "pages": [], + "security_and_analysis": [ + { + "advanced_security": [ + {} + ], + "secret_scanning": [ + {} + ], + "secret_scanning_push_protection": [ + {} + ] + } + ], + "template": [], + "topics": [ + false + ] + } + }, + { + "address": "module.repo_list[\"aws-beanstalk-docker\"].github_repository_collaborator.collaborators[\"gomez385\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "gomez385", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "aws-beanstalk-docker:gomez385", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "aws-beanstalk-docker", + "username": "gomez385" + }, + "sensitive_values": {} + }, + { + "address": "module.repo_list[\"aws-beanstalk-docker\"].github_repository_collaborator.collaborators[\"morga471\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "morga471", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "aws-beanstalk-docker:morga471", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "aws-beanstalk-docker", + "username": "morga471" + }, + "sensitive_values": {} + }, + { + "address": "module.repo_list[\"aws-beanstalk-docker\"].github_repository_collaborator.collaborators[\"naray007\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "naray007", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "aws-beanstalk-docker:naray007", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "aws-beanstalk-docker", + "username": "naray007" + }, + "sensitive_values": {} + } + ], + "address": "module.repo_list[\"aws-beanstalk-docker\"]" + }, + { + "resources": [ + { + "address": "module.repo_list[\"aws-beanstalk-java\"].github_repository.repo", + "mode": "managed", + "type": "github_repository", + "name": "repo", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 1, + "values": { + "allow_auto_merge": false, + "allow_merge_commit": false, + "allow_rebase_merge": false, + "allow_squash_merge": true, + "allow_update_branch": false, + "archive_on_destroy": true, + "archived": false, + "auto_init": true, + "default_branch": "main", + "delete_branch_on_merge": true, + "description": "Terraform Workspace for creating Elastic Beanstalk Apps and Environments", + "etag": "W/\"b18162d467b84021d3fd5fca42e7b33329083f64bcb3d85f595c9ad83c7f3160\"", + "full_name": "CSVD/aws-beanstalk-java", + "git_clone_url": "git://github.e.it.census.gov/CSVD/aws-beanstalk-java.git", + "gitignore_template": "", + "has_discussions": false, + "has_downloads": false, + "has_issues": true, + "has_projects": true, + "has_wiki": true, + "homepage_url": "", + "html_url": "https://github.e.it.census.gov/CSVD/aws-beanstalk-java", + "http_clone_url": "https://github.e.it.census.gov/CSVD/aws-beanstalk-java.git", + "id": "aws-beanstalk-java", + "ignore_vulnerability_alerts_during_read": null, + "is_template": true, + "license_template": null, + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "name": "aws-beanstalk-java", + "node_id": "MDEwOlJlcG9zaXRvcnk5Mzg=", + "pages": [], + "primary_language": "Python", + "private": true, + "repo_id": 938, + "security_and_analysis": [ + { + "advanced_security": [ + { + "status": "disabled" + } + ], + "secret_scanning": [ + { + "status": "disabled" + } + ], + "secret_scanning_push_protection": [ + { + "status": "disabled" + } + ] + } + ], + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "ssh_clone_url": "git@github.e.it.census.gov:CSVD/aws-beanstalk-java.git", + "svn_url": "https://github.e.it.census.gov/CSVD/aws-beanstalk-java", + "template": [], + "topics": [ + "terraform" + ], + "visibility": "public", + "vulnerability_alerts": false, + "web_commit_signoff_required": false + }, + "sensitive_values": { + "pages": [], + "security_and_analysis": [ + { + "advanced_security": [ + {} + ], + "secret_scanning": [ + {} + ], + "secret_scanning_push_protection": [ + {} + ] + } + ], + "template": [], + "topics": [ + false + ] + } + }, + { + "address": "module.repo_list[\"aws-beanstalk-java\"].github_repository_collaborator.collaborators[\"gomez385\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "gomez385", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "aws-beanstalk-java:gomez385", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "aws-beanstalk-java", + "username": "gomez385" + }, + "sensitive_values": {} + }, + { + "address": "module.repo_list[\"aws-beanstalk-java\"].github_repository_collaborator.collaborators[\"morga471\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "morga471", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "aws-beanstalk-java:morga471", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "aws-beanstalk-java", + "username": "morga471" + }, + "sensitive_values": {} + }, + { + "address": "module.repo_list[\"aws-beanstalk-java\"].github_repository_collaborator.collaborators[\"naray007\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "naray007", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "aws-beanstalk-java:naray007", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "aws-beanstalk-java", + "username": "naray007" + }, + "sensitive_values": {} + } + ], + "address": "module.repo_list[\"aws-beanstalk-java\"]" + }, + { + "resources": [ + { + "address": "module.repo_list[\"aws-beanstalk-nodejs\"].github_repository.repo", + "mode": "managed", + "type": "github_repository", + "name": "repo", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 1, + "values": { + "allow_auto_merge": false, + "allow_merge_commit": false, + "allow_rebase_merge": false, + "allow_squash_merge": true, + "allow_update_branch": false, + "archive_on_destroy": true, + "archived": false, + "auto_init": true, + "default_branch": "main", + "delete_branch_on_merge": true, + "description": "Terraform Workspace for creating Elastic Beanstalk Apps and Environments", + "etag": "W/\"7cdc2bc273e5df0b4780256a67b50186759e79ca2e4d78609d6c6d5aef888c5f\"", + "full_name": "CSVD/aws-beanstalk-nodejs", + "git_clone_url": "git://github.e.it.census.gov/CSVD/aws-beanstalk-nodejs.git", + "gitignore_template": "", + "has_discussions": false, + "has_downloads": false, + "has_issues": true, + "has_projects": true, + "has_wiki": true, + "homepage_url": "", + "html_url": "https://github.e.it.census.gov/CSVD/aws-beanstalk-nodejs", + "http_clone_url": "https://github.e.it.census.gov/CSVD/aws-beanstalk-nodejs.git", + "id": "aws-beanstalk-nodejs", + "ignore_vulnerability_alerts_during_read": null, + "is_template": true, + "license_template": null, + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "name": "aws-beanstalk-nodejs", + "node_id": "MDEwOlJlcG9zaXRvcnk5NDc=", + "pages": [], + "primary_language": "HCL", + "private": true, + "repo_id": 947, + "security_and_analysis": [ + { + "advanced_security": [ + { + "status": "disabled" + } + ], + "secret_scanning": [ + { + "status": "disabled" + } + ], + "secret_scanning_push_protection": [ + { + "status": "disabled" + } + ] + } + ], + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "ssh_clone_url": "git@github.e.it.census.gov:CSVD/aws-beanstalk-nodejs.git", + "svn_url": "https://github.e.it.census.gov/CSVD/aws-beanstalk-nodejs", + "template": [], + "topics": [ + "terraform" + ], + "visibility": "public", + "vulnerability_alerts": false, + "web_commit_signoff_required": false + }, + "sensitive_values": { + "pages": [], + "security_and_analysis": [ + { + "advanced_security": [ + {} + ], + "secret_scanning": [ + {} + ], + "secret_scanning_push_protection": [ + {} + ] + } + ], + "template": [], + "topics": [ + false + ] + } + }, + { + "address": "module.repo_list[\"aws-beanstalk-nodejs\"].github_repository_collaborator.collaborators[\"gomez385\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "gomez385", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "aws-beanstalk-nodejs:gomez385", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "aws-beanstalk-nodejs", + "username": "gomez385" + }, + "sensitive_values": {} + }, + { + "address": "module.repo_list[\"aws-beanstalk-nodejs\"].github_repository_collaborator.collaborators[\"morga471\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "morga471", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "aws-beanstalk-nodejs:morga471", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "aws-beanstalk-nodejs", + "username": "morga471" + }, + "sensitive_values": {} + }, + { + "address": "module.repo_list[\"aws-beanstalk-nodejs\"].github_repository_collaborator.collaborators[\"naray007\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "naray007", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "aws-beanstalk-nodejs:naray007", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "aws-beanstalk-nodejs", + "username": "naray007" + }, + "sensitive_values": {} + } + ], + "address": "module.repo_list[\"aws-beanstalk-nodejs\"]" + }, + { + "resources": [ + { + "address": "module.repo_list[\"aws-beanstalk-php\"].github_repository.repo", + "mode": "managed", + "type": "github_repository", + "name": "repo", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 1, + "values": { + "allow_auto_merge": false, + "allow_merge_commit": false, + "allow_rebase_merge": false, + "allow_squash_merge": true, + "allow_update_branch": false, + "archive_on_destroy": true, + "archived": false, + "auto_init": true, + "default_branch": "main", + "delete_branch_on_merge": true, + "description": "Terraform Workspace for creating Elastic Beanstalk Apps and Environments", + "etag": "W/\"0b94bea58d6ae35c2c9bf27b64294eac11480e949685d284c7433ed5cc6989f4\"", + "full_name": "CSVD/aws-beanstalk-php", + "git_clone_url": "git://github.e.it.census.gov/CSVD/aws-beanstalk-php.git", + "gitignore_template": "", + "has_discussions": false, + "has_downloads": false, + "has_issues": true, + "has_projects": true, + "has_wiki": true, + "homepage_url": "", + "html_url": "https://github.e.it.census.gov/CSVD/aws-beanstalk-php", + "http_clone_url": "https://github.e.it.census.gov/CSVD/aws-beanstalk-php.git", + "id": "aws-beanstalk-php", + "ignore_vulnerability_alerts_during_read": null, + "is_template": true, + "license_template": null, + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "name": "aws-beanstalk-php", + "node_id": "MDEwOlJlcG9zaXRvcnk5NTg=", + "pages": [], + "primary_language": "HCL", + "private": true, + "repo_id": 958, + "security_and_analysis": [ + { + "advanced_security": [ + { + "status": "disabled" + } + ], + "secret_scanning": [ + { + "status": "disabled" + } + ], + "secret_scanning_push_protection": [ + { + "status": "disabled" + } + ] + } + ], + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "ssh_clone_url": "git@github.e.it.census.gov:CSVD/aws-beanstalk-php.git", + "svn_url": "https://github.e.it.census.gov/CSVD/aws-beanstalk-php", + "template": [], + "topics": [ + "terraform" + ], + "visibility": "public", + "vulnerability_alerts": false, + "web_commit_signoff_required": false + }, + "sensitive_values": { + "pages": [], + "security_and_analysis": [ + { + "advanced_security": [ + {} + ], + "secret_scanning": [ + {} + ], + "secret_scanning_push_protection": [ + {} + ] + } + ], + "template": [], + "topics": [ + false + ] + } + }, + { + "address": "module.repo_list[\"aws-beanstalk-php\"].github_repository_collaborator.collaborators[\"gomez385\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "gomez385", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "aws-beanstalk-php:gomez385", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "aws-beanstalk-php", + "username": "gomez385" + }, + "sensitive_values": {} + }, + { + "address": "module.repo_list[\"aws-beanstalk-php\"].github_repository_collaborator.collaborators[\"morga471\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "morga471", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "aws-beanstalk-php:morga471", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "aws-beanstalk-php", + "username": "morga471" + }, + "sensitive_values": {} + }, + { + "address": "module.repo_list[\"aws-beanstalk-php\"].github_repository_collaborator.collaborators[\"naray007\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "naray007", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "aws-beanstalk-php:naray007", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "aws-beanstalk-php", + "username": "naray007" + }, + "sensitive_values": {} + } + ], + "address": "module.repo_list[\"aws-beanstalk-php\"]" + }, + { + "resources": [ + { + "address": "module.repo_list[\"aws-copilot-demo\"].github_repository.repo", + "mode": "managed", + "type": "github_repository", + "name": "repo", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 1, + "values": { + "allow_auto_merge": false, + "allow_merge_commit": false, + "allow_rebase_merge": false, + "allow_squash_merge": true, + "allow_update_branch": false, + "archive_on_destroy": true, + "archived": false, + "auto_init": true, + "default_branch": "main", + "delete_branch_on_merge": true, + "description": "AWS Copilot Demo", + "etag": "W/\"024c0bb47fa2fe355d730fbd87091d26b27cd111c8f451cd5424288f743b1bb9\"", + "full_name": "CSVD/aws-copilot-demo", + "git_clone_url": "git://github.e.it.census.gov/CSVD/aws-copilot-demo.git", + "gitignore_template": null, + "has_discussions": false, + "has_downloads": false, + "has_issues": true, + "has_projects": true, + "has_wiki": true, + "homepage_url": "", + "html_url": "https://github.e.it.census.gov/CSVD/aws-copilot-demo", + "http_clone_url": "https://github.e.it.census.gov/CSVD/aws-copilot-demo.git", + "id": "aws-copilot-demo", + "ignore_vulnerability_alerts_during_read": null, + "is_template": false, + "license_template": null, + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "name": "aws-copilot-demo", + "node_id": "MDEwOlJlcG9zaXRvcnkxMjM0", + "pages": [], + "primary_language": "HCL", + "private": false, + "repo_id": 1234, + "security_and_analysis": [ + { + "advanced_security": [ + { + "status": "disabled" + } + ], + "secret_scanning": [ + { + "status": "disabled" + } + ], + "secret_scanning_push_protection": [ + { + "status": "disabled" + } + ] + } + ], + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "ssh_clone_url": "git@github.e.it.census.gov:CSVD/aws-copilot-demo.git", + "svn_url": "https://github.e.it.census.gov/CSVD/aws-copilot-demo", + "template": [], + "topics": [ + "aws-cdk", + "aws-copilot" + ], + "visibility": "public", + "vulnerability_alerts": false, + "web_commit_signoff_required": false + }, + "sensitive_values": { + "pages": [], + "security_and_analysis": [ + { + "advanced_security": [ + {} + ], + "secret_scanning": [ + {} + ], + "secret_scanning_push_protection": [ + {} + ] + } + ], + "template": [], + "topics": [ + false, + false + ] + } + }, + { + "address": "module.repo_list[\"aws-copilot-demo\"].github_repository_collaborator.collaborators[\"gomez385\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "gomez385", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "aws-copilot-demo:gomez385", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "aws-copilot-demo", + "username": "gomez385" + }, + "sensitive_values": {} + }, + { + "address": "module.repo_list[\"aws-copilot-demo\"].github_repository_collaborator.collaborators[\"morga471\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "morga471", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "aws-copilot-demo:morga471", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "aws-copilot-demo", + "username": "morga471" + }, + "sensitive_values": {} + }, + { + "address": "module.repo_list[\"aws-copilot-demo\"].github_repository_collaborator.collaborators[\"naray007\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "naray007", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "aws-copilot-demo:naray007", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "aws-copilot-demo", + "username": "naray007" + }, + "sensitive_values": {} + } + ], + "address": "module.repo_list[\"aws-copilot-demo\"]" + }, + { + "resources": [ + { + "address": "module.repo_list[\"aws-image-pipeline\"].github_repository.repo", + "mode": "managed", + "type": "github_repository", + "name": "repo", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 1, + "values": { + "allow_auto_merge": false, + "allow_merge_commit": false, + "allow_rebase_merge": false, + "allow_squash_merge": true, + "allow_update_branch": false, + "archive_on_destroy": true, + "archived": false, + "auto_init": true, + "default_branch": "main", + "delete_branch_on_merge": true, + "description": "Terraform Workspace for creating and managing AWS Image Pipelines", + "etag": "W/\"cd754c8e3915a94f0bae3e8cbf23fd834f5db9171a3862e691f7c82aa679d48d\"", + "full_name": "CSVD/aws-image-pipeline", + "git_clone_url": "git://github.e.it.census.gov/CSVD/aws-image-pipeline.git", + "gitignore_template": "", + "has_discussions": false, + "has_downloads": false, + "has_issues": true, + "has_projects": true, + "has_wiki": true, + "homepage_url": "", + "html_url": "https://github.e.it.census.gov/CSVD/aws-image-pipeline", + "http_clone_url": "https://github.e.it.census.gov/CSVD/aws-image-pipeline.git", + "id": "aws-image-pipeline", + "ignore_vulnerability_alerts_during_read": null, + "is_template": true, + "license_template": null, + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "name": "aws-image-pipeline", + "node_id": "MDEwOlJlcG9zaXRvcnk5MjY=", + "pages": [], + "primary_language": "Python", + "private": true, + "repo_id": 926, + "security_and_analysis": [ + { + "advanced_security": [ + { + "status": "disabled" + } + ], + "secret_scanning": [ + { + "status": "disabled" + } + ], + "secret_scanning_push_protection": [ + { + "status": "disabled" + } + ] + } + ], + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "ssh_clone_url": "git@github.e.it.census.gov:CSVD/aws-image-pipeline.git", + "svn_url": "https://github.e.it.census.gov/CSVD/aws-image-pipeline", + "template": [], + "topics": [ + "terraform" + ], + "visibility": "public", + "vulnerability_alerts": false, + "web_commit_signoff_required": false + }, + "sensitive_values": { + "pages": [], + "security_and_analysis": [ + { + "advanced_security": [ + {} + ], + "secret_scanning": [ + {} + ], + "secret_scanning_push_protection": [ + {} + ] + } + ], + "template": [], + "topics": [ + false + ] + } + }, + { + "address": "module.repo_list[\"aws-image-pipeline\"].github_repository_collaborator.collaborators[\"gomez385\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "gomez385", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "aws-image-pipeline:gomez385", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "aws-image-pipeline", + "username": "gomez385" + }, + "sensitive_values": {} + }, + { + "address": "module.repo_list[\"aws-image-pipeline\"].github_repository_collaborator.collaborators[\"morga471\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "morga471", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "aws-image-pipeline:morga471", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "aws-image-pipeline", + "username": "morga471" + }, + "sensitive_values": {} + }, + { + "address": "module.repo_list[\"aws-image-pipeline\"].github_repository_collaborator.collaborators[\"naray007\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "naray007", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "aws-image-pipeline:naray007", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "aws-image-pipeline", + "username": "naray007" + }, + "sensitive_values": {} + } + ], + "address": "module.repo_list[\"aws-image-pipeline\"]" + }, + { + "resources": [ + { + "address": "module.repo_list[\"aws-image-pipeline-pip-config\"].github_repository.repo", + "mode": "managed", + "type": "github_repository", + "name": "repo", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 1, + "values": { + "allow_auto_merge": false, + "allow_merge_commit": false, + "allow_rebase_merge": false, + "allow_squash_merge": true, + "allow_update_branch": false, + "archive_on_destroy": true, + "archived": false, + "auto_init": true, + "default_branch": "main", + "delete_branch_on_merge": true, + "description": "Pip Configuration for Image Pipeline", + "etag": "W/\"ef4d347c5e6e8df7481ecbe0e551d1e3bc9640556a90f5300f627b41f58de4e1\"", + "full_name": "CSVD/aws-image-pipeline-pip-config", + "git_clone_url": "git://github.e.it.census.gov/CSVD/aws-image-pipeline-pip-config.git", + "gitignore_template": null, + "has_discussions": false, + "has_downloads": false, + "has_issues": true, + "has_projects": true, + "has_wiki": true, + "homepage_url": "", + "html_url": "https://github.e.it.census.gov/CSVD/aws-image-pipeline-pip-config", + "http_clone_url": "https://github.e.it.census.gov/CSVD/aws-image-pipeline-pip-config.git", + "id": "aws-image-pipeline-pip-config", + "ignore_vulnerability_alerts_during_read": null, + "is_template": true, + "license_template": null, + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "name": "aws-image-pipeline-pip-config", + "node_id": "MDEwOlJlcG9zaXRvcnkxMjY2", + "pages": [], + "primary_language": "", + "private": false, + "repo_id": 1266, + "security_and_analysis": [ + { + "advanced_security": [ + { + "status": "disabled" + } + ], + "secret_scanning": [ + { + "status": "disabled" + } + ], + "secret_scanning_push_protection": [ + { + "status": "disabled" + } + ] + } + ], + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "ssh_clone_url": "git@github.e.it.census.gov:CSVD/aws-image-pipeline-pip-config.git", + "svn_url": "https://github.e.it.census.gov/CSVD/aws-image-pipeline-pip-config", + "template": [], + "topics": [ + "aws-image-pipeline", + "terraform" + ], + "visibility": "public", + "vulnerability_alerts": false, + "web_commit_signoff_required": false + }, + "sensitive_values": { + "pages": [], + "security_and_analysis": [ + { + "advanced_security": [ + {} + ], + "secret_scanning": [ + {} + ], + "secret_scanning_push_protection": [ + {} + ] + } + ], + "template": [], + "topics": [ + false, + false + ] + } + }, + { + "address": "module.repo_list[\"aws-image-pipeline-pip-config\"].github_repository_collaborator.collaborators[\"gomez385\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "gomez385", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "aws-image-pipeline-pip-config:gomez385", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "aws-image-pipeline-pip-config", + "username": "gomez385" + }, + "sensitive_values": {} + }, + { + "address": "module.repo_list[\"aws-image-pipeline-pip-config\"].github_repository_collaborator.collaborators[\"morga471\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "morga471", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "aws-image-pipeline-pip-config:morga471", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "aws-image-pipeline-pip-config", + "username": "morga471" + }, + "sensitive_values": {} + }, + { + "address": "module.repo_list[\"aws-image-pipeline-pip-config\"].github_repository_collaborator.collaborators[\"naray007\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "naray007", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "aws-image-pipeline-pip-config:naray007", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "aws-image-pipeline-pip-config", + "username": "naray007" + }, + "sensitive_values": {} + } + ], + "address": "module.repo_list[\"aws-image-pipeline-pip-config\"]" + }, + { + "resources": [ + { + "address": "module.repo_list[\"aws-secrets\"].github_repository.repo", + "mode": "managed", + "type": "github_repository", + "name": "repo", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 1, + "values": { + "allow_auto_merge": false, + "allow_merge_commit": false, + "allow_rebase_merge": false, + "allow_squash_merge": true, + "allow_update_branch": false, + "archive_on_destroy": true, + "archived": false, + "auto_init": true, + "default_branch": "main", + "delete_branch_on_merge": true, + "description": "Managing AWS CSVD Secrets", + "etag": "W/\"90633a005d36910ee92f96ea3a88aed81d1d544360a6a35dab08f638547b2e9c\"", + "full_name": "CSVD/aws-secrets", + "git_clone_url": "git://github.e.it.census.gov/CSVD/aws-secrets.git", + "gitignore_template": "", + "has_discussions": false, + "has_downloads": false, + "has_issues": true, + "has_projects": true, + "has_wiki": true, + "homepage_url": "", + "html_url": "https://github.e.it.census.gov/CSVD/aws-secrets", + "http_clone_url": "https://github.e.it.census.gov/CSVD/aws-secrets.git", + "id": "aws-secrets", + "ignore_vulnerability_alerts_during_read": null, + "is_template": false, + "license_template": null, + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "name": "aws-secrets", + "node_id": "MDEwOlJlcG9zaXRvcnkxMDUy", + "pages": [], + "primary_language": "HCL", + "private": false, + "repo_id": 1052, + "security_and_analysis": [ + { + "advanced_security": [ + { + "status": "disabled" + } + ], + "secret_scanning": [ + { + "status": "disabled" + } + ], + "secret_scanning_push_protection": [ + { + "status": "disabled" + } + ] + } + ], + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "ssh_clone_url": "git@github.e.it.census.gov:CSVD/aws-secrets.git", + "svn_url": "https://github.e.it.census.gov/CSVD/aws-secrets", + "template": [], + "topics": [ + "terraform-tools" + ], + "visibility": "public", + "vulnerability_alerts": false, + "web_commit_signoff_required": false + }, + "sensitive_values": { + "pages": [], + "security_and_analysis": [ + { + "advanced_security": [ + {} + ], + "secret_scanning": [ + {} + ], + "secret_scanning_push_protection": [ + {} + ] + } + ], + "template": [], + "topics": [ + false + ] + } + }, + { + "address": "module.repo_list[\"aws-secrets\"].github_repository_collaborator.collaborators[\"gomez385\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "gomez385", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "aws-secrets:gomez385", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "aws-secrets", + "username": "gomez385" + }, + "sensitive_values": {} + }, + { + "address": "module.repo_list[\"aws-secrets\"].github_repository_collaborator.collaborators[\"morga471\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "morga471", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "aws-secrets:morga471", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "aws-secrets", + "username": "morga471" + }, + "sensitive_values": {} + }, + { + "address": "module.repo_list[\"aws-secrets\"].github_repository_collaborator.collaborators[\"naray007\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "naray007", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "aws-secrets:naray007", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "aws-secrets", + "username": "naray007" + }, + "sensitive_values": {} + } + ], + "address": "module.repo_list[\"aws-secrets\"]" + }, + { + "resources": [ + { + "address": "module.repo_list[\"beanstalk-flask-demo\"].github_repository.repo", + "mode": "managed", + "type": "github_repository", + "name": "repo", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 1, + "values": { + "allow_auto_merge": false, + "allow_merge_commit": false, + "allow_rebase_merge": false, + "allow_squash_merge": true, + "allow_update_branch": false, + "archive_on_destroy": true, + "archived": false, + "auto_init": true, + "default_branch": "main", + "delete_branch_on_merge": true, + "description": "Terraform Workspace for creating and managing AWS Beanstalk Demo", + "etag": "W/\"5b339d2f6acbb7802e62cc8a8e6683632315390f5e42fc4a3d2e662e35978dc7\"", + "full_name": "CSVD/beanstalk-flask-demo", + "git_clone_url": "git://github.e.it.census.gov/CSVD/beanstalk-flask-demo.git", + "gitignore_template": "", + "has_discussions": false, + "has_downloads": false, + "has_issues": true, + "has_projects": true, + "has_wiki": true, + "homepage_url": "", + "html_url": "https://github.e.it.census.gov/CSVD/beanstalk-flask-demo", + "http_clone_url": "https://github.e.it.census.gov/CSVD/beanstalk-flask-demo.git", + "id": "beanstalk-flask-demo", + "ignore_vulnerability_alerts_during_read": null, + "is_template": true, + "license_template": null, + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "name": "beanstalk-flask-demo", + "node_id": "MDEwOlJlcG9zaXRvcnk5MzE=", + "pages": [], + "primary_language": "Python", + "private": true, + "repo_id": 931, + "security_and_analysis": [ + { + "advanced_security": [ + { + "status": "disabled" + } + ], + "secret_scanning": [ + { + "status": "disabled" + } + ], + "secret_scanning_push_protection": [ + { + "status": "disabled" + } + ] + } + ], + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "ssh_clone_url": "git@github.e.it.census.gov:CSVD/beanstalk-flask-demo.git", + "svn_url": "https://github.e.it.census.gov/CSVD/beanstalk-flask-demo", + "template": [], + "topics": [ + "terraform" + ], + "visibility": "public", + "vulnerability_alerts": false, + "web_commit_signoff_required": false + }, + "sensitive_values": { + "pages": [], + "security_and_analysis": [ + { + "advanced_security": [ + {} + ], + "secret_scanning": [ + {} + ], + "secret_scanning_push_protection": [ + {} + ] + } + ], + "template": [], + "topics": [ + false + ] + } + }, + { + "address": "module.repo_list[\"beanstalk-flask-demo\"].github_repository_collaborator.collaborators[\"gomez385\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "gomez385", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "beanstalk-flask-demo:gomez385", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "beanstalk-flask-demo", + "username": "gomez385" + }, + "sensitive_values": {} + }, + { + "address": "module.repo_list[\"beanstalk-flask-demo\"].github_repository_collaborator.collaborators[\"morga471\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "morga471", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "beanstalk-flask-demo:morga471", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "beanstalk-flask-demo", + "username": "morga471" + }, + "sensitive_values": {} + }, + { + "address": "module.repo_list[\"beanstalk-flask-demo\"].github_repository_collaborator.collaborators[\"naray007\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "naray007", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "beanstalk-flask-demo:naray007", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "beanstalk-flask-demo", + "username": "naray007" + }, + "sensitive_values": {} + } + ], + "address": "module.repo_list[\"beanstalk-flask-demo\"]" + }, + { + "resources": [ + { + "address": "module.repo_list[\"csvd-org-management\"].github_repository.repo", + "mode": "managed", + "type": "github_repository", + "name": "repo", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 1, + "values": { + "allow_auto_merge": false, + "allow_merge_commit": false, + "allow_rebase_merge": false, + "allow_squash_merge": true, + "allow_update_branch": false, + "archive_on_destroy": true, + "archived": false, + "auto_init": true, + "default_branch": "main", + "delete_branch_on_merge": true, + "description": "Automation Repos for Morpheus POC", + "etag": "W/\"9554696dac650a44a3e473c55ba6d9397b05313c2f16b123aa120d5bc7eeaa77\"", + "full_name": "CSVD/csvd-org-management", + "git_clone_url": "git://github.e.it.census.gov/CSVD/csvd-org-management.git", + "gitignore_template": "", + "has_discussions": false, + "has_downloads": false, + "has_issues": true, + "has_projects": true, + "has_wiki": true, + "homepage_url": "", + "html_url": "https://github.e.it.census.gov/CSVD/csvd-org-management", + "http_clone_url": "https://github.e.it.census.gov/CSVD/csvd-org-management.git", + "id": "csvd-org-management", + "ignore_vulnerability_alerts_during_read": null, + "is_template": false, + "license_template": null, + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "name": "csvd-org-management", + "node_id": "MDEwOlJlcG9zaXRvcnkxMDM4", + "pages": [], + "primary_language": "", + "private": true, + "repo_id": 1038, + "security_and_analysis": [ + { + "advanced_security": [ + { + "status": "disabled" + } + ], + "secret_scanning": [ + { + "status": "disabled" + } + ], + "secret_scanning_push_protection": [ + { + "status": "disabled" + } + ] + } + ], + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "ssh_clone_url": "git@github.e.it.census.gov:CSVD/csvd-org-management.git", + "svn_url": "https://github.e.it.census.gov/CSVD/csvd-org-management", + "template": [], + "topics": [ + "terraform" + ], + "visibility": "public", + "vulnerability_alerts": false, + "web_commit_signoff_required": false + }, + "sensitive_values": { + "pages": [], + "security_and_analysis": [ + { + "advanced_security": [ + {} + ], + "secret_scanning": [ + {} + ], + "secret_scanning_push_protection": [ + {} + ] + } + ], + "template": [], + "topics": [ + false + ] + } + }, + { + "address": "module.repo_list[\"csvd-org-management\"].github_repository_collaborator.collaborators[\"gomez385\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "gomez385", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "csvd-org-management:gomez385", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "csvd-org-management", + "username": "gomez385" + }, + "sensitive_values": {} + }, + { + "address": "module.repo_list[\"csvd-org-management\"].github_repository_collaborator.collaborators[\"morga471\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "morga471", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "csvd-org-management:morga471", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "csvd-org-management", + "username": "morga471" + }, + "sensitive_values": {} + }, + { + "address": "module.repo_list[\"csvd-org-management\"].github_repository_collaborator.collaborators[\"naray007\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "naray007", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "csvd-org-management:naray007", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "csvd-org-management", + "username": "naray007" + }, + "sensitive_values": {} + } + ], + "address": "module.repo_list[\"csvd-org-management\"]" + }, + { + "resources": [ + { + "address": "module.repo_list[\"docker-image-pipeline\"].github_repository.repo", + "mode": "managed", + "type": "github_repository", + "name": "repo", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 1, + "values": { + "allow_auto_merge": false, + "allow_merge_commit": false, + "allow_rebase_merge": false, + "allow_squash_merge": true, + "allow_update_branch": false, + "archive_on_destroy": true, + "archived": false, + "auto_init": true, + "default_branch": "main", + "delete_branch_on_merge": true, + "description": "Template repo for docker image pipelines", + "etag": "W/\"afa36a79c806ffabd950d5c30531322108b58e75cd4e65d9475e5958d55e1115\"", + "full_name": "CSVD/docker-image-pipeline", + "git_clone_url": "git://github.e.it.census.gov/CSVD/docker-image-pipeline.git", + "gitignore_template": "", + "has_discussions": false, + "has_downloads": false, + "has_issues": true, + "has_projects": true, + "has_wiki": true, + "homepage_url": "", + "html_url": "https://github.e.it.census.gov/CSVD/docker-image-pipeline", + "http_clone_url": "https://github.e.it.census.gov/CSVD/docker-image-pipeline.git", + "id": "docker-image-pipeline", + "ignore_vulnerability_alerts_during_read": null, + "is_template": false, + "license_template": null, + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "name": "docker-image-pipeline", + "node_id": "MDEwOlJlcG9zaXRvcnkxMDEw", + "pages": [], + "primary_language": "HCL", + "private": true, + "repo_id": 1010, + "security_and_analysis": [ + { + "advanced_security": [ + { + "status": "disabled" + } + ], + "secret_scanning": [ + { + "status": "disabled" + } + ], + "secret_scanning_push_protection": [ + { + "status": "disabled" + } + ] + } + ], + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "ssh_clone_url": "git@github.e.it.census.gov:CSVD/docker-image-pipeline.git", + "svn_url": "https://github.e.it.census.gov/CSVD/docker-image-pipeline", + "template": [], + "topics": [ + "terraform" + ], + "visibility": "public", + "vulnerability_alerts": false, + "web_commit_signoff_required": false + }, + "sensitive_values": { + "pages": [], + "security_and_analysis": [ + { + "advanced_security": [ + {} + ], + "secret_scanning": [ + {} + ], + "secret_scanning_push_protection": [ + {} + ] + } + ], + "template": [], + "topics": [ + false + ] + } + }, + { + "address": "module.repo_list[\"docker-image-pipeline\"].github_repository_collaborator.collaborators[\"gomez385\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "gomez385", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "docker-image-pipeline:gomez385", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "docker-image-pipeline", + "username": "gomez385" + }, + "sensitive_values": {} + }, + { + "address": "module.repo_list[\"docker-image-pipeline\"].github_repository_collaborator.collaborators[\"morga471\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "morga471", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "docker-image-pipeline:morga471", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "docker-image-pipeline", + "username": "morga471" + }, + "sensitive_values": {} + }, + { + "address": "module.repo_list[\"docker-image-pipeline\"].github_repository_collaborator.collaborators[\"naray007\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "naray007", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "docker-image-pipeline:naray007", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "docker-image-pipeline", + "username": "naray007" + }, + "sensitive_values": {} + } + ], + "address": "module.repo_list[\"docker-image-pipeline\"]" + }, + { + "resources": [ + { + "address": "module.repo_list[\"gh-actions-setup-node\"].github_repository.repo", + "mode": "managed", + "type": "github_repository", + "name": "repo", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 1, + "values": { + "allow_auto_merge": false, + "allow_merge_commit": false, + "allow_rebase_merge": false, + "allow_squash_merge": true, + "allow_update_branch": false, + "archive_on_destroy": true, + "archived": false, + "auto_init": true, + "default_branch": "main", + "delete_branch_on_merge": true, + "description": "Github Actions Setup Node", + "etag": "W/\"964c77b57422a0023f2e4620b4f5c0c1924de4ea312b6abd469b152922a8e6a4\"", + "full_name": "CSVD/gh-actions-setup-node", + "git_clone_url": "git://github.e.it.census.gov/CSVD/gh-actions-setup-node.git", + "gitignore_template": "", + "has_discussions": false, + "has_downloads": false, + "has_issues": true, + "has_projects": true, + "has_wiki": true, + "homepage_url": "", + "html_url": "https://github.e.it.census.gov/CSVD/gh-actions-setup-node", + "http_clone_url": "https://github.e.it.census.gov/CSVD/gh-actions-setup-node.git", + "id": "gh-actions-setup-node", + "ignore_vulnerability_alerts_during_read": null, + "is_template": false, + "license_template": null, + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "name": "gh-actions-setup-node", + "node_id": "MDEwOlJlcG9zaXRvcnk5OTk=", + "pages": [], + "primary_language": "", + "private": false, + "repo_id": 999, + "security_and_analysis": [ + { + "advanced_security": [ + { + "status": "disabled" + } + ], + "secret_scanning": [ + { + "status": "disabled" + } + ], + "secret_scanning_push_protection": [ + { + "status": "disabled" + } + ] + } + ], + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "ssh_clone_url": "git@github.e.it.census.gov:CSVD/gh-actions-setup-node.git", + "svn_url": "https://github.e.it.census.gov/CSVD/gh-actions-setup-node", + "template": [], + "topics": [ + "terraform" + ], + "visibility": "public", + "vulnerability_alerts": false, + "web_commit_signoff_required": false + }, + "sensitive_values": { + "pages": [], + "security_and_analysis": [ + { + "advanced_security": [ + {} + ], + "secret_scanning": [ + {} + ], + "secret_scanning_push_protection": [ + {} + ] + } + ], + "template": [], + "topics": [ + false + ] + } + }, + { + "address": "module.repo_list[\"gh-actions-setup-node\"].github_repository_collaborator.collaborators[\"gomez385\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "gomez385", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "gh-actions-setup-node:gomez385", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "gh-actions-setup-node", + "username": "gomez385" + }, + "sensitive_values": {} + }, + { + "address": "module.repo_list[\"gh-actions-setup-node\"].github_repository_collaborator.collaborators[\"morga471\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "morga471", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "gh-actions-setup-node:morga471", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "gh-actions-setup-node", + "username": "morga471" + }, + "sensitive_values": {} + }, + { + "address": "module.repo_list[\"gh-actions-setup-node\"].github_repository_collaborator.collaborators[\"naray007\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "naray007", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "gh-actions-setup-node:naray007", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "gh-actions-setup-node", + "username": "naray007" + }, + "sensitive_values": {} + } + ], + "address": "module.repo_list[\"gh-actions-setup-node\"]" + }, + { + "resources": [ + { + "address": "module.repo_list[\"github-runner-image\"].github_repository.repo", + "mode": "managed", + "type": "github_repository", + "name": "repo", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 1, + "values": { + "allow_auto_merge": false, + "allow_merge_commit": false, + "allow_rebase_merge": false, + "allow_squash_merge": true, + "allow_update_branch": false, + "archive_on_destroy": true, + "archived": false, + "auto_init": true, + "default_branch": "main", + "delete_branch_on_merge": true, + "description": "Managing AWS Github Runner Image", + "etag": "W/\"2f8b2aad3aa99bd7955bc07a7dcae9782069a56694437a8ac371df31cba7404c\"", + "full_name": "CSVD/github-runner-image", + "git_clone_url": "git://github.e.it.census.gov/CSVD/github-runner-image.git", + "gitignore_template": "", + "has_discussions": false, + "has_downloads": false, + "has_issues": true, + "has_projects": true, + "has_wiki": true, + "homepage_url": "", + "html_url": "https://github.e.it.census.gov/CSVD/github-runner-image", + "http_clone_url": "https://github.e.it.census.gov/CSVD/github-runner-image.git", + "id": "github-runner-image", + "ignore_vulnerability_alerts_during_read": null, + "is_template": false, + "license_template": null, + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "name": "github-runner-image", + "node_id": "MDEwOlJlcG9zaXRvcnkxMDkw", + "pages": [], + "primary_language": "", + "private": false, + "repo_id": 1090, + "security_and_analysis": [ + { + "advanced_security": [ + { + "status": "disabled" + } + ], + "secret_scanning": [ + { + "status": "disabled" + } + ], + "secret_scanning_push_protection": [ + { + "status": "disabled" + } + ] + } + ], + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "ssh_clone_url": "git@github.e.it.census.gov:CSVD/github-runner-image.git", + "svn_url": "https://github.e.it.census.gov/CSVD/github-runner-image", + "template": [], + "topics": [ + "terraform-tools" + ], + "visibility": "public", + "vulnerability_alerts": false, + "web_commit_signoff_required": false + }, + "sensitive_values": { + "pages": [], + "security_and_analysis": [ + { + "advanced_security": [ + {} + ], + "secret_scanning": [ + {} + ], + "secret_scanning_push_protection": [ + {} + ] + } + ], + "template": [], + "topics": [ + false + ] + } + }, + { + "address": "module.repo_list[\"github-runner-image\"].github_repository_collaborator.collaborators[\"gomez385\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "gomez385", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "github-runner-image:gomez385", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "github-runner-image", + "username": "gomez385" + }, + "sensitive_values": {} + }, + { + "address": "module.repo_list[\"github-runner-image\"].github_repository_collaborator.collaborators[\"morga471\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "morga471", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "github-runner-image:morga471", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "github-runner-image", + "username": "morga471" + }, + "sensitive_values": {} + }, + { + "address": "module.repo_list[\"github-runner-image\"].github_repository_collaborator.collaborators[\"naray007\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "naray007", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "github-runner-image:naray007", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "github-runner-image", + "username": "naray007" + }, + "sensitive_values": {} + } + ], + "address": "module.repo_list[\"github-runner-image\"]" + }, + { + "resources": [ + { + "address": "module.repo_list[\"github-runner-images\"].github_repository.repo", + "mode": "managed", + "type": "github_repository", + "name": "repo", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 1, + "values": { + "allow_auto_merge": false, + "allow_merge_commit": false, + "allow_rebase_merge": false, + "allow_squash_merge": true, + "allow_update_branch": false, + "archive_on_destroy": true, + "archived": false, + "auto_init": true, + "default_branch": "main", + "delete_branch_on_merge": true, + "description": "Github Runner Images Import", + "etag": "W/\"dc287ae8ded798ee81678d17632ee54721af2a9e4955fb332971325a1a23ef43\"", + "full_name": "CSVD/github-runner-images", + "git_clone_url": "git://github.e.it.census.gov/CSVD/github-runner-images.git", + "gitignore_template": "", + "has_discussions": false, + "has_downloads": false, + "has_issues": true, + "has_projects": true, + "has_wiki": true, + "homepage_url": "", + "html_url": "https://github.e.it.census.gov/CSVD/github-runner-images", + "http_clone_url": "https://github.e.it.census.gov/CSVD/github-runner-images.git", + "id": "github-runner-images", + "ignore_vulnerability_alerts_during_read": null, + "is_template": false, + "license_template": null, + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "name": "github-runner-images", + "node_id": "MDEwOlJlcG9zaXRvcnkxMDM2", + "pages": [], + "primary_language": "HCL", + "private": true, + "repo_id": 1036, + "security_and_analysis": [ + { + "advanced_security": [ + { + "status": "disabled" + } + ], + "secret_scanning": [ + { + "status": "disabled" + } + ], + "secret_scanning_push_protection": [ + { + "status": "disabled" + } + ] + } + ], + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "ssh_clone_url": "git@github.e.it.census.gov:CSVD/github-runner-images.git", + "svn_url": "https://github.e.it.census.gov/CSVD/github-runner-images", + "template": [], + "topics": [ + "terraform" + ], + "visibility": "public", + "vulnerability_alerts": false, + "web_commit_signoff_required": false + }, + "sensitive_values": { + "pages": [], + "security_and_analysis": [ + { + "advanced_security": [ + {} + ], + "secret_scanning": [ + {} + ], + "secret_scanning_push_protection": [ + {} + ] + } + ], + "template": [], + "topics": [ + false + ] + } + }, + { + "address": "module.repo_list[\"github-runner-images\"].github_repository_collaborator.collaborators[\"gomez385\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "gomez385", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "github-runner-images:gomez385", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "github-runner-images", + "username": "gomez385" + }, + "sensitive_values": {} + }, + { + "address": "module.repo_list[\"github-runner-images\"].github_repository_collaborator.collaborators[\"morga471\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "morga471", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "github-runner-images:morga471", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "github-runner-images", + "username": "morga471" + }, + "sensitive_values": {} + }, + { + "address": "module.repo_list[\"github-runner-images\"].github_repository_collaborator.collaborators[\"naray007\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "naray007", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "github-runner-images:naray007", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "github-runner-images", + "username": "naray007" + }, + "sensitive_values": {} + } + ], + "address": "module.repo_list[\"github-runner-images\"]" + }, + { + "resources": [ + { + "address": "module.repo_list[\"github-runners-workspace\"].github_repository.repo", + "mode": "managed", + "type": "github_repository", + "name": "repo", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 1, + "values": { + "allow_auto_merge": false, + "allow_merge_commit": false, + "allow_rebase_merge": false, + "allow_squash_merge": true, + "allow_update_branch": false, + "archive_on_destroy": true, + "archived": false, + "auto_init": true, + "default_branch": "main", + "delete_branch_on_merge": true, + "description": "Workspace for ghe-runners and github-runner-image", + "etag": "W/\"7559eec0909abf1f686d9290c2b78aa4f88dbdeee11ca5f1c2ffcd5b9624c02d\"", + "full_name": "CSVD/github-runners-workspace", + "git_clone_url": "git://github.e.it.census.gov/CSVD/github-runners-workspace.git", + "gitignore_template": "", + "has_discussions": false, + "has_downloads": false, + "has_issues": true, + "has_projects": true, + "has_wiki": true, + "homepage_url": "", + "html_url": "https://github.e.it.census.gov/CSVD/github-runners-workspace", + "http_clone_url": "https://github.e.it.census.gov/CSVD/github-runners-workspace.git", + "id": "github-runners-workspace", + "ignore_vulnerability_alerts_during_read": null, + "is_template": true, + "license_template": null, + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "name": "github-runners-workspace", + "node_id": "MDEwOlJlcG9zaXRvcnkxMTEz", + "pages": [], + "primary_language": "HCL", + "private": true, + "repo_id": 1113, + "security_and_analysis": [ + { + "advanced_security": [ + { + "status": "disabled" + } + ], + "secret_scanning": [ + { + "status": "disabled" + } + ], + "secret_scanning_push_protection": [ + { + "status": "disabled" + } + ] + } + ], + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "ssh_clone_url": "git@github.e.it.census.gov:CSVD/github-runners-workspace.git", + "svn_url": "https://github.e.it.census.gov/CSVD/github-runners-workspace", + "template": [], + "topics": [ + "github-actions", + "terraform-tools" + ], + "visibility": "private", + "vulnerability_alerts": false, + "web_commit_signoff_required": false + }, + "sensitive_values": { + "pages": [], + "security_and_analysis": [ + { + "advanced_security": [ + {} + ], + "secret_scanning": [ + {} + ], + "secret_scanning_push_protection": [ + {} + ] + } + ], + "template": [], + "topics": [ + false, + false + ] + } + }, + { + "address": "module.repo_list[\"github-runners-workspace\"].github_repository_collaborator.collaborators[\"gomez385\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "gomez385", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "github-runners-workspace:gomez385", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "github-runners-workspace", + "username": "gomez385" + }, + "sensitive_values": {} + }, + { + "address": "module.repo_list[\"github-runners-workspace\"].github_repository_collaborator.collaborators[\"morga471\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "morga471", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "github-runners-workspace:morga471", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "github-runners-workspace", + "username": "morga471" + }, + "sensitive_values": {} + }, + { + "address": "module.repo_list[\"github-runners-workspace\"].github_repository_collaborator.collaborators[\"naray007\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "naray007", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "github-runners-workspace:naray007", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "github-runners-workspace", + "username": "naray007" + }, + "sensitive_values": {} + } + ], + "address": "module.repo_list[\"github-runners-workspace\"]" + }, + { + "resources": [ + { + "address": "module.repo_list[\"github-workspaces\"].github_repository.repo", + "mode": "managed", + "type": "github_repository", + "name": "repo", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 1, + "values": { + "allow_auto_merge": false, + "allow_merge_commit": false, + "allow_rebase_merge": false, + "allow_squash_merge": true, + "allow_update_branch": false, + "archive_on_destroy": true, + "archived": false, + "auto_init": true, + "default_branch": "main", + "delete_branch_on_merge": true, + "description": "Home for github-terraform workspaces", + "etag": "W/\"2a9dc15ac188990158412de4b7c238fe6b8285a323225b76e80553be384aef91\"", + "full_name": "CSVD/github-workspaces", + "git_clone_url": "git://github.e.it.census.gov/CSVD/github-workspaces.git", + "gitignore_template": "", + "has_discussions": false, + "has_downloads": false, + "has_issues": true, + "has_projects": true, + "has_wiki": true, + "homepage_url": "", + "html_url": "https://github.e.it.census.gov/CSVD/github-workspaces", + "http_clone_url": "https://github.e.it.census.gov/CSVD/github-workspaces.git", + "id": "github-workspaces", + "ignore_vulnerability_alerts_during_read": null, + "is_template": false, + "license_template": null, + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "name": "github-workspaces", + "node_id": "MDEwOlJlcG9zaXRvcnkxMTAy", + "pages": [], + "primary_language": "HCL", + "private": false, + "repo_id": 1102, + "security_and_analysis": [ + { + "advanced_security": [ + { + "status": "disabled" + } + ], + "secret_scanning": [ + { + "status": "disabled" + } + ], + "secret_scanning_push_protection": [ + { + "status": "disabled" + } + ] + } + ], + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "ssh_clone_url": "git@github.e.it.census.gov:CSVD/github-workspaces.git", + "svn_url": "https://github.e.it.census.gov/CSVD/github-workspaces", + "template": [], + "topics": [ + "github-actions", + "github-workspace" + ], + "visibility": "public", + "vulnerability_alerts": false, + "web_commit_signoff_required": false + }, + "sensitive_values": { + "pages": [], + "security_and_analysis": [ + { + "advanced_security": [ + {} + ], + "secret_scanning": [ + {} + ], + "secret_scanning_push_protection": [ + {} + ] + } + ], + "template": [], + "topics": [ + false, + false + ] + } + }, + { + "address": "module.repo_list[\"github-workspaces\"].github_repository_collaborator.collaborators[\"gomez385\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "gomez385", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "github-workspaces:gomez385", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "github-workspaces", + "username": "gomez385" + }, + "sensitive_values": {} + }, + { + "address": "module.repo_list[\"github-workspaces\"].github_repository_collaborator.collaborators[\"morga471\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "morga471", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "github-workspaces:morga471", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "github-workspaces", + "username": "morga471" + }, + "sensitive_values": {} + }, + { + "address": "module.repo_list[\"github-workspaces\"].github_repository_collaborator.collaborators[\"naray007\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "naray007", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "github-workspaces:naray007", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "github-workspaces", + "username": "naray007" + }, + "sensitive_values": {} + } + ], + "address": "module.repo_list[\"github-workspaces\"]" + }, + { + "resources": [ + { + "address": "module.repo_list[\"image-pipeline-ansible-playbooks\"].github_repository.repo", + "mode": "managed", + "type": "github_repository", + "name": "repo", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 1, + "values": { + "allow_auto_merge": false, + "allow_merge_commit": false, + "allow_rebase_merge": false, + "allow_squash_merge": true, + "allow_update_branch": false, + "archive_on_destroy": true, + "archived": false, + "auto_init": true, + "default_branch": "main", + "delete_branch_on_merge": true, + "description": "Template repo for image pipelines", + "etag": "W/\"b6086d5086cc020c80a50173dc4dd1ccc503a1a3c913b5e594f7a87aa8c5f704\"", + "full_name": "CSVD/image-pipeline-ansible-playbooks", + "git_clone_url": "git://github.e.it.census.gov/CSVD/image-pipeline-ansible-playbooks.git", + "gitignore_template": "", + "has_discussions": false, + "has_downloads": false, + "has_issues": true, + "has_projects": true, + "has_wiki": true, + "homepage_url": "", + "html_url": "https://github.e.it.census.gov/CSVD/image-pipeline-ansible-playbooks", + "http_clone_url": "https://github.e.it.census.gov/CSVD/image-pipeline-ansible-playbooks.git", + "id": "image-pipeline-ansible-playbooks", + "ignore_vulnerability_alerts_during_read": null, + "is_template": false, + "license_template": null, + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "name": "image-pipeline-ansible-playbooks", + "node_id": "MDEwOlJlcG9zaXRvcnk5ODM=", + "pages": [], + "primary_language": "Jinja", + "private": true, + "repo_id": 983, + "security_and_analysis": [ + { + "advanced_security": [ + { + "status": "disabled" + } + ], + "secret_scanning": [ + { + "status": "disabled" + } + ], + "secret_scanning_push_protection": [ + { + "status": "disabled" + } + ] + } + ], + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "ssh_clone_url": "git@github.e.it.census.gov:CSVD/image-pipeline-ansible-playbooks.git", + "svn_url": "https://github.e.it.census.gov/CSVD/image-pipeline-ansible-playbooks", + "template": [], + "topics": [ + "terraform" + ], + "visibility": "public", + "vulnerability_alerts": false, + "web_commit_signoff_required": false + }, + "sensitive_values": { + "pages": [], + "security_and_analysis": [ + { + "advanced_security": [ + {} + ], + "secret_scanning": [ + {} + ], + "secret_scanning_push_protection": [ + {} + ] + } + ], + "template": [], + "topics": [ + false + ] + } + }, + { + "address": "module.repo_list[\"image-pipeline-ansible-playbooks\"].github_repository_collaborator.collaborators[\"gomez385\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "gomez385", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "image-pipeline-ansible-playbooks:gomez385", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "image-pipeline-ansible-playbooks", + "username": "gomez385" + }, + "sensitive_values": {} + }, + { + "address": "module.repo_list[\"image-pipeline-ansible-playbooks\"].github_repository_collaborator.collaborators[\"morga471\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "morga471", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "image-pipeline-ansible-playbooks:morga471", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "image-pipeline-ansible-playbooks", + "username": "morga471" + }, + "sensitive_values": {} + }, + { + "address": "module.repo_list[\"image-pipeline-ansible-playbooks\"].github_repository_collaborator.collaborators[\"naray007\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "naray007", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "image-pipeline-ansible-playbooks:naray007", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "image-pipeline-ansible-playbooks", + "username": "naray007" + }, + "sensitive_values": {} + } + ], + "address": "module.repo_list[\"image-pipeline-ansible-playbooks\"]" + }, + { + "resources": [ + { + "address": "module.repo_list[\"image-pipeline-asset-releases\"].github_repository.repo", + "mode": "managed", + "type": "github_repository", + "name": "repo", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 1, + "values": { + "allow_auto_merge": false, + "allow_merge_commit": false, + "allow_rebase_merge": false, + "allow_squash_merge": true, + "allow_update_branch": false, + "archive_on_destroy": true, + "archived": false, + "auto_init": true, + "default_branch": "main", + "delete_branch_on_merge": true, + "description": "Terraform Workspace for publishing image-pipeline-assets", + "etag": "W/\"0ab07eaa67048940e6aaeee8819f106057c3a7df91c159850dfbf6d69d34d1e3\"", + "full_name": "CSVD/image-pipeline-asset-releases", + "git_clone_url": "git://github.e.it.census.gov/CSVD/image-pipeline-asset-releases.git", + "gitignore_template": "", + "has_discussions": false, + "has_downloads": false, + "has_issues": true, + "has_projects": true, + "has_wiki": true, + "homepage_url": "", + "html_url": "https://github.e.it.census.gov/CSVD/image-pipeline-asset-releases", + "http_clone_url": "https://github.e.it.census.gov/CSVD/image-pipeline-asset-releases.git", + "id": "image-pipeline-asset-releases", + "ignore_vulnerability_alerts_during_read": null, + "is_template": false, + "license_template": null, + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "name": "image-pipeline-asset-releases", + "node_id": "MDEwOlJlcG9zaXRvcnk5OTY=", + "pages": [], + "primary_language": "", + "private": true, + "repo_id": 996, + "security_and_analysis": [ + { + "advanced_security": [ + { + "status": "disabled" + } + ], + "secret_scanning": [ + { + "status": "disabled" + } + ], + "secret_scanning_push_protection": [ + { + "status": "disabled" + } + ] + } + ], + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "ssh_clone_url": "git@github.e.it.census.gov:CSVD/image-pipeline-asset-releases.git", + "svn_url": "https://github.e.it.census.gov/CSVD/image-pipeline-asset-releases", + "template": [], + "topics": [ + "terraform" + ], + "visibility": "public", + "vulnerability_alerts": false, + "web_commit_signoff_required": false + }, + "sensitive_values": { + "pages": [], + "security_and_analysis": [ + { + "advanced_security": [ + {} + ], + "secret_scanning": [ + {} + ], + "secret_scanning_push_protection": [ + {} + ] + } + ], + "template": [], + "topics": [ + false + ] + } + }, + { + "address": "module.repo_list[\"image-pipeline-asset-releases\"].github_repository_collaborator.collaborators[\"gomez385\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "gomez385", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "image-pipeline-asset-releases:gomez385", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "image-pipeline-asset-releases", + "username": "gomez385" + }, + "sensitive_values": {} + }, + { + "address": "module.repo_list[\"image-pipeline-asset-releases\"].github_repository_collaborator.collaborators[\"morga471\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "morga471", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "image-pipeline-asset-releases:morga471", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "image-pipeline-asset-releases", + "username": "morga471" + }, + "sensitive_values": {} + }, + { + "address": "module.repo_list[\"image-pipeline-asset-releases\"].github_repository_collaborator.collaborators[\"naray007\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "naray007", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "image-pipeline-asset-releases:naray007", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "image-pipeline-asset-releases", + "username": "naray007" + }, + "sensitive_values": {} + } + ], + "address": "module.repo_list[\"image-pipeline-asset-releases\"]" + }, + { + "resources": [ + { + "address": "module.repo_list[\"image-pipeline-goss\"].github_repository.repo", + "mode": "managed", + "type": "github_repository", + "name": "repo", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 1, + "values": { + "allow_auto_merge": false, + "allow_merge_commit": false, + "allow_rebase_merge": false, + "allow_squash_merge": true, + "allow_update_branch": false, + "archive_on_destroy": true, + "archived": false, + "auto_init": true, + "default_branch": "main", + "delete_branch_on_merge": true, + "description": "Template repo for image pipelines", + "etag": "W/\"22dac3c252584dd6571e43bf63438b36fbe8a1a4d3d07e0c0c134a9c5d3cf462\"", + "full_name": "CSVD/image-pipeline-goss", + "git_clone_url": "git://github.e.it.census.gov/CSVD/image-pipeline-goss.git", + "gitignore_template": "", + "has_discussions": false, + "has_downloads": false, + "has_issues": true, + "has_projects": true, + "has_wiki": true, + "homepage_url": "", + "html_url": "https://github.e.it.census.gov/CSVD/image-pipeline-goss", + "http_clone_url": "https://github.e.it.census.gov/CSVD/image-pipeline-goss.git", + "id": "image-pipeline-goss", + "ignore_vulnerability_alerts_during_read": null, + "is_template": false, + "license_template": null, + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "name": "image-pipeline-goss", + "node_id": "MDEwOlJlcG9zaXRvcnk5NDI=", + "pages": [], + "primary_language": "HCL", + "private": true, + "repo_id": 942, + "security_and_analysis": [ + { + "advanced_security": [ + { + "status": "disabled" + } + ], + "secret_scanning": [ + { + "status": "disabled" + } + ], + "secret_scanning_push_protection": [ + { + "status": "disabled" + } + ] + } + ], + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "ssh_clone_url": "git@github.e.it.census.gov:CSVD/image-pipeline-goss.git", + "svn_url": "https://github.e.it.census.gov/CSVD/image-pipeline-goss", + "template": [], + "topics": [ + "terraform" + ], + "visibility": "public", + "vulnerability_alerts": false, + "web_commit_signoff_required": false + }, + "sensitive_values": { + "pages": [], + "security_and_analysis": [ + { + "advanced_security": [ + {} + ], + "secret_scanning": [ + {} + ], + "secret_scanning_push_protection": [ + {} + ] + } + ], + "template": [], + "topics": [ + false + ] + } + }, + { + "address": "module.repo_list[\"image-pipeline-goss\"].github_repository_collaborator.collaborators[\"gomez385\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "gomez385", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "image-pipeline-goss:gomez385", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "image-pipeline-goss", + "username": "gomez385" + }, + "sensitive_values": {} + }, + { + "address": "module.repo_list[\"image-pipeline-goss\"].github_repository_collaborator.collaborators[\"morga471\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "morga471", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "image-pipeline-goss:morga471", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "image-pipeline-goss", + "username": "morga471" + }, + "sensitive_values": {} + }, + { + "address": "module.repo_list[\"image-pipeline-goss\"].github_repository_collaborator.collaborators[\"naray007\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "naray007", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "image-pipeline-goss:naray007", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "image-pipeline-goss", + "username": "naray007" + }, + "sensitive_values": {} + }, + { + "address": "module.repo_list[\"image-pipeline-goss\"].github_repository_file.managed_extra_files[\"s3_upload.yaml\"]", + "mode": "managed", + "type": "github_repository_file", + "name": "managed_extra_files", + "index": "s3_upload.yaml", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "autocreate_branch": null, + "autocreate_branch_source_branch": null, + "autocreate_branch_source_sha": null, + "branch": "main", + "commit_author": null, + "commit_email": null, + "commit_message": "Update .github/workflows/s3_upload.yaml", + "commit_sha": "8d51313ba5db9331411e60b91afef3ef6323a9c3", + "content": "# This is a basic workflow to help you get started with Actions\nname: S3 Upload\n\non:\n push:\n branches: [ \"main\" ]\n # Allows you to run this workflow manually from the Actions tab\n workflow_dispatch:\n \n# A workflow run is made up of one or more jobs that can run sequentially or in parallel\njobs:\n # This workflow contains a single job called \"build\"\n build:\n # The type of runner that the job will run on\n runs-on: [ image-pipeline-goss-testing ]\n env:\n AWS_SECRET_ACCESS_KEY: \"${{ secrets.AWS_SECRET_ACCESS_KEY }}\"\n AWS_ACCESS_KEY_ID: \"${{ vars.AWS_ACCESS_KEY_ID }}\"\n AWS_SESSION_TOKEN: \"${{ secrets.AWS_SESSION_TOKEN }}\"\n \n\n # Steps represent a sequence of tasks that will be executed as part of the job\n steps:\n # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it\n - uses: actions/checkout@v3\n\n - uses: CSVD/gh-actions-setup-node@v3\n with:\n node-version: 16\n\n - uses: CSVD/gh-actions-setup-terraform@v2\n with:\n terraform_wrapper: false\n terraform_version: ${{ vars.terraform_version }}\n \n - name: get latest\n run: |\n terraform init -input=false -upgrade\n terraform apply -auto-approve -input=false\n working-directory: ./update\n\n - name: archive and upload\n run: |\n rm -rf .terraform update update/.terraform\n zip -r image-pipeline-goss-testing.zip *\n aws s3 cp image-pipeline-goss-testing.zip s3://csvd-dev-ew-github-actions\n", + "file": ".github/workflows/s3_upload.yaml", + "id": "image-pipeline-goss/.github/workflows/s3_upload.yaml", + "overwrite_on_create": true, + "ref": "main", + "repository": "image-pipeline-goss", + "sha": "b88a02be66eb1974b5b766d622f4316a2a8061b9" + }, + "sensitive_values": {} + } + ], + "address": "module.repo_list[\"image-pipeline-goss\"]" + }, + { + "resources": [ + { + "address": "module.repo_list[\"image-pipeline-packer\"].github_repository.repo", + "mode": "managed", + "type": "github_repository", + "name": "repo", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 1, + "values": { + "allow_auto_merge": false, + "allow_merge_commit": false, + "allow_rebase_merge": false, + "allow_squash_merge": true, + "allow_update_branch": false, + "archive_on_destroy": true, + "archived": false, + "auto_init": true, + "default_branch": "main", + "delete_branch_on_merge": true, + "description": "Template repo for image pipelines", + "etag": "W/\"f098082b026cdb8e23a98afebcf9839b4863bb9ac228647ac57cb0dcc1096587\"", + "full_name": "CSVD/image-pipeline-packer", + "git_clone_url": "git://github.e.it.census.gov/CSVD/image-pipeline-packer.git", + "gitignore_template": "", + "has_discussions": false, + "has_downloads": false, + "has_issues": true, + "has_projects": true, + "has_wiki": true, + "homepage_url": "", + "html_url": "https://github.e.it.census.gov/CSVD/image-pipeline-packer", + "http_clone_url": "https://github.e.it.census.gov/CSVD/image-pipeline-packer.git", + "id": "image-pipeline-packer", + "ignore_vulnerability_alerts_during_read": null, + "is_template": false, + "license_template": null, + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "name": "image-pipeline-packer", + "node_id": "MDEwOlJlcG9zaXRvcnk5OTU=", + "pages": [], + "primary_language": "HCL", + "private": true, + "repo_id": 995, + "security_and_analysis": [ + { + "advanced_security": [ + { + "status": "disabled" + } + ], + "secret_scanning": [ + { + "status": "disabled" + } + ], + "secret_scanning_push_protection": [ + { + "status": "disabled" + } + ] + } + ], + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "ssh_clone_url": "git@github.e.it.census.gov:CSVD/image-pipeline-packer.git", + "svn_url": "https://github.e.it.census.gov/CSVD/image-pipeline-packer", + "template": [], + "topics": [ + "terraform" + ], + "visibility": "public", + "vulnerability_alerts": false, + "web_commit_signoff_required": false + }, + "sensitive_values": { + "pages": [], + "security_and_analysis": [ + { + "advanced_security": [ + {} + ], + "secret_scanning": [ + {} + ], + "secret_scanning_push_protection": [ + {} + ] + } + ], + "template": [], + "topics": [ + false + ] + } + }, + { + "address": "module.repo_list[\"image-pipeline-packer\"].github_repository_collaborator.collaborators[\"gomez385\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "gomez385", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "image-pipeline-packer:gomez385", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "image-pipeline-packer", + "username": "gomez385" + }, + "sensitive_values": {} + }, + { + "address": "module.repo_list[\"image-pipeline-packer\"].github_repository_collaborator.collaborators[\"morga471\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "morga471", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "image-pipeline-packer:morga471", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "image-pipeline-packer", + "username": "morga471" + }, + "sensitive_values": {} + }, + { + "address": "module.repo_list[\"image-pipeline-packer\"].github_repository_collaborator.collaborators[\"naray007\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "naray007", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "image-pipeline-packer:naray007", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "image-pipeline-packer", + "username": "naray007" + }, + "sensitive_values": {} + } + ], + "address": "module.repo_list[\"image-pipeline-packer\"]" + }, + { + "resources": [ + { + "address": "module.repo_list[\"morpheus-clouds\"].github_repository.repo", + "mode": "managed", + "type": "github_repository", + "name": "repo", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 1, + "values": { + "allow_auto_merge": false, + "allow_merge_commit": false, + "allow_rebase_merge": false, + "allow_squash_merge": true, + "allow_update_branch": false, + "archive_on_destroy": true, + "archived": false, + "auto_init": true, + "default_branch": "main", + "delete_branch_on_merge": true, + "description": "Repo for morpheus cloud", + "etag": "W/\"821214079c1450c9472028120d6a9c503f186a8f0a1b660a9745f68c96d16832\"", + "full_name": "CSVD/morpheus-clouds", + "git_clone_url": "git://github.e.it.census.gov/CSVD/morpheus-clouds.git", + "gitignore_template": "", + "has_discussions": false, + "has_downloads": false, + "has_issues": true, + "has_projects": true, + "has_wiki": true, + "homepage_url": "", + "html_url": "https://github.e.it.census.gov/CSVD/morpheus-clouds", + "http_clone_url": "https://github.e.it.census.gov/CSVD/morpheus-clouds.git", + "id": "morpheus-clouds", + "ignore_vulnerability_alerts_during_read": null, + "is_template": false, + "license_template": null, + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "name": "morpheus-clouds", + "node_id": "MDEwOlJlcG9zaXRvcnkxMDEy", + "pages": [], + "primary_language": "HCL", + "private": true, + "repo_id": 1012, + "security_and_analysis": [ + { + "advanced_security": [ + { + "status": "disabled" + } + ], + "secret_scanning": [ + { + "status": "disabled" + } + ], + "secret_scanning_push_protection": [ + { + "status": "disabled" + } + ] + } + ], + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "ssh_clone_url": "git@github.e.it.census.gov:CSVD/morpheus-clouds.git", + "svn_url": "https://github.e.it.census.gov/CSVD/morpheus-clouds", + "template": [], + "topics": [ + "morpheus", + "terraform" + ], + "visibility": "public", + "vulnerability_alerts": false, + "web_commit_signoff_required": false + }, + "sensitive_values": { + "pages": [], + "security_and_analysis": [ + { + "advanced_security": [ + {} + ], + "secret_scanning": [ + {} + ], + "secret_scanning_push_protection": [ + {} + ] + } + ], + "template": [], + "topics": [ + false, + false + ] + } + }, + { + "address": "module.repo_list[\"morpheus-clouds\"].github_repository_collaborator.collaborators[\"gomez385\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "gomez385", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "morpheus-clouds:gomez385", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "morpheus-clouds", + "username": "gomez385" + }, + "sensitive_values": {} + }, + { + "address": "module.repo_list[\"morpheus-clouds\"].github_repository_collaborator.collaborators[\"morga471\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "morga471", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "permission": "admin", + "permission_diff_suppression": false, + "repository": "morpheus-clouds", + "username": "morga471" + }, + "sensitive_values": {} + }, + { + "address": "module.repo_list[\"morpheus-clouds\"].github_repository_collaborator.collaborators[\"naray007\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "naray007", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "permission": "admin", + "permission_diff_suppression": false, + "repository": "morpheus-clouds", + "username": "naray007" + }, + "sensitive_values": {} + } + ], + "address": "module.repo_list[\"morpheus-clouds\"]" + }, + { + "resources": [ + { + "address": "module.repo_list[\"morpheus-repos\"].github_repository.repo", + "mode": "managed", + "type": "github_repository", + "name": "repo", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 1, + "values": { + "allow_auto_merge": false, + "allow_merge_commit": false, + "allow_rebase_merge": false, + "allow_squash_merge": true, + "allow_update_branch": false, + "archive_on_destroy": true, + "archived": false, + "auto_init": true, + "default_branch": "main", + "delete_branch_on_merge": true, + "description": "morpheus-repos", + "etag": "W/\"28dd1636e9ea975361ed55223c9896be94752c7e3f6dea9cdb48c87c477a9706\"", + "full_name": "CSVD/morpheus-repos", + "git_clone_url": "git://github.e.it.census.gov/CSVD/morpheus-repos.git", + "gitignore_template": "", + "has_discussions": false, + "has_downloads": false, + "has_issues": true, + "has_projects": true, + "has_wiki": true, + "homepage_url": "", + "html_url": "https://github.e.it.census.gov/CSVD/morpheus-repos", + "http_clone_url": "https://github.e.it.census.gov/CSVD/morpheus-repos.git", + "id": "morpheus-repos", + "ignore_vulnerability_alerts_during_read": null, + "is_template": false, + "license_template": null, + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "name": "morpheus-repos", + "node_id": "MDEwOlJlcG9zaXRvcnkxMDY5", + "pages": [], + "primary_language": "HCL", + "private": false, + "repo_id": 1069, + "security_and_analysis": [ + { + "advanced_security": [ + { + "status": "disabled" + } + ], + "secret_scanning": [ + { + "status": "disabled" + } + ], + "secret_scanning_push_protection": [ + { + "status": "disabled" + } + ] + } + ], + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "ssh_clone_url": "git@github.e.it.census.gov:CSVD/morpheus-repos.git", + "svn_url": "https://github.e.it.census.gov/CSVD/morpheus-repos", + "template": [], + "topics": [ + "morpheus" + ], + "visibility": "public", + "vulnerability_alerts": false, + "web_commit_signoff_required": false + }, + "sensitive_values": { + "pages": [], + "security_and_analysis": [ + { + "advanced_security": [ + {} + ], + "secret_scanning": [ + {} + ], + "secret_scanning_push_protection": [ + {} + ] + } + ], + "template": [], + "topics": [ + false + ] + } + }, + { + "address": "module.repo_list[\"morpheus-repos\"].github_repository_collaborator.collaborators[\"gomez385\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "gomez385", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "morpheus-repos:gomez385", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "morpheus-repos", + "username": "gomez385" + }, + "sensitive_values": {} + }, + { + "address": "module.repo_list[\"morpheus-repos\"].github_repository_collaborator.collaborators[\"morga471\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "morga471", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "morpheus-repos:morga471", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "morpheus-repos", + "username": "morga471" + }, + "sensitive_values": {} + }, + { + "address": "module.repo_list[\"morpheus-repos\"].github_repository_collaborator.collaborators[\"naray007\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "naray007", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "morpheus-repos:naray007", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "morpheus-repos", + "username": "naray007" + }, + "sensitive_values": {} + } + ], + "address": "module.repo_list[\"morpheus-repos\"]" + }, + { + "resources": [ + { + "address": "module.repo_list[\"opensearch\"].github_repository.repo", + "mode": "managed", + "type": "github_repository", + "name": "repo", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 1, + "values": { + "allow_auto_merge": false, + "allow_merge_commit": false, + "allow_rebase_merge": false, + "allow_squash_merge": true, + "allow_update_branch": false, + "archive_on_destroy": true, + "archived": false, + "auto_init": true, + "default_branch": "main", + "delete_branch_on_merge": true, + "description": "Terraform workspace for managing OpenSearch", + "etag": "W/\"ed0854ff73d6fcd5dfbfed8e4200a480520dae3d435c3f91cb37719d8470452c\"", + "full_name": "CSVD/opensearch", + "git_clone_url": "git://github.e.it.census.gov/CSVD/opensearch.git", + "gitignore_template": "", + "has_discussions": false, + "has_downloads": false, + "has_issues": true, + "has_projects": true, + "has_wiki": true, + "homepage_url": "", + "html_url": "https://github.e.it.census.gov/CSVD/opensearch", + "http_clone_url": "https://github.e.it.census.gov/CSVD/opensearch.git", + "id": "opensearch", + "ignore_vulnerability_alerts_during_read": null, + "is_template": false, + "license_template": null, + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "name": "opensearch", + "node_id": "MDEwOlJlcG9zaXRvcnkxMDQ4", + "pages": [], + "primary_language": "HCL", + "private": false, + "repo_id": 1048, + "security_and_analysis": [ + { + "advanced_security": [ + { + "status": "disabled" + } + ], + "secret_scanning": [ + { + "status": "disabled" + } + ], + "secret_scanning_push_protection": [ + { + "status": "disabled" + } + ] + } + ], + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "ssh_clone_url": "git@github.e.it.census.gov:CSVD/opensearch.git", + "svn_url": "https://github.e.it.census.gov/CSVD/opensearch", + "template": [], + "topics": [ + "terraform" + ], + "visibility": "public", + "vulnerability_alerts": false, + "web_commit_signoff_required": false + }, + "sensitive_values": { + "pages": [], + "security_and_analysis": [ + { + "advanced_security": [ + {} + ], + "secret_scanning": [ + {} + ], + "secret_scanning_push_protection": [ + {} + ] + } + ], + "template": [], + "topics": [ + false + ] + } + }, + { + "address": "module.repo_list[\"opensearch\"].github_repository_collaborator.collaborators[\"gomez385\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "gomez385", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "opensearch:gomez385", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "opensearch", + "username": "gomez385" + }, + "sensitive_values": {} + }, + { + "address": "module.repo_list[\"opensearch\"].github_repository_collaborator.collaborators[\"morga471\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "morga471", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "opensearch:morga471", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "opensearch", + "username": "morga471" + }, + "sensitive_values": {} + }, + { + "address": "module.repo_list[\"opensearch\"].github_repository_collaborator.collaborators[\"naray007\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "naray007", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "opensearch:naray007", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "opensearch", + "username": "naray007" + }, + "sensitive_values": {} + } + ], + "address": "module.repo_list[\"opensearch\"]" + }, + { + "resources": [ + { + "address": "module.repo_list[\"pip-config\"].github_branch_protection.main[0]", + "mode": "managed", + "type": "github_branch_protection", + "name": "main", + "index": 0, + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 2, + "values": { + "allows_deletions": false, + "allows_force_pushes": false, + "enforce_admins": true, + "force_push_bypassers": null, + "lock_branch": false, + "pattern": "main", + "repository_id": "MDEwOlJlcG9zaXRvcnkxMjc3", + "require_conversation_resolution": false, + "require_signed_commits": false, + "required_linear_history": false, + "required_pull_request_reviews": [ + { + "dismiss_stale_reviews": true, + "dismissal_restrictions": null, + "pull_request_bypassers": [ + "MDQ6VXNlcjU0OQ==", + "MDQ6VXNlcjYwMw==" + ], + "require_code_owner_reviews": true, + "require_last_push_approval": false, + "required_approving_review_count": 1, + "restrict_dismissals": null + } + ], + "required_status_checks": [], + "restrict_pushes": [] + }, + "sensitive_values": { + "required_pull_request_reviews": [ + { + "pull_request_bypassers": [ + false, + false + ] + } + ], + "required_status_checks": [], + "restrict_pushes": [] + } + }, + { + "address": "module.repo_list[\"pip-config\"].github_repository.repo", + "mode": "managed", + "type": "github_repository", + "name": "repo", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 1, + "values": { + "allow_auto_merge": false, + "allow_merge_commit": false, + "allow_rebase_merge": false, + "allow_squash_merge": true, + "allow_update_branch": false, + "archive_on_destroy": true, + "archived": false, + "auto_init": true, + "default_branch": "main", + "delete_branch_on_merge": true, + "description": "Composite Action for configuring pip", + "etag": "W/\"7e8a2a753cb91dc12e3c99dc0e6796cbf734f11a57b6eb89643b41880dac2df8\"", + "full_name": "CSVD/pip-config", + "git_clone_url": "git://github.e.it.census.gov/CSVD/pip-config.git", + "gitignore_template": null, + "has_discussions": false, + "has_downloads": false, + "has_issues": true, + "has_projects": true, + "has_wiki": true, + "homepage_url": "", + "html_url": "https://github.e.it.census.gov/CSVD/pip-config", + "http_clone_url": "https://github.e.it.census.gov/CSVD/pip-config.git", + "id": "pip-config", + "ignore_vulnerability_alerts_during_read": null, + "is_template": false, + "license_template": null, + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "name": "pip-config", + "node_id": "MDEwOlJlcG9zaXRvcnkxMjc3", + "pages": [], + "primary_language": "", + "private": false, + "repo_id": 1277, + "security_and_analysis": [ + { + "advanced_security": [ + { + "status": "disabled" + } + ], + "secret_scanning": [ + { + "status": "disabled" + } + ], + "secret_scanning_push_protection": [ + { + "status": "disabled" + } + ] + } + ], + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "ssh_clone_url": "git@github.e.it.census.gov:CSVD/pip-config.git", + "svn_url": "https://github.e.it.census.gov/CSVD/pip-config", + "template": [], + "topics": [ + "github-actions", + "pip" + ], + "visibility": "public", + "vulnerability_alerts": false, + "web_commit_signoff_required": false + }, + "sensitive_values": { + "pages": [], + "security_and_analysis": [ + { + "advanced_security": [ + {} + ], + "secret_scanning": [ + {} + ], + "secret_scanning_push_protection": [ + {} + ] + } + ], + "template": [], + "topics": [ + false, + false + ] + } + }, + { + "address": "module.repo_list[\"pip-config\"].github_repository_collaborator.collaborators[\"gomez385\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "gomez385", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "pip-config:gomez385", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "pip-config", + "username": "gomez385" + }, + "sensitive_values": {} + }, + { + "address": "module.repo_list[\"pip-config\"].github_repository_collaborator.collaborators[\"morga471\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "morga471", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "pip-config:morga471", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "pip-config", + "username": "morga471" + }, + "sensitive_values": {} + }, + { + "address": "module.repo_list[\"pip-config\"].github_repository_collaborator.collaborators[\"naray007\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "naray007", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "pip-config:naray007", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "pip-config", + "username": "naray007" + }, + "sensitive_values": {} + } + ], + "address": "module.repo_list[\"pip-config\"]" + }, + { + "resources": [ + { + "address": "module.repo_list[\"service-catalog-workspace\"].github_repository.repo", + "mode": "managed", + "type": "github_repository", + "name": "repo", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 1, + "values": { + "allow_auto_merge": false, + "allow_merge_commit": false, + "allow_rebase_merge": false, + "allow_squash_merge": true, + "allow_update_branch": false, + "archive_on_destroy": true, + "archived": false, + "auto_init": true, + "default_branch": "main", + "delete_branch_on_merge": true, + "description": "service-catalog-workspace", + "etag": "W/\"ac967e013bdca10de2aff82f46b136edb734ca78aa83a4bcd823a888cff86a56\"", + "full_name": "CSVD/service-catalog-workspace", + "git_clone_url": "git://github.e.it.census.gov/CSVD/service-catalog-workspace.git", + "gitignore_template": "", + "has_discussions": false, + "has_downloads": false, + "has_issues": true, + "has_projects": true, + "has_wiki": true, + "homepage_url": "", + "html_url": "https://github.e.it.census.gov/CSVD/service-catalog-workspace", + "http_clone_url": "https://github.e.it.census.gov/CSVD/service-catalog-workspace.git", + "id": "service-catalog-workspace", + "ignore_vulnerability_alerts_during_read": null, + "is_template": true, + "license_template": null, + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "name": "service-catalog-workspace", + "node_id": "MDEwOlJlcG9zaXRvcnkxMTM1", + "pages": [], + "primary_language": "", + "private": false, + "repo_id": 1135, + "security_and_analysis": [ + { + "advanced_security": [ + { + "status": "disabled" + } + ], + "secret_scanning": [ + { + "status": "disabled" + } + ], + "secret_scanning_push_protection": [ + { + "status": "disabled" + } + ] + } + ], + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "ssh_clone_url": "git@github.e.it.census.gov:CSVD/service-catalog-workspace.git", + "svn_url": "https://github.e.it.census.gov/CSVD/service-catalog-workspace", + "template": [], + "topics": [ + "terraform-tools" + ], + "visibility": "public", + "vulnerability_alerts": false, + "web_commit_signoff_required": false + }, + "sensitive_values": { + "pages": [], + "security_and_analysis": [ + { + "advanced_security": [ + {} + ], + "secret_scanning": [ + {} + ], + "secret_scanning_push_protection": [ + {} + ] + } + ], + "template": [], + "topics": [ + false + ] + } + }, + { + "address": "module.repo_list[\"service-catalog-workspace\"].github_repository_collaborator.collaborators[\"gomez385\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "gomez385", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "service-catalog-workspace:gomez385", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "service-catalog-workspace", + "username": "gomez385" + }, + "sensitive_values": {} + }, + { + "address": "module.repo_list[\"service-catalog-workspace\"].github_repository_collaborator.collaborators[\"morga471\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "morga471", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "service-catalog-workspace:morga471", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "service-catalog-workspace", + "username": "morga471" + }, + "sensitive_values": {} + }, + { + "address": "module.repo_list[\"service-catalog-workspace\"].github_repository_collaborator.collaborators[\"naray007\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "naray007", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "service-catalog-workspace:naray007", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "service-catalog-workspace", + "username": "naray007" + }, + "sensitive_values": {} + } + ], + "address": "module.repo_list[\"service-catalog-workspace\"]" + }, + { + "resources": [ + { + "address": "module.repo_list[\"supervisord-conf\"].github_branch_protection.main[0]", + "mode": "managed", + "type": "github_branch_protection", + "name": "main", + "index": 0, + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 2, + "values": { + "allows_deletions": false, + "allows_force_pushes": false, + "enforce_admins": true, + "force_push_bypassers": null, + "lock_branch": false, + "pattern": "main", + "repository_id": "MDEwOlJlcG9zaXRvcnkxMDc0", + "require_conversation_resolution": false, + "require_signed_commits": false, + "required_linear_history": false, + "required_pull_request_reviews": [ + { + "dismiss_stale_reviews": true, + "dismissal_restrictions": null, + "pull_request_bypassers": [ + "MDQ6VXNlcjU0OQ==", + "MDQ6VXNlcjYwMw==" + ], + "require_code_owner_reviews": true, + "require_last_push_approval": false, + "required_approving_review_count": 1, + "restrict_dismissals": null + } + ], + "required_status_checks": [], + "restrict_pushes": [] + }, + "sensitive_values": { + "required_pull_request_reviews": [ + { + "pull_request_bypassers": [ + false, + false + ] + } + ], + "required_status_checks": [], + "restrict_pushes": [] + } + }, + { + "address": "module.repo_list[\"supervisord-conf\"].github_repository.repo", + "mode": "managed", + "type": "github_repository", + "name": "repo", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 1, + "values": { + "allow_auto_merge": false, + "allow_merge_commit": false, + "allow_rebase_merge": false, + "allow_squash_merge": true, + "allow_update_branch": false, + "archive_on_destroy": true, + "archived": false, + "auto_init": true, + "default_branch": "main", + "delete_branch_on_merge": true, + "description": "supervisord-conf", + "etag": "W/\"cb957dacdfa80473c969e7403c6edefe52de0ef0f01001a90bfc076dd61d3fc3\"", + "full_name": "CSVD/supervisord-conf", + "git_clone_url": "git://github.e.it.census.gov/CSVD/supervisord-conf.git", + "gitignore_template": "", + "has_discussions": false, + "has_downloads": false, + "has_issues": true, + "has_projects": true, + "has_wiki": true, + "homepage_url": "", + "html_url": "https://github.e.it.census.gov/CSVD/supervisord-conf", + "http_clone_url": "https://github.e.it.census.gov/CSVD/supervisord-conf.git", + "id": "supervisord-conf", + "ignore_vulnerability_alerts_during_read": null, + "is_template": false, + "license_template": null, + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "name": "supervisord-conf", + "node_id": "MDEwOlJlcG9zaXRvcnkxMDc0", + "pages": [], + "primary_language": "Python", + "private": false, + "repo_id": 1074, + "security_and_analysis": [ + { + "advanced_security": [ + { + "status": "disabled" + } + ], + "secret_scanning": [ + { + "status": "disabled" + } + ], + "secret_scanning_push_protection": [ + { + "status": "disabled" + } + ] + } + ], + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "ssh_clone_url": "git@github.e.it.census.gov:CSVD/supervisord-conf.git", + "svn_url": "https://github.e.it.census.gov/CSVD/supervisord-conf", + "template": [], + "topics": [ + "automation", + "supervisord" + ], + "visibility": "public", + "vulnerability_alerts": false, + "web_commit_signoff_required": false + }, + "sensitive_values": { + "pages": [], + "security_and_analysis": [ + { + "advanced_security": [ + {} + ], + "secret_scanning": [ + {} + ], + "secret_scanning_push_protection": [ + {} + ] + } + ], + "template": [], + "topics": [ + false, + false + ] + } + }, + { + "address": "module.repo_list[\"supervisord-conf\"].github_repository_collaborator.collaborators[\"gomez385\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "gomez385", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "supervisord-conf:gomez385", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "supervisord-conf", + "username": "gomez385" + }, + "sensitive_values": {} + }, + { + "address": "module.repo_list[\"supervisord-conf\"].github_repository_collaborator.collaborators[\"morga471\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "morga471", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "supervisord-conf:morga471", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "supervisord-conf", + "username": "morga471" + }, + "sensitive_values": {} + }, + { + "address": "module.repo_list[\"supervisord-conf\"].github_repository_collaborator.collaborators[\"naray007\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "naray007", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "supervisord-conf:naray007", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "supervisord-conf", + "username": "naray007" + }, + "sensitive_values": {} + } + ], + "address": "module.repo_list[\"supervisord-conf\"]" + }, + { + "resources": [ + { + "address": "module.repo_list[\"supervisord-managed-runners\"].github_repository.repo", + "mode": "managed", + "type": "github_repository", + "name": "repo", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 1, + "values": { + "allow_auto_merge": false, + "allow_merge_commit": false, + "allow_rebase_merge": false, + "allow_squash_merge": true, + "allow_update_branch": false, + "archive_on_destroy": true, + "archived": false, + "auto_init": true, + "default_branch": "main", + "delete_branch_on_merge": true, + "description": "supervisord-managed-runners", + "etag": "W/\"8690be2c2933bb5fd612370514c036a5cf540b77f3fa71aebed8a5d0cb3a9e70\"", + "full_name": "CSVD/supervisord-managed-runners", + "git_clone_url": "git://github.e.it.census.gov/CSVD/supervisord-managed-runners.git", + "gitignore_template": "", + "has_discussions": false, + "has_downloads": false, + "has_issues": true, + "has_projects": true, + "has_wiki": true, + "homepage_url": "", + "html_url": "https://github.e.it.census.gov/CSVD/supervisord-managed-runners", + "http_clone_url": "https://github.e.it.census.gov/CSVD/supervisord-managed-runners.git", + "id": "supervisord-managed-runners", + "ignore_vulnerability_alerts_during_read": null, + "is_template": true, + "license_template": null, + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "name": "supervisord-managed-runners", + "node_id": "MDEwOlJlcG9zaXRvcnkxMTQy", + "pages": [], + "primary_language": "HCL", + "private": false, + "repo_id": 1142, + "security_and_analysis": [ + { + "advanced_security": [ + { + "status": "disabled" + } + ], + "secret_scanning": [ + { + "status": "disabled" + } + ], + "secret_scanning_push_protection": [ + { + "status": "disabled" + } + ] + } + ], + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "ssh_clone_url": "git@github.e.it.census.gov:CSVD/supervisord-managed-runners.git", + "svn_url": "https://github.e.it.census.gov/CSVD/supervisord-managed-runners", + "template": [], + "topics": [ + "github-actions", + "terraform-tools" + ], + "visibility": "public", + "vulnerability_alerts": false, + "web_commit_signoff_required": false + }, + "sensitive_values": { + "pages": [], + "security_and_analysis": [ + { + "advanced_security": [ + {} + ], + "secret_scanning": [ + {} + ], + "secret_scanning_push_protection": [ + {} + ] + } + ], + "template": [], + "topics": [ + false, + false + ] + } + }, + { + "address": "module.repo_list[\"supervisord-managed-runners\"].github_repository_collaborator.collaborators[\"gomez385\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "gomez385", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "supervisord-managed-runners:gomez385", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "supervisord-managed-runners", + "username": "gomez385" + }, + "sensitive_values": {} + }, + { + "address": "module.repo_list[\"supervisord-managed-runners\"].github_repository_collaborator.collaborators[\"morga471\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "morga471", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "supervisord-managed-runners:morga471", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "supervisord-managed-runners", + "username": "morga471" + }, + "sensitive_values": {} + }, + { + "address": "module.repo_list[\"supervisord-managed-runners\"].github_repository_collaborator.collaborators[\"naray007\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "naray007", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "supervisord-managed-runners:naray007", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "supervisord-managed-runners", + "username": "naray007" + }, + "sensitive_values": {} + } + ], + "address": "module.repo_list[\"supervisord-managed-runners\"]" + }, + { + "resources": [ + { + "address": "module.repo_list[\"template-aws-image-pipeline\"].github_repository.repo", + "mode": "managed", + "type": "github_repository", + "name": "repo", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 1, + "values": { + "allow_auto_merge": false, + "allow_merge_commit": false, + "allow_rebase_merge": false, + "allow_squash_merge": true, + "allow_update_branch": false, + "archive_on_destroy": true, + "archived": false, + "auto_init": true, + "default_branch": "main", + "delete_branch_on_merge": true, + "description": "Template Repo for Image Pipeline", + "etag": "W/\"04e8a1c93b8ac53deb063a453c7983367a68c80e2a037b09589dc6e4d44ccd95\"", + "full_name": "CSVD/template-aws-image-pipeline", + "git_clone_url": "git://github.e.it.census.gov/CSVD/template-aws-image-pipeline.git", + "gitignore_template": null, + "has_discussions": false, + "has_downloads": false, + "has_issues": true, + "has_projects": true, + "has_wiki": true, + "homepage_url": "", + "html_url": "https://github.e.it.census.gov/CSVD/template-aws-image-pipeline", + "http_clone_url": "https://github.e.it.census.gov/CSVD/template-aws-image-pipeline.git", + "id": "template-aws-image-pipeline", + "ignore_vulnerability_alerts_during_read": null, + "is_template": true, + "license_template": null, + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "name": "template-aws-image-pipeline", + "node_id": "MDEwOlJlcG9zaXRvcnkxMjU1", + "pages": [], + "primary_language": "Python", + "private": false, + "repo_id": 1255, + "security_and_analysis": [ + { + "advanced_security": [ + { + "status": "disabled" + } + ], + "secret_scanning": [ + { + "status": "disabled" + } + ], + "secret_scanning_push_protection": [ + { + "status": "disabled" + } + ] + } + ], + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "ssh_clone_url": "git@github.e.it.census.gov:CSVD/template-aws-image-pipeline.git", + "svn_url": "https://github.e.it.census.gov/CSVD/template-aws-image-pipeline", + "template": [], + "topics": [ + "aws-image-pipeline", + "terraform" + ], + "visibility": "public", + "vulnerability_alerts": false, + "web_commit_signoff_required": false + }, + "sensitive_values": { + "pages": [], + "security_and_analysis": [ + { + "advanced_security": [ + {} + ], + "secret_scanning": [ + {} + ], + "secret_scanning_push_protection": [ + {} + ] + } + ], + "template": [], + "topics": [ + false, + false + ] + } + }, + { + "address": "module.repo_list[\"template-aws-image-pipeline\"].github_repository_collaborator.collaborators[\"gomez385\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "gomez385", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "template-aws-image-pipeline:gomez385", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "template-aws-image-pipeline", + "username": "gomez385" + }, + "sensitive_values": {} + }, + { + "address": "module.repo_list[\"template-aws-image-pipeline\"].github_repository_collaborator.collaborators[\"morga471\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "morga471", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "template-aws-image-pipeline:morga471", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "template-aws-image-pipeline", + "username": "morga471" + }, + "sensitive_values": {} + }, + { + "address": "module.repo_list[\"template-aws-image-pipeline\"].github_repository_collaborator.collaborators[\"naray007\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "naray007", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "template-aws-image-pipeline:naray007", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "template-aws-image-pipeline", + "username": "naray007" + }, + "sensitive_values": {} + } + ], + "address": "module.repo_list[\"template-aws-image-pipeline\"]" + }, + { + "resources": [ + { + "address": "module.repo_list[\"terraform-ai-ingestion\"].github_branch_protection.main[0]", + "mode": "managed", + "type": "github_branch_protection", + "name": "main", + "index": 0, + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 2, + "values": { + "allows_deletions": false, + "allows_force_pushes": false, + "enforce_admins": true, + "force_push_bypassers": null, + "lock_branch": false, + "pattern": "main", + "repository_id": "MDEwOlJlcG9zaXRvcnkxMjM2", + "require_conversation_resolution": false, + "require_signed_commits": false, + "required_linear_history": false, + "required_pull_request_reviews": [ + { + "dismiss_stale_reviews": true, + "dismissal_restrictions": null, + "pull_request_bypassers": [ + "MDQ6VXNlcjU0OQ==", + "MDQ6VXNlcjYwMw==" + ], + "require_code_owner_reviews": true, + "require_last_push_approval": false, + "required_approving_review_count": 1, + "restrict_dismissals": null + } + ], + "required_status_checks": [], + "restrict_pushes": [] + }, + "sensitive_values": { + "required_pull_request_reviews": [ + { + "pull_request_bypassers": [ + false, + false + ] + } + ], + "required_status_checks": [], + "restrict_pushes": [] + } + }, + { + "address": "module.repo_list[\"terraform-ai-ingestion\"].github_repository.repo", + "mode": "managed", + "type": "github_repository", + "name": "repo", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 1, + "values": { + "allow_auto_merge": false, + "allow_merge_commit": false, + "allow_rebase_merge": false, + "allow_squash_merge": true, + "allow_update_branch": false, + "archive_on_destroy": true, + "archived": false, + "auto_init": true, + "default_branch": "main", + "delete_branch_on_merge": true, + "description": "Project Repo for AI Ingestion", + "etag": "W/\"98f6fbaec35afee05597ae61645e0781b99d4570ce218af9c0a5cd0c65f8837a\"", + "full_name": "CSVD/terraform-ai-ingestion", + "git_clone_url": "git://github.e.it.census.gov/CSVD/terraform-ai-ingestion.git", + "gitignore_template": null, + "has_discussions": false, + "has_downloads": false, + "has_issues": true, + "has_projects": true, + "has_wiki": true, + "homepage_url": "", + "html_url": "https://github.e.it.census.gov/CSVD/terraform-ai-ingestion", + "http_clone_url": "https://github.e.it.census.gov/CSVD/terraform-ai-ingestion.git", + "id": "terraform-ai-ingestion", + "ignore_vulnerability_alerts_during_read": null, + "is_template": false, + "license_template": null, + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "name": "terraform-ai-ingestion", + "node_id": "MDEwOlJlcG9zaXRvcnkxMjM2", + "pages": [], + "primary_language": "Python", + "private": false, + "repo_id": 1236, + "security_and_analysis": [ + { + "advanced_security": [ + { + "status": "disabled" + } + ], + "secret_scanning": [ + { + "status": "disabled" + } + ], + "secret_scanning_push_protection": [ + { + "status": "disabled" + } + ] + } + ], + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "ssh_clone_url": "git@github.e.it.census.gov:CSVD/terraform-ai-ingestion.git", + "svn_url": "https://github.e.it.census.gov/CSVD/terraform-ai-ingestion", + "template": [], + "topics": [ + "ai-ingestion", + "terraform" + ], + "visibility": "public", + "vulnerability_alerts": false, + "web_commit_signoff_required": false + }, + "sensitive_values": { + "pages": [], + "security_and_analysis": [ + { + "advanced_security": [ + {} + ], + "secret_scanning": [ + {} + ], + "secret_scanning_push_protection": [ + {} + ] + } + ], + "template": [], + "topics": [ + false, + false + ] + } + }, + { + "address": "module.repo_list[\"terraform-ai-ingestion\"].github_repository_collaborator.collaborators[\"gomez385\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "gomez385", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "terraform-ai-ingestion:gomez385", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "terraform-ai-ingestion", + "username": "gomez385" + }, + "sensitive_values": {} + }, + { + "address": "module.repo_list[\"terraform-ai-ingestion\"].github_repository_collaborator.collaborators[\"morga471\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "morga471", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "terraform-ai-ingestion:morga471", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "terraform-ai-ingestion", + "username": "morga471" + }, + "sensitive_values": {} + }, + { + "address": "module.repo_list[\"terraform-ai-ingestion\"].github_repository_collaborator.collaborators[\"naray007\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "naray007", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "terraform-ai-ingestion:naray007", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "terraform-ai-ingestion", + "username": "naray007" + }, + "sensitive_values": {} + } + ], + "address": "module.repo_list[\"terraform-ai-ingestion\"]" + }, + { + "resources": [ + { + "address": "module.repo_list[\"terraform-aws-efs\"].github_branch_protection.main[0]", + "mode": "managed", + "type": "github_branch_protection", + "name": "main", + "index": 0, + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 2, + "values": { + "allows_deletions": false, + "allows_force_pushes": false, + "enforce_admins": true, + "force_push_bypassers": null, + "lock_branch": false, + "pattern": "main", + "repository_id": "MDEwOlJlcG9zaXRvcnkxMjUw", + "require_conversation_resolution": false, + "require_signed_commits": false, + "required_linear_history": false, + "required_pull_request_reviews": [ + { + "dismiss_stale_reviews": true, + "dismissal_restrictions": null, + "pull_request_bypassers": [ + "MDQ6VXNlcjU0OQ==", + "MDQ6VXNlcjYwMw==" + ], + "require_code_owner_reviews": true, + "require_last_push_approval": false, + "required_approving_review_count": 1, + "restrict_dismissals": null + } + ], + "required_status_checks": [], + "restrict_pushes": [] + }, + "sensitive_values": { + "required_pull_request_reviews": [ + { + "pull_request_bypassers": [ + false, + false + ] + } + ], + "required_status_checks": [], + "restrict_pushes": [] + } + }, + { + "address": "module.repo_list[\"terraform-aws-efs\"].github_repository.repo", + "mode": "managed", + "type": "github_repository", + "name": "repo", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 1, + "values": { + "allow_auto_merge": false, + "allow_merge_commit": false, + "allow_rebase_merge": false, + "allow_squash_merge": true, + "allow_update_branch": false, + "archive_on_destroy": true, + "archived": false, + "auto_init": true, + "default_branch": "main", + "delete_branch_on_merge": true, + "description": "Module for AWS EFS", + "etag": "W/\"85e8fb48500597c491a812e040d22c9621a19340eb110ad132bdce94fcd7d934\"", + "full_name": "CSVD/terraform-aws-efs", + "git_clone_url": "git://github.e.it.census.gov/CSVD/terraform-aws-efs.git", + "gitignore_template": null, + "has_discussions": false, + "has_downloads": false, + "has_issues": true, + "has_projects": true, + "has_wiki": true, + "homepage_url": "", + "html_url": "https://github.e.it.census.gov/CSVD/terraform-aws-efs", + "http_clone_url": "https://github.e.it.census.gov/CSVD/terraform-aws-efs.git", + "id": "terraform-aws-efs", + "ignore_vulnerability_alerts_during_read": null, + "is_template": false, + "license_template": null, + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "name": "terraform-aws-efs", + "node_id": "MDEwOlJlcG9zaXRvcnkxMjUw", + "pages": [], + "primary_language": "HCL", + "private": false, + "repo_id": 1250, + "security_and_analysis": [ + { + "advanced_security": [ + { + "status": "disabled" + } + ], + "secret_scanning": [ + { + "status": "disabled" + } + ], + "secret_scanning_push_protection": [ + { + "status": "disabled" + } + ] + } + ], + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "ssh_clone_url": "git@github.e.it.census.gov:CSVD/terraform-aws-efs.git", + "svn_url": "https://github.e.it.census.gov/CSVD/terraform-aws-efs", + "template": [], + "topics": [ + "ai-demo", + "terraform" + ], + "visibility": "public", + "vulnerability_alerts": false, + "web_commit_signoff_required": false + }, + "sensitive_values": { + "pages": [], + "security_and_analysis": [ + { + "advanced_security": [ + {} + ], + "secret_scanning": [ + {} + ], + "secret_scanning_push_protection": [ + {} + ] + } + ], + "template": [], + "topics": [ + false, + false + ] + } + }, + { + "address": "module.repo_list[\"terraform-aws-efs\"].github_repository_collaborator.collaborators[\"gomez385\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "gomez385", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "terraform-aws-efs:gomez385", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "terraform-aws-efs", + "username": "gomez385" + }, + "sensitive_values": {} + }, + { + "address": "module.repo_list[\"terraform-aws-efs\"].github_repository_collaborator.collaborators[\"morga471\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "morga471", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "terraform-aws-efs:morga471", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "terraform-aws-efs", + "username": "morga471" + }, + "sensitive_values": {} + }, + { + "address": "module.repo_list[\"terraform-aws-efs\"].github_repository_collaborator.collaborators[\"naray007\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "naray007", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "terraform-aws-efs:naray007", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "terraform-aws-efs", + "username": "naray007" + }, + "sensitive_values": {} + } + ], + "address": "module.repo_list[\"terraform-aws-efs\"]" + }, + { + "resources": [ + { + "address": "module.repo_list[\"terraform-aws-image-pipeline\"].github_repository.repo", + "mode": "managed", + "type": "github_repository", + "name": "repo", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 1, + "values": { + "allow_auto_merge": false, + "allow_merge_commit": false, + "allow_rebase_merge": false, + "allow_squash_merge": true, + "allow_update_branch": false, + "archive_on_destroy": true, + "archived": false, + "auto_init": true, + "default_branch": "main", + "delete_branch_on_merge": true, + "description": "Terraform Module that creates codepipeline and codebuild jobs and other resources for building and deploying images", + "etag": "W/\"d79543e3a28ebe818e95295827c7d164b7542cf48335c6b80ba1c3d4cc1d4de4\"", + "full_name": "CSVD/terraform-aws-image-pipeline", + "git_clone_url": "git://github.e.it.census.gov/CSVD/terraform-aws-image-pipeline.git", + "gitignore_template": "", + "has_discussions": false, + "has_downloads": false, + "has_issues": true, + "has_projects": true, + "has_wiki": true, + "homepage_url": "", + "html_url": "https://github.e.it.census.gov/CSVD/terraform-aws-image-pipeline", + "http_clone_url": "https://github.e.it.census.gov/CSVD/terraform-aws-image-pipeline.git", + "id": "terraform-aws-image-pipeline", + "ignore_vulnerability_alerts_during_read": null, + "is_template": false, + "license_template": null, + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "name": "terraform-aws-image-pipeline", + "node_id": "MDEwOlJlcG9zaXRvcnkxMDA4", + "pages": [], + "primary_language": "HCL", + "private": true, + "repo_id": 1008, + "security_and_analysis": [ + { + "advanced_security": [ + { + "status": "disabled" + } + ], + "secret_scanning": [ + { + "status": "disabled" + } + ], + "secret_scanning_push_protection": [ + { + "status": "disabled" + } + ] + } + ], + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "ssh_clone_url": "git@github.e.it.census.gov:CSVD/terraform-aws-image-pipeline.git", + "svn_url": "https://github.e.it.census.gov/CSVD/terraform-aws-image-pipeline", + "template": [], + "topics": [ + "terraform" + ], + "visibility": "public", + "vulnerability_alerts": false, + "web_commit_signoff_required": false + }, + "sensitive_values": { + "pages": [], + "security_and_analysis": [ + { + "advanced_security": [ + {} + ], + "secret_scanning": [ + {} + ], + "secret_scanning_push_protection": [ + {} + ] + } + ], + "template": [], + "topics": [ + false + ] + } + }, + { + "address": "module.repo_list[\"terraform-aws-image-pipeline\"].github_repository_collaborator.collaborators[\"gomez385\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "gomez385", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "terraform-aws-image-pipeline:gomez385", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "terraform-aws-image-pipeline", + "username": "gomez385" + }, + "sensitive_values": {} + }, + { + "address": "module.repo_list[\"terraform-aws-image-pipeline\"].github_repository_collaborator.collaborators[\"morga471\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "morga471", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "terraform-aws-image-pipeline:morga471", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "terraform-aws-image-pipeline", + "username": "morga471" + }, + "sensitive_values": {} + }, + { + "address": "module.repo_list[\"terraform-aws-image-pipeline\"].github_repository_collaborator.collaborators[\"naray007\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "naray007", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "terraform-aws-image-pipeline:naray007", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "terraform-aws-image-pipeline", + "username": "naray007" + }, + "sensitive_values": {} + } + ], + "address": "module.repo_list[\"terraform-aws-image-pipeline\"]" + }, + { + "resources": [ + { + "address": "module.repo_list[\"terraform-aws-rds\"].github_branch_protection.main[0]", + "mode": "managed", + "type": "github_branch_protection", + "name": "main", + "index": 0, + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 2, + "values": { + "allows_deletions": false, + "allows_force_pushes": false, + "enforce_admins": true, + "force_push_bypassers": null, + "lock_branch": false, + "pattern": "main", + "repository_id": "MDEwOlJlcG9zaXRvcnkxMjQ4", + "require_conversation_resolution": false, + "require_signed_commits": false, + "required_linear_history": false, + "required_pull_request_reviews": [ + { + "dismiss_stale_reviews": true, + "dismissal_restrictions": null, + "pull_request_bypassers": [ + "MDQ6VXNlcjU0OQ==", + "MDQ6VXNlcjYwMw==" + ], + "require_code_owner_reviews": true, + "require_last_push_approval": false, + "required_approving_review_count": 1, + "restrict_dismissals": null + } + ], + "required_status_checks": [], + "restrict_pushes": [] + }, + "sensitive_values": { + "required_pull_request_reviews": [ + { + "pull_request_bypassers": [ + false, + false + ] + } + ], + "required_status_checks": [], + "restrict_pushes": [] + } + }, + { + "address": "module.repo_list[\"terraform-aws-rds\"].github_repository.repo", + "mode": "managed", + "type": "github_repository", + "name": "repo", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 1, + "values": { + "allow_auto_merge": false, + "allow_merge_commit": false, + "allow_rebase_merge": false, + "allow_squash_merge": true, + "allow_update_branch": false, + "archive_on_destroy": true, + "archived": false, + "auto_init": true, + "default_branch": "main", + "delete_branch_on_merge": true, + "description": "Module for AWS RDS", + "etag": "W/\"0c5c6328aa9217e446dcfd04d8561338fb07dabca7d1f22065bb51db268aad05\"", + "full_name": "CSVD/terraform-aws-rds", + "git_clone_url": "git://github.e.it.census.gov/CSVD/terraform-aws-rds.git", + "gitignore_template": null, + "has_discussions": false, + "has_downloads": false, + "has_issues": true, + "has_projects": true, + "has_wiki": true, + "homepage_url": "", + "html_url": "https://github.e.it.census.gov/CSVD/terraform-aws-rds", + "http_clone_url": "https://github.e.it.census.gov/CSVD/terraform-aws-rds.git", + "id": "terraform-aws-rds", + "ignore_vulnerability_alerts_during_read": null, + "is_template": false, + "license_template": null, + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "name": "terraform-aws-rds", + "node_id": "MDEwOlJlcG9zaXRvcnkxMjQ4", + "pages": [], + "primary_language": "HCL", + "private": false, + "repo_id": 1248, + "security_and_analysis": [ + { + "advanced_security": [ + { + "status": "disabled" + } + ], + "secret_scanning": [ + { + "status": "disabled" + } + ], + "secret_scanning_push_protection": [ + { + "status": "disabled" + } + ] + } + ], + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "ssh_clone_url": "git@github.e.it.census.gov:CSVD/terraform-aws-rds.git", + "svn_url": "https://github.e.it.census.gov/CSVD/terraform-aws-rds", + "template": [], + "topics": [ + "ai-demo", + "terraform" + ], + "visibility": "public", + "vulnerability_alerts": false, + "web_commit_signoff_required": false + }, + "sensitive_values": { + "pages": [], + "security_and_analysis": [ + { + "advanced_security": [ + {} + ], + "secret_scanning": [ + {} + ], + "secret_scanning_push_protection": [ + {} + ] + } + ], + "template": [], + "topics": [ + false, + false + ] + } + }, + { + "address": "module.repo_list[\"terraform-aws-rds\"].github_repository_collaborator.collaborators[\"gomez385\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "gomez385", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "terraform-aws-rds:gomez385", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "terraform-aws-rds", + "username": "gomez385" + }, + "sensitive_values": {} + }, + { + "address": "module.repo_list[\"terraform-aws-rds\"].github_repository_collaborator.collaborators[\"morga471\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "morga471", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "terraform-aws-rds:morga471", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "terraform-aws-rds", + "username": "morga471" + }, + "sensitive_values": {} + }, + { + "address": "module.repo_list[\"terraform-aws-rds\"].github_repository_collaborator.collaborators[\"naray007\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "naray007", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "terraform-aws-rds:naray007", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "terraform-aws-rds", + "username": "naray007" + }, + "sensitive_values": {} + } + ], + "address": "module.repo_list[\"terraform-aws-rds\"]" + }, + { + "resources": [ + { + "address": "module.repo_list[\"terraform-aws-ses\"].github_branch_protection.main[0]", + "mode": "managed", + "type": "github_branch_protection", + "name": "main", + "index": 0, + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 2, + "values": { + "allows_deletions": false, + "allows_force_pushes": false, + "enforce_admins": true, + "force_push_bypassers": null, + "lock_branch": false, + "pattern": "main", + "repository_id": "MDEwOlJlcG9zaXRvcnkxMjQ5", + "require_conversation_resolution": false, + "require_signed_commits": false, + "required_linear_history": false, + "required_pull_request_reviews": [ + { + "dismiss_stale_reviews": true, + "dismissal_restrictions": null, + "pull_request_bypassers": [ + "MDQ6VXNlcjU0OQ==", + "MDQ6VXNlcjYwMw==" + ], + "require_code_owner_reviews": true, + "require_last_push_approval": false, + "required_approving_review_count": 1, + "restrict_dismissals": null + } + ], + "required_status_checks": [], + "restrict_pushes": [] + }, + "sensitive_values": { + "required_pull_request_reviews": [ + { + "pull_request_bypassers": [ + false, + false + ] + } + ], + "required_status_checks": [], + "restrict_pushes": [] + } + }, + { + "address": "module.repo_list[\"terraform-aws-ses\"].github_repository.repo", + "mode": "managed", + "type": "github_repository", + "name": "repo", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 1, + "values": { + "allow_auto_merge": false, + "allow_merge_commit": false, + "allow_rebase_merge": false, + "allow_squash_merge": true, + "allow_update_branch": false, + "archive_on_destroy": true, + "archived": false, + "auto_init": true, + "default_branch": "main", + "delete_branch_on_merge": true, + "description": "Module for AWS S3", + "etag": "W/\"348305d05b9d62da99eaac4dfa6680e5961068b7a15710f0c41db0f67bf44d79\"", + "full_name": "CSVD/terraform-aws-ses", + "git_clone_url": "git://github.e.it.census.gov/CSVD/terraform-aws-ses.git", + "gitignore_template": null, + "has_discussions": false, + "has_downloads": false, + "has_issues": true, + "has_projects": true, + "has_wiki": true, + "homepage_url": "", + "html_url": "https://github.e.it.census.gov/CSVD/terraform-aws-ses", + "http_clone_url": "https://github.e.it.census.gov/CSVD/terraform-aws-ses.git", + "id": "terraform-aws-ses", + "ignore_vulnerability_alerts_during_read": null, + "is_template": false, + "license_template": null, + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "name": "terraform-aws-ses", + "node_id": "MDEwOlJlcG9zaXRvcnkxMjQ5", + "pages": [], + "primary_language": "HCL", + "private": false, + "repo_id": 1249, + "security_and_analysis": [ + { + "advanced_security": [ + { + "status": "disabled" + } + ], + "secret_scanning": [ + { + "status": "disabled" + } + ], + "secret_scanning_push_protection": [ + { + "status": "disabled" + } + ] + } + ], + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "ssh_clone_url": "git@github.e.it.census.gov:CSVD/terraform-aws-ses.git", + "svn_url": "https://github.e.it.census.gov/CSVD/terraform-aws-ses", + "template": [], + "topics": [ + "ai-demo", + "terraform" + ], + "visibility": "public", + "vulnerability_alerts": false, + "web_commit_signoff_required": false + }, + "sensitive_values": { + "pages": [], + "security_and_analysis": [ + { + "advanced_security": [ + {} + ], + "secret_scanning": [ + {} + ], + "secret_scanning_push_protection": [ + {} + ] + } + ], + "template": [], + "topics": [ + false, + false + ] + } + }, + { + "address": "module.repo_list[\"terraform-aws-ses\"].github_repository_collaborator.collaborators[\"gomez385\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "gomez385", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "terraform-aws-ses:gomez385", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "terraform-aws-ses", + "username": "gomez385" + }, + "sensitive_values": {} + }, + { + "address": "module.repo_list[\"terraform-aws-ses\"].github_repository_collaborator.collaborators[\"morga471\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "morga471", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "terraform-aws-ses:morga471", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "terraform-aws-ses", + "username": "morga471" + }, + "sensitive_values": {} + }, + { + "address": "module.repo_list[\"terraform-aws-ses\"].github_repository_collaborator.collaborators[\"naray007\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "naray007", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "terraform-aws-ses:naray007", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "terraform-aws-ses", + "username": "naray007" + }, + "sensitive_values": {} + } + ], + "address": "module.repo_list[\"terraform-aws-ses\"]" + }, + { + "resources": [ + { + "address": "module.repo_list[\"terraform-git-workspace\"].github_repository.repo", + "mode": "managed", + "type": "github_repository", + "name": "repo", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 1, + "values": { + "allow_auto_merge": false, + "allow_merge_commit": false, + "allow_rebase_merge": false, + "allow_squash_merge": true, + "allow_update_branch": false, + "archive_on_destroy": true, + "archived": false, + "auto_init": true, + "default_branch": "main", + "delete_branch_on_merge": true, + "description": "Module for attaching Actions and Environments to target repos", + "etag": "W/\"dfe72e764a5d07c3b0ebf3273c8c06363b1d9fd7dcaaff53472653ff4773c79c\"", + "full_name": "CSVD/terraform-git-workspace", + "git_clone_url": "git://github.e.it.census.gov/CSVD/terraform-git-workspace.git", + "gitignore_template": "", + "has_discussions": false, + "has_downloads": false, + "has_issues": true, + "has_projects": true, + "has_wiki": true, + "homepage_url": "", + "html_url": "https://github.e.it.census.gov/CSVD/terraform-git-workspace", + "http_clone_url": "https://github.e.it.census.gov/CSVD/terraform-git-workspace.git", + "id": "terraform-git-workspace", + "ignore_vulnerability_alerts_during_read": null, + "is_template": false, + "license_template": null, + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "name": "terraform-git-workspace", + "node_id": "MDEwOlJlcG9zaXRvcnkxMDg5", + "pages": [], + "primary_language": "", + "private": false, + "repo_id": 1089, + "security_and_analysis": [ + { + "advanced_security": [ + { + "status": "disabled" + } + ], + "secret_scanning": [ + { + "status": "disabled" + } + ], + "secret_scanning_push_protection": [ + { + "status": "disabled" + } + ] + } + ], + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "ssh_clone_url": "git@github.e.it.census.gov:CSVD/terraform-git-workspace.git", + "svn_url": "https://github.e.it.census.gov/CSVD/terraform-git-workspace", + "template": [], + "topics": [ + "github-actions", + "terraform-tools" + ], + "visibility": "public", + "vulnerability_alerts": false, + "web_commit_signoff_required": false + }, + "sensitive_values": { + "pages": [], + "security_and_analysis": [ + { + "advanced_security": [ + {} + ], + "secret_scanning": [ + {} + ], + "secret_scanning_push_protection": [ + {} + ] + } + ], + "template": [], + "topics": [ + false, + false + ] + } + }, + { + "address": "module.repo_list[\"terraform-git-workspace\"].github_repository_collaborator.collaborators[\"gomez385\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "gomez385", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "terraform-git-workspace:gomez385", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "terraform-git-workspace", + "username": "gomez385" + }, + "sensitive_values": {} + }, + { + "address": "module.repo_list[\"terraform-git-workspace\"].github_repository_collaborator.collaborators[\"morga471\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "morga471", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "terraform-git-workspace:morga471", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "terraform-git-workspace", + "username": "morga471" + }, + "sensitive_values": {} + }, + { + "address": "module.repo_list[\"terraform-git-workspace\"].github_repository_collaborator.collaborators[\"naray007\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "naray007", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "terraform-git-workspace:naray007", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "terraform-git-workspace", + "username": "naray007" + }, + "sensitive_values": {} + } + ], + "address": "module.repo_list[\"terraform-git-workspace\"]" + }, + { + "resources": [ + { + "address": "module.repo_list[\"terraform-github-repo\"].github_repository.repo", + "mode": "managed", + "type": "github_repository", + "name": "repo", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 1, + "values": { + "allow_auto_merge": false, + "allow_merge_commit": false, + "allow_rebase_merge": false, + "allow_squash_merge": true, + "allow_update_branch": false, + "archive_on_destroy": true, + "archived": false, + "auto_init": true, + "default_branch": "main", + "delete_branch_on_merge": true, + "description": "Terraform Module for managing github repos", + "etag": "W/\"b59ca23ac93011042ccdc97599b7b04e1574c44cde667aedce680a8f9124082c\"", + "full_name": "CSVD/terraform-github-repo", + "git_clone_url": "git://github.e.it.census.gov/CSVD/terraform-github-repo.git", + "gitignore_template": "", + "has_discussions": false, + "has_downloads": false, + "has_issues": true, + "has_projects": true, + "has_wiki": true, + "homepage_url": "", + "html_url": "https://github.e.it.census.gov/CSVD/terraform-github-repo", + "http_clone_url": "https://github.e.it.census.gov/CSVD/terraform-github-repo.git", + "id": "terraform-github-repo", + "ignore_vulnerability_alerts_during_read": null, + "is_template": false, + "license_template": null, + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "name": "terraform-github-repo", + "node_id": "MDEwOlJlcG9zaXRvcnk5ODI=", + "pages": [], + "primary_language": "HCL", + "private": true, + "repo_id": 982, + "security_and_analysis": [ + { + "advanced_security": [ + { + "status": "disabled" + } + ], + "secret_scanning": [ + { + "status": "disabled" + } + ], + "secret_scanning_push_protection": [ + { + "status": "disabled" + } + ] + } + ], + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "ssh_clone_url": "git@github.e.it.census.gov:CSVD/terraform-github-repo.git", + "svn_url": "https://github.e.it.census.gov/CSVD/terraform-github-repo", + "template": [], + "topics": [ + "terraform" + ], + "visibility": "public", + "vulnerability_alerts": false, + "web_commit_signoff_required": false + }, + "sensitive_values": { + "pages": [], + "security_and_analysis": [ + { + "advanced_security": [ + {} + ], + "secret_scanning": [ + {} + ], + "secret_scanning_push_protection": [ + {} + ] + } + ], + "template": [], + "topics": [ + false + ] + } + }, + { + "address": "module.repo_list[\"terraform-github-repo\"].github_repository_collaborator.collaborators[\"gomez385\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "gomez385", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "terraform-github-repo:gomez385", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "terraform-github-repo", + "username": "gomez385" + }, + "sensitive_values": {} + }, + { + "address": "module.repo_list[\"terraform-github-repo\"].github_repository_collaborator.collaborators[\"morga471\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "morga471", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "terraform-github-repo:morga471", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "terraform-github-repo", + "username": "morga471" + }, + "sensitive_values": {} + }, + { + "address": "module.repo_list[\"terraform-github-repo\"].github_repository_collaborator.collaborators[\"naray007\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "naray007", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "terraform-github-repo:naray007", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "terraform-github-repo", + "username": "naray007" + }, + "sensitive_values": {} + } + ], + "address": "module.repo_list[\"terraform-github-repo\"]" + }, + { + "resources": [ + { + "address": "module.repo_list[\"terraform-morpheus-alb\"].github_branch_protection.main[0]", + "mode": "managed", + "type": "github_branch_protection", + "name": "main", + "index": 0, + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 2, + "values": { + "allows_deletions": false, + "allows_force_pushes": false, + "enforce_admins": true, + "force_push_bypassers": null, + "lock_branch": false, + "pattern": "main", + "repository_id": "MDEwOlJlcG9zaXRvcnkxMTQz", + "require_conversation_resolution": false, + "require_signed_commits": false, + "required_linear_history": false, + "required_pull_request_reviews": [ + { + "dismiss_stale_reviews": true, + "dismissal_restrictions": null, + "pull_request_bypassers": [ + "MDQ6VXNlcjU0OQ==", + "MDQ6VXNlcjYwMw==" + ], + "require_code_owner_reviews": true, + "require_last_push_approval": false, + "required_approving_review_count": 1, + "restrict_dismissals": null + } + ], + "required_status_checks": [], + "restrict_pushes": [] + }, + "sensitive_values": { + "required_pull_request_reviews": [ + { + "pull_request_bypassers": [ + false, + false + ] + } + ], + "required_status_checks": [], + "restrict_pushes": [] + } + }, + { + "address": "module.repo_list[\"terraform-morpheus-alb\"].github_repository.repo", + "mode": "managed", + "type": "github_repository", + "name": "repo", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 1, + "values": { + "allow_auto_merge": false, + "allow_merge_commit": false, + "allow_rebase_merge": false, + "allow_squash_merge": true, + "allow_update_branch": false, + "archive_on_destroy": true, + "archived": false, + "auto_init": true, + "default_branch": "main", + "delete_branch_on_merge": true, + "description": "Terraform module repo for terraform-morpheus-loadbalancer", + "etag": "W/\"5ac40458ec174f1e17c850368df7158b96f6227660684dbe5a70d788a848e1ba\"", + "full_name": "CSVD/terraform-morpheus-alb", + "git_clone_url": "git://github.e.it.census.gov/CSVD/terraform-morpheus-alb.git", + "gitignore_template": "", + "has_discussions": false, + "has_downloads": false, + "has_issues": true, + "has_projects": true, + "has_wiki": true, + "homepage_url": "", + "html_url": "https://github.e.it.census.gov/CSVD/terraform-morpheus-alb", + "http_clone_url": "https://github.e.it.census.gov/CSVD/terraform-morpheus-alb.git", + "id": "terraform-morpheus-alb", + "ignore_vulnerability_alerts_during_read": null, + "is_template": false, + "license_template": null, + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "name": "terraform-morpheus-alb", + "node_id": "MDEwOlJlcG9zaXRvcnkxMTQz", + "pages": [], + "primary_language": "HCL", + "private": false, + "repo_id": 1143, + "security_and_analysis": [ + { + "advanced_security": [ + { + "status": "disabled" + } + ], + "secret_scanning": [ + { + "status": "disabled" + } + ], + "secret_scanning_push_protection": [ + { + "status": "disabled" + } + ] + } + ], + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "ssh_clone_url": "git@github.e.it.census.gov:CSVD/terraform-morpheus-alb.git", + "svn_url": "https://github.e.it.census.gov/CSVD/terraform-morpheus-alb", + "template": [], + "topics": [ + "morpheus-infra" + ], + "visibility": "public", + "vulnerability_alerts": false, + "web_commit_signoff_required": false + }, + "sensitive_values": { + "pages": [], + "security_and_analysis": [ + { + "advanced_security": [ + {} + ], + "secret_scanning": [ + {} + ], + "secret_scanning_push_protection": [ + {} + ] + } + ], + "template": [], + "topics": [ + false + ] + } + }, + { + "address": "module.repo_list[\"terraform-morpheus-alb\"].github_repository_collaborator.collaborators[\"gomez385\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "gomez385", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "terraform-morpheus-alb:gomez385", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "terraform-morpheus-alb", + "username": "gomez385" + }, + "sensitive_values": {} + }, + { + "address": "module.repo_list[\"terraform-morpheus-alb\"].github_repository_collaborator.collaborators[\"morga471\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "morga471", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "terraform-morpheus-alb:morga471", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "terraform-morpheus-alb", + "username": "morga471" + }, + "sensitive_values": {} + }, + { + "address": "module.repo_list[\"terraform-morpheus-alb\"].github_repository_collaborator.collaborators[\"naray007\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "naray007", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "terraform-morpheus-alb:naray007", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "terraform-morpheus-alb", + "username": "naray007" + }, + "sensitive_values": {} + } + ], + "address": "module.repo_list[\"terraform-morpheus-alb\"]" + }, + { + "resources": [ + { + "address": "module.repo_list[\"terraform-morpheus-cluster\"].github_branch_protection.main[0]", + "mode": "managed", + "type": "github_branch_protection", + "name": "main", + "index": 0, + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 2, + "values": { + "allows_deletions": false, + "allows_force_pushes": false, + "enforce_admins": true, + "force_push_bypassers": null, + "lock_branch": false, + "pattern": "main", + "repository_id": "MDEwOlJlcG9zaXRvcnkxMTQ0", + "require_conversation_resolution": false, + "require_signed_commits": false, + "required_linear_history": false, + "required_pull_request_reviews": [ + { + "dismiss_stale_reviews": true, + "dismissal_restrictions": null, + "pull_request_bypassers": [ + "MDQ6VXNlcjU0OQ==", + "MDQ6VXNlcjYwMw==" + ], + "require_code_owner_reviews": true, + "require_last_push_approval": false, + "required_approving_review_count": 1, + "restrict_dismissals": null + } + ], + "required_status_checks": [], + "restrict_pushes": [] + }, + "sensitive_values": { + "required_pull_request_reviews": [ + { + "pull_request_bypassers": [ + false, + false + ] + } + ], + "required_status_checks": [], + "restrict_pushes": [] + } + }, + { + "address": "module.repo_list[\"terraform-morpheus-cluster\"].github_repository.repo", + "mode": "managed", + "type": "github_repository", + "name": "repo", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 1, + "values": { + "allow_auto_merge": false, + "allow_merge_commit": false, + "allow_rebase_merge": false, + "allow_squash_merge": true, + "allow_update_branch": false, + "archive_on_destroy": true, + "archived": false, + "auto_init": true, + "default_branch": "main", + "delete_branch_on_merge": true, + "description": "Terraform module repo for terraform-morpheus-cluster", + "etag": "W/\"696f54fedd72fcf4d0e3879a434b34728c5bd11021f43ca734cb5c81d43379a1\"", + "full_name": "CSVD/terraform-morpheus-cluster", + "git_clone_url": "git://github.e.it.census.gov/CSVD/terraform-morpheus-cluster.git", + "gitignore_template": "", + "has_discussions": false, + "has_downloads": false, + "has_issues": true, + "has_projects": true, + "has_wiki": true, + "homepage_url": "", + "html_url": "https://github.e.it.census.gov/CSVD/terraform-morpheus-cluster", + "http_clone_url": "https://github.e.it.census.gov/CSVD/terraform-morpheus-cluster.git", + "id": "terraform-morpheus-cluster", + "ignore_vulnerability_alerts_during_read": null, + "is_template": false, + "license_template": null, + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "name": "terraform-morpheus-cluster", + "node_id": "MDEwOlJlcG9zaXRvcnkxMTQ0", + "pages": [], + "primary_language": "", + "private": false, + "repo_id": 1144, + "security_and_analysis": [ + { + "advanced_security": [ + { + "status": "disabled" + } + ], + "secret_scanning": [ + { + "status": "disabled" + } + ], + "secret_scanning_push_protection": [ + { + "status": "disabled" + } + ] + } + ], + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "ssh_clone_url": "git@github.e.it.census.gov:CSVD/terraform-morpheus-cluster.git", + "svn_url": "https://github.e.it.census.gov/CSVD/terraform-morpheus-cluster", + "template": [], + "topics": [ + "morpheus-infra" + ], + "visibility": "public", + "vulnerability_alerts": false, + "web_commit_signoff_required": false + }, + "sensitive_values": { + "pages": [], + "security_and_analysis": [ + { + "advanced_security": [ + {} + ], + "secret_scanning": [ + {} + ], + "secret_scanning_push_protection": [ + {} + ] + } + ], + "template": [], + "topics": [ + false + ] + } + }, + { + "address": "module.repo_list[\"terraform-morpheus-cluster\"].github_repository_collaborator.collaborators[\"gomez385\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "gomez385", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "terraform-morpheus-cluster:gomez385", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "terraform-morpheus-cluster", + "username": "gomez385" + }, + "sensitive_values": {} + }, + { + "address": "module.repo_list[\"terraform-morpheus-cluster\"].github_repository_collaborator.collaborators[\"morga471\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "morga471", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "terraform-morpheus-cluster:morga471", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "terraform-morpheus-cluster", + "username": "morga471" + }, + "sensitive_values": {} + }, + { + "address": "module.repo_list[\"terraform-morpheus-cluster\"].github_repository_collaborator.collaborators[\"naray007\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "naray007", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "terraform-morpheus-cluster:naray007", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "terraform-morpheus-cluster", + "username": "naray007" + }, + "sensitive_values": {} + } + ], + "address": "module.repo_list[\"terraform-morpheus-cluster\"]" + }, + { + "resources": [ + { + "address": "module.repo_list[\"terraform-morpheus-database\"].github_branch_protection.main[0]", + "mode": "managed", + "type": "github_branch_protection", + "name": "main", + "index": 0, + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 2, + "values": { + "allows_deletions": false, + "allows_force_pushes": false, + "enforce_admins": true, + "force_push_bypassers": null, + "lock_branch": false, + "pattern": "main", + "repository_id": "MDEwOlJlcG9zaXRvcnkxMTM5", + "require_conversation_resolution": false, + "require_signed_commits": false, + "required_linear_history": false, + "required_pull_request_reviews": [ + { + "dismiss_stale_reviews": true, + "dismissal_restrictions": null, + "pull_request_bypassers": [ + "MDQ6VXNlcjU0OQ==", + "MDQ6VXNlcjYwMw==" + ], + "require_code_owner_reviews": true, + "require_last_push_approval": false, + "required_approving_review_count": 1, + "restrict_dismissals": null + } + ], + "required_status_checks": [], + "restrict_pushes": [] + }, + "sensitive_values": { + "required_pull_request_reviews": [ + { + "pull_request_bypassers": [ + false, + false + ] + } + ], + "required_status_checks": [], + "restrict_pushes": [] + } + }, + { + "address": "module.repo_list[\"terraform-morpheus-database\"].github_repository.repo", + "mode": "managed", + "type": "github_repository", + "name": "repo", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 1, + "values": { + "allow_auto_merge": false, + "allow_merge_commit": false, + "allow_rebase_merge": false, + "allow_squash_merge": true, + "allow_update_branch": false, + "archive_on_destroy": true, + "archived": false, + "auto_init": true, + "default_branch": "main", + "delete_branch_on_merge": true, + "description": "Terraform module repo for terraform-morpheus-database", + "etag": "W/\"269d3d0fee90a1fabc292de936e831a794b4fd58606866ac6896951033af3737\"", + "full_name": "CSVD/terraform-morpheus-database", + "git_clone_url": "git://github.e.it.census.gov/CSVD/terraform-morpheus-database.git", + "gitignore_template": "", + "has_discussions": false, + "has_downloads": false, + "has_issues": true, + "has_projects": true, + "has_wiki": true, + "homepage_url": "", + "html_url": "https://github.e.it.census.gov/CSVD/terraform-morpheus-database", + "http_clone_url": "https://github.e.it.census.gov/CSVD/terraform-morpheus-database.git", + "id": "terraform-morpheus-database", + "ignore_vulnerability_alerts_during_read": null, + "is_template": false, + "license_template": null, + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "name": "terraform-morpheus-database", + "node_id": "MDEwOlJlcG9zaXRvcnkxMTM5", + "pages": [], + "primary_language": "", + "private": false, + "repo_id": 1139, + "security_and_analysis": [ + { + "advanced_security": [ + { + "status": "disabled" + } + ], + "secret_scanning": [ + { + "status": "disabled" + } + ], + "secret_scanning_push_protection": [ + { + "status": "disabled" + } + ] + } + ], + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "ssh_clone_url": "git@github.e.it.census.gov:CSVD/terraform-morpheus-database.git", + "svn_url": "https://github.e.it.census.gov/CSVD/terraform-morpheus-database", + "template": [], + "topics": [ + "morpheus-infra" + ], + "visibility": "public", + "vulnerability_alerts": false, + "web_commit_signoff_required": false + }, + "sensitive_values": { + "pages": [], + "security_and_analysis": [ + { + "advanced_security": [ + {} + ], + "secret_scanning": [ + {} + ], + "secret_scanning_push_protection": [ + {} + ] + } + ], + "template": [], + "topics": [ + false + ] + } + }, + { + "address": "module.repo_list[\"terraform-morpheus-database\"].github_repository_collaborator.collaborators[\"gomez385\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "gomez385", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "terraform-morpheus-database:gomez385", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "terraform-morpheus-database", + "username": "gomez385" + }, + "sensitive_values": {} + }, + { + "address": "module.repo_list[\"terraform-morpheus-database\"].github_repository_collaborator.collaborators[\"morga471\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "morga471", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "terraform-morpheus-database:morga471", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "terraform-morpheus-database", + "username": "morga471" + }, + "sensitive_values": {} + }, + { + "address": "module.repo_list[\"terraform-morpheus-database\"].github_repository_collaborator.collaborators[\"naray007\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "naray007", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "terraform-morpheus-database:naray007", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "terraform-morpheus-database", + "username": "naray007" + }, + "sensitive_values": {} + } + ], + "address": "module.repo_list[\"terraform-morpheus-database\"]" + }, + { + "resources": [ + { + "address": "module.repo_list[\"terraform-morpheus-efs\"].github_branch_protection.main[0]", + "mode": "managed", + "type": "github_branch_protection", + "name": "main", + "index": 0, + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 2, + "values": { + "allows_deletions": false, + "allows_force_pushes": false, + "enforce_admins": true, + "force_push_bypassers": null, + "lock_branch": false, + "pattern": "main", + "repository_id": "MDEwOlJlcG9zaXRvcnkxMTQ1", + "require_conversation_resolution": false, + "require_signed_commits": false, + "required_linear_history": false, + "required_pull_request_reviews": [ + { + "dismiss_stale_reviews": true, + "dismissal_restrictions": null, + "pull_request_bypassers": [ + "MDQ6VXNlcjU0OQ==", + "MDQ6VXNlcjYwMw==" + ], + "require_code_owner_reviews": true, + "require_last_push_approval": false, + "required_approving_review_count": 1, + "restrict_dismissals": null + } + ], + "required_status_checks": [], + "restrict_pushes": [] + }, + "sensitive_values": { + "required_pull_request_reviews": [ + { + "pull_request_bypassers": [ + false, + false + ] + } + ], + "required_status_checks": [], + "restrict_pushes": [] + } + }, + { + "address": "module.repo_list[\"terraform-morpheus-efs\"].github_repository.repo", + "mode": "managed", + "type": "github_repository", + "name": "repo", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 1, + "values": { + "allow_auto_merge": false, + "allow_merge_commit": false, + "allow_rebase_merge": false, + "allow_squash_merge": true, + "allow_update_branch": false, + "archive_on_destroy": true, + "archived": false, + "auto_init": true, + "default_branch": "main", + "delete_branch_on_merge": true, + "description": "Terraform module repo for terraform-morpheus-efs", + "etag": "W/\"dc3c9f15d960b142b0a0fb60bd0dedabcb32553ca8bcf6de1f86f2f1d0e6b025\"", + "full_name": "CSVD/terraform-morpheus-efs", + "git_clone_url": "git://github.e.it.census.gov/CSVD/terraform-morpheus-efs.git", + "gitignore_template": "", + "has_discussions": false, + "has_downloads": false, + "has_issues": true, + "has_projects": true, + "has_wiki": true, + "homepage_url": "", + "html_url": "https://github.e.it.census.gov/CSVD/terraform-morpheus-efs", + "http_clone_url": "https://github.e.it.census.gov/CSVD/terraform-morpheus-efs.git", + "id": "terraform-morpheus-efs", + "ignore_vulnerability_alerts_during_read": null, + "is_template": false, + "license_template": null, + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "name": "terraform-morpheus-efs", + "node_id": "MDEwOlJlcG9zaXRvcnkxMTQ1", + "pages": [], + "primary_language": "", + "private": false, + "repo_id": 1145, + "security_and_analysis": [ + { + "advanced_security": [ + { + "status": "disabled" + } + ], + "secret_scanning": [ + { + "status": "disabled" + } + ], + "secret_scanning_push_protection": [ + { + "status": "disabled" + } + ] + } + ], + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "ssh_clone_url": "git@github.e.it.census.gov:CSVD/terraform-morpheus-efs.git", + "svn_url": "https://github.e.it.census.gov/CSVD/terraform-morpheus-efs", + "template": [], + "topics": [ + "morpheus-infra" + ], + "visibility": "public", + "vulnerability_alerts": false, + "web_commit_signoff_required": false + }, + "sensitive_values": { + "pages": [], + "security_and_analysis": [ + { + "advanced_security": [ + {} + ], + "secret_scanning": [ + {} + ], + "secret_scanning_push_protection": [ + {} + ] + } + ], + "template": [], + "topics": [ + false + ] + } + }, + { + "address": "module.repo_list[\"terraform-morpheus-efs\"].github_repository_collaborator.collaborators[\"gomez385\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "gomez385", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "terraform-morpheus-efs:gomez385", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "terraform-morpheus-efs", + "username": "gomez385" + }, + "sensitive_values": {} + }, + { + "address": "module.repo_list[\"terraform-morpheus-efs\"].github_repository_collaborator.collaborators[\"morga471\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "morga471", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "terraform-morpheus-efs:morga471", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "terraform-morpheus-efs", + "username": "morga471" + }, + "sensitive_values": {} + }, + { + "address": "module.repo_list[\"terraform-morpheus-efs\"].github_repository_collaborator.collaborators[\"naray007\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "naray007", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "terraform-morpheus-efs:naray007", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "terraform-morpheus-efs", + "username": "naray007" + }, + "sensitive_values": {} + } + ], + "address": "module.repo_list[\"terraform-morpheus-efs\"]" + }, + { + "resources": [ + { + "address": "module.repo_list[\"terraform-morpheus-queue\"].github_branch_protection.main[0]", + "mode": "managed", + "type": "github_branch_protection", + "name": "main", + "index": 0, + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 2, + "values": { + "allows_deletions": false, + "allows_force_pushes": false, + "enforce_admins": true, + "force_push_bypassers": null, + "lock_branch": false, + "pattern": "main", + "repository_id": "MDEwOlJlcG9zaXRvcnkxMTM4", + "require_conversation_resolution": false, + "require_signed_commits": false, + "required_linear_history": false, + "required_pull_request_reviews": [ + { + "dismiss_stale_reviews": true, + "dismissal_restrictions": null, + "pull_request_bypassers": [ + "MDQ6VXNlcjU0OQ==", + "MDQ6VXNlcjYwMw==" + ], + "require_code_owner_reviews": true, + "require_last_push_approval": false, + "required_approving_review_count": 1, + "restrict_dismissals": null + } + ], + "required_status_checks": [], + "restrict_pushes": [] + }, + "sensitive_values": { + "required_pull_request_reviews": [ + { + "pull_request_bypassers": [ + false, + false + ] + } + ], + "required_status_checks": [], + "restrict_pushes": [] + } + }, + { + "address": "module.repo_list[\"terraform-morpheus-queue\"].github_repository.repo", + "mode": "managed", + "type": "github_repository", + "name": "repo", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 1, + "values": { + "allow_auto_merge": false, + "allow_merge_commit": false, + "allow_rebase_merge": false, + "allow_squash_merge": true, + "allow_update_branch": false, + "archive_on_destroy": true, + "archived": false, + "auto_init": true, + "default_branch": "main", + "delete_branch_on_merge": true, + "description": "Terraform module repo for terraform-morpheus-queue", + "etag": "W/\"e4bd91a09e8cbd03ee4a92bf1a00e87c4419bfe4eb3e04e88e40e8ecd5e8919f\"", + "full_name": "CSVD/terraform-morpheus-queue", + "git_clone_url": "git://github.e.it.census.gov/CSVD/terraform-morpheus-queue.git", + "gitignore_template": "", + "has_discussions": false, + "has_downloads": false, + "has_issues": true, + "has_projects": true, + "has_wiki": true, + "homepage_url": "", + "html_url": "https://github.e.it.census.gov/CSVD/terraform-morpheus-queue", + "http_clone_url": "https://github.e.it.census.gov/CSVD/terraform-morpheus-queue.git", + "id": "terraform-morpheus-queue", + "ignore_vulnerability_alerts_during_read": null, + "is_template": false, + "license_template": null, + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "name": "terraform-morpheus-queue", + "node_id": "MDEwOlJlcG9zaXRvcnkxMTM4", + "pages": [], + "primary_language": "HCL", + "private": false, + "repo_id": 1138, + "security_and_analysis": [ + { + "advanced_security": [ + { + "status": "disabled" + } + ], + "secret_scanning": [ + { + "status": "disabled" + } + ], + "secret_scanning_push_protection": [ + { + "status": "disabled" + } + ] + } + ], + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "ssh_clone_url": "git@github.e.it.census.gov:CSVD/terraform-morpheus-queue.git", + "svn_url": "https://github.e.it.census.gov/CSVD/terraform-morpheus-queue", + "template": [], + "topics": [ + "morpheus-infra" + ], + "visibility": "public", + "vulnerability_alerts": false, + "web_commit_signoff_required": false + }, + "sensitive_values": { + "pages": [], + "security_and_analysis": [ + { + "advanced_security": [ + {} + ], + "secret_scanning": [ + {} + ], + "secret_scanning_push_protection": [ + {} + ] + } + ], + "template": [], + "topics": [ + false + ] + } + }, + { + "address": "module.repo_list[\"terraform-morpheus-queue\"].github_repository_collaborator.collaborators[\"gomez385\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "gomez385", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "terraform-morpheus-queue:gomez385", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "terraform-morpheus-queue", + "username": "gomez385" + }, + "sensitive_values": {} + }, + { + "address": "module.repo_list[\"terraform-morpheus-queue\"].github_repository_collaborator.collaborators[\"morga471\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "morga471", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "terraform-morpheus-queue:morga471", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "terraform-morpheus-queue", + "username": "morga471" + }, + "sensitive_values": {} + }, + { + "address": "module.repo_list[\"terraform-morpheus-queue\"].github_repository_collaborator.collaborators[\"naray007\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "naray007", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "terraform-morpheus-queue:naray007", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "terraform-morpheus-queue", + "username": "naray007" + }, + "sensitive_values": {} + } + ], + "address": "module.repo_list[\"terraform-morpheus-queue\"]" + }, + { + "resources": [ + { + "address": "module.repo_list[\"terraform-morpheus-search\"].github_branch_protection.main[0]", + "mode": "managed", + "type": "github_branch_protection", + "name": "main", + "index": 0, + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 2, + "values": { + "allows_deletions": false, + "allows_force_pushes": false, + "enforce_admins": true, + "force_push_bypassers": null, + "lock_branch": false, + "pattern": "main", + "repository_id": "MDEwOlJlcG9zaXRvcnkxMTQw", + "require_conversation_resolution": false, + "require_signed_commits": false, + "required_linear_history": false, + "required_pull_request_reviews": [ + { + "dismiss_stale_reviews": true, + "dismissal_restrictions": null, + "pull_request_bypassers": [ + "MDQ6VXNlcjU0OQ==", + "MDQ6VXNlcjYwMw==" + ], + "require_code_owner_reviews": true, + "require_last_push_approval": false, + "required_approving_review_count": 1, + "restrict_dismissals": null + } + ], + "required_status_checks": [], + "restrict_pushes": [] + }, + "sensitive_values": { + "required_pull_request_reviews": [ + { + "pull_request_bypassers": [ + false, + false + ] + } + ], + "required_status_checks": [], + "restrict_pushes": [] + } + }, + { + "address": "module.repo_list[\"terraform-morpheus-search\"].github_repository.repo", + "mode": "managed", + "type": "github_repository", + "name": "repo", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 1, + "values": { + "allow_auto_merge": false, + "allow_merge_commit": false, + "allow_rebase_merge": false, + "allow_squash_merge": true, + "allow_update_branch": false, + "archive_on_destroy": true, + "archived": false, + "auto_init": true, + "default_branch": "main", + "delete_branch_on_merge": true, + "description": "Terraform module repo for terraform-morpheus-search", + "etag": "W/\"8cb7ea94eb2507e506f9e00f1b11e0ac253c20001ed277f7a39f198c58d8edfb\"", + "full_name": "CSVD/terraform-morpheus-search", + "git_clone_url": "git://github.e.it.census.gov/CSVD/terraform-morpheus-search.git", + "gitignore_template": "", + "has_discussions": false, + "has_downloads": false, + "has_issues": true, + "has_projects": true, + "has_wiki": true, + "homepage_url": "", + "html_url": "https://github.e.it.census.gov/CSVD/terraform-morpheus-search", + "http_clone_url": "https://github.e.it.census.gov/CSVD/terraform-morpheus-search.git", + "id": "terraform-morpheus-search", + "ignore_vulnerability_alerts_during_read": null, + "is_template": false, + "license_template": null, + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "name": "terraform-morpheus-search", + "node_id": "MDEwOlJlcG9zaXRvcnkxMTQw", + "pages": [], + "primary_language": "", + "private": false, + "repo_id": 1140, + "security_and_analysis": [ + { + "advanced_security": [ + { + "status": "disabled" + } + ], + "secret_scanning": [ + { + "status": "disabled" + } + ], + "secret_scanning_push_protection": [ + { + "status": "disabled" + } + ] + } + ], + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "ssh_clone_url": "git@github.e.it.census.gov:CSVD/terraform-morpheus-search.git", + "svn_url": "https://github.e.it.census.gov/CSVD/terraform-morpheus-search", + "template": [], + "topics": [ + "morpheus-infra" + ], + "visibility": "public", + "vulnerability_alerts": false, + "web_commit_signoff_required": false + }, + "sensitive_values": { + "pages": [], + "security_and_analysis": [ + { + "advanced_security": [ + {} + ], + "secret_scanning": [ + {} + ], + "secret_scanning_push_protection": [ + {} + ] + } + ], + "template": [], + "topics": [ + false + ] + } + }, + { + "address": "module.repo_list[\"terraform-morpheus-search\"].github_repository_collaborator.collaborators[\"gomez385\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "gomez385", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "terraform-morpheus-search:gomez385", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "terraform-morpheus-search", + "username": "gomez385" + }, + "sensitive_values": {} + }, + { + "address": "module.repo_list[\"terraform-morpheus-search\"].github_repository_collaborator.collaborators[\"morga471\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "morga471", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "terraform-morpheus-search:morga471", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "terraform-morpheus-search", + "username": "morga471" + }, + "sensitive_values": {} + }, + { + "address": "module.repo_list[\"terraform-morpheus-search\"].github_repository_collaborator.collaborators[\"naray007\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "naray007", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "terraform-morpheus-search:naray007", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "terraform-morpheus-search", + "username": "naray007" + }, + "sensitive_values": {} + } + ], + "address": "module.repo_list[\"terraform-morpheus-search\"]" + }, + { + "resources": [ + { + "address": "module.repo_list[\"terraform-morpheus-storage\"].github_branch_protection.main[0]", + "mode": "managed", + "type": "github_branch_protection", + "name": "main", + "index": 0, + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 2, + "values": { + "allows_deletions": false, + "allows_force_pushes": false, + "enforce_admins": true, + "force_push_bypassers": null, + "lock_branch": false, + "pattern": "main", + "repository_id": "MDEwOlJlcG9zaXRvcnkxMTQx", + "require_conversation_resolution": false, + "require_signed_commits": false, + "required_linear_history": false, + "required_pull_request_reviews": [ + { + "dismiss_stale_reviews": true, + "dismissal_restrictions": null, + "pull_request_bypassers": [ + "MDQ6VXNlcjU0OQ==", + "MDQ6VXNlcjYwMw==" + ], + "require_code_owner_reviews": true, + "require_last_push_approval": false, + "required_approving_review_count": 1, + "restrict_dismissals": null + } + ], + "required_status_checks": [], + "restrict_pushes": [] + }, + "sensitive_values": { + "required_pull_request_reviews": [ + { + "pull_request_bypassers": [ + false, + false + ] + } + ], + "required_status_checks": [], + "restrict_pushes": [] + } + }, + { + "address": "module.repo_list[\"terraform-morpheus-storage\"].github_repository.repo", + "mode": "managed", + "type": "github_repository", + "name": "repo", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 1, + "values": { + "allow_auto_merge": false, + "allow_merge_commit": false, + "allow_rebase_merge": false, + "allow_squash_merge": true, + "allow_update_branch": false, + "archive_on_destroy": true, + "archived": false, + "auto_init": true, + "default_branch": "main", + "delete_branch_on_merge": true, + "description": "Terraform module repo for terraform-morpheus-storage", + "etag": "W/\"51245141e6ea8cc96e5b15673bc1da6a606761a6028d890b25a2f12333b1417e\"", + "full_name": "CSVD/terraform-morpheus-storage", + "git_clone_url": "git://github.e.it.census.gov/CSVD/terraform-morpheus-storage.git", + "gitignore_template": "", + "has_discussions": false, + "has_downloads": false, + "has_issues": true, + "has_projects": true, + "has_wiki": true, + "homepage_url": "", + "html_url": "https://github.e.it.census.gov/CSVD/terraform-morpheus-storage", + "http_clone_url": "https://github.e.it.census.gov/CSVD/terraform-morpheus-storage.git", + "id": "terraform-morpheus-storage", + "ignore_vulnerability_alerts_during_read": null, + "is_template": false, + "license_template": null, + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "name": "terraform-morpheus-storage", + "node_id": "MDEwOlJlcG9zaXRvcnkxMTQx", + "pages": [], + "primary_language": "", + "private": false, + "repo_id": 1141, + "security_and_analysis": [ + { + "advanced_security": [ + { + "status": "disabled" + } + ], + "secret_scanning": [ + { + "status": "disabled" + } + ], + "secret_scanning_push_protection": [ + { + "status": "disabled" + } + ] + } + ], + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "ssh_clone_url": "git@github.e.it.census.gov:CSVD/terraform-morpheus-storage.git", + "svn_url": "https://github.e.it.census.gov/CSVD/terraform-morpheus-storage", + "template": [], + "topics": [ + "morpheus-infra" + ], + "visibility": "public", + "vulnerability_alerts": false, + "web_commit_signoff_required": false + }, + "sensitive_values": { + "pages": [], + "security_and_analysis": [ + { + "advanced_security": [ + {} + ], + "secret_scanning": [ + {} + ], + "secret_scanning_push_protection": [ + {} + ] + } + ], + "template": [], + "topics": [ + false + ] + } + }, + { + "address": "module.repo_list[\"terraform-morpheus-storage\"].github_repository_collaborator.collaborators[\"gomez385\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "gomez385", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "terraform-morpheus-storage:gomez385", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "terraform-morpheus-storage", + "username": "gomez385" + }, + "sensitive_values": {} + }, + { + "address": "module.repo_list[\"terraform-morpheus-storage\"].github_repository_collaborator.collaborators[\"morga471\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "morga471", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "terraform-morpheus-storage:morga471", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "terraform-morpheus-storage", + "username": "morga471" + }, + "sensitive_values": {} + }, + { + "address": "module.repo_list[\"terraform-morpheus-storage\"].github_repository_collaborator.collaborators[\"naray007\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "naray007", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "terraform-morpheus-storage:naray007", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "terraform-morpheus-storage", + "username": "naray007" + }, + "sensitive_values": {} + } + ], + "address": "module.repo_list[\"terraform-morpheus-storage\"]" + }, + { + "resources": [ + { + "address": "module.repo_list[\"tf-caching\"].github_branch_protection.main[0]", + "mode": "managed", + "type": "github_branch_protection", + "name": "main", + "index": 0, + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 2, + "values": { + "allows_deletions": false, + "allows_force_pushes": false, + "enforce_admins": true, + "force_push_bypassers": null, + "lock_branch": false, + "pattern": "main", + "repository_id": "MDEwOlJlcG9zaXRvcnkxMTAw", + "require_conversation_resolution": false, + "require_signed_commits": false, + "required_linear_history": false, + "required_pull_request_reviews": [ + { + "dismiss_stale_reviews": true, + "dismissal_restrictions": null, + "pull_request_bypassers": [ + "MDQ6VXNlcjU0OQ==", + "MDQ6VXNlcjYwMw==" + ], + "require_code_owner_reviews": true, + "require_last_push_approval": false, + "required_approving_review_count": 1, + "restrict_dismissals": null + } + ], + "required_status_checks": [], + "restrict_pushes": [] + }, + "sensitive_values": { + "required_pull_request_reviews": [ + { + "pull_request_bypassers": [ + false, + false + ] + } + ], + "required_status_checks": [], + "restrict_pushes": [] + } + }, + { + "address": "module.repo_list[\"tf-caching\"].github_repository.repo", + "mode": "managed", + "type": "github_repository", + "name": "repo", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 1, + "values": { + "allow_auto_merge": false, + "allow_merge_commit": false, + "allow_rebase_merge": false, + "allow_squash_merge": true, + "allow_update_branch": false, + "archive_on_destroy": true, + "archived": false, + "auto_init": true, + "default_branch": "main", + "delete_branch_on_merge": true, + "description": "Terraform Caching service", + "etag": "W/\"5ee9fd5731599f36499bd171abf061ba0433be3abed89a7b88e9f51a44c79e8d\"", + "full_name": "CSVD/tf-caching", + "git_clone_url": "git://github.e.it.census.gov/CSVD/tf-caching.git", + "gitignore_template": "", + "has_discussions": false, + "has_downloads": false, + "has_issues": true, + "has_projects": true, + "has_wiki": true, + "homepage_url": "", + "html_url": "https://github.e.it.census.gov/CSVD/tf-caching", + "http_clone_url": "https://github.e.it.census.gov/CSVD/tf-caching.git", + "id": "tf-caching", + "ignore_vulnerability_alerts_during_read": null, + "is_template": false, + "license_template": null, + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "name": "tf-caching", + "node_id": "MDEwOlJlcG9zaXRvcnkxMTAw", + "pages": [], + "primary_language": "HCL", + "private": false, + "repo_id": 1100, + "security_and_analysis": [ + { + "advanced_security": [ + { + "status": "disabled" + } + ], + "secret_scanning": [ + { + "status": "disabled" + } + ], + "secret_scanning_push_protection": [ + { + "status": "disabled" + } + ] + } + ], + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "ssh_clone_url": "git@github.e.it.census.gov:CSVD/tf-caching.git", + "svn_url": "https://github.e.it.census.gov/CSVD/tf-caching", + "template": [], + "topics": [ + "terraform-tools" + ], + "visibility": "public", + "vulnerability_alerts": false, + "web_commit_signoff_required": false + }, + "sensitive_values": { + "pages": [], + "security_and_analysis": [ + { + "advanced_security": [ + {} + ], + "secret_scanning": [ + {} + ], + "secret_scanning_push_protection": [ + {} + ] + } + ], + "template": [], + "topics": [ + false + ] + } + }, + { + "address": "module.repo_list[\"tf-caching\"].github_repository_collaborator.collaborators[\"gomez385\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "gomez385", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "tf-caching:gomez385", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "tf-caching", + "username": "gomez385" + }, + "sensitive_values": {} + }, + { + "address": "module.repo_list[\"tf-caching\"].github_repository_collaborator.collaborators[\"morga471\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "morga471", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "tf-caching:morga471", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "tf-caching", + "username": "morga471" + }, + "sensitive_values": {} + }, + { + "address": "module.repo_list[\"tf-caching\"].github_repository_collaborator.collaborators[\"naray007\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "naray007", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "tf-caching:naray007", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "tf-caching", + "username": "naray007" + }, + "sensitive_values": {} + } + ], + "address": "module.repo_list[\"tf-caching\"]" + }, + { + "resources": [ + { + "address": "module.repo_list[\"tf-tools\"].github_branch_protection.main[0]", + "mode": "managed", + "type": "github_branch_protection", + "name": "main", + "index": 0, + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 2, + "values": { + "allows_deletions": false, + "allows_force_pushes": false, + "enforce_admins": true, + "force_push_bypassers": null, + "lock_branch": false, + "pattern": "main", + "repository_id": "MDEwOlJlcG9zaXRvcnkxMDU2", + "require_conversation_resolution": false, + "require_signed_commits": false, + "required_linear_history": false, + "required_pull_request_reviews": [ + { + "dismiss_stale_reviews": true, + "dismissal_restrictions": null, + "pull_request_bypassers": [ + "MDQ6VXNlcjU0OQ==", + "MDQ6VXNlcjYwMw==" + ], + "require_code_owner_reviews": true, + "require_last_push_approval": false, + "required_approving_review_count": 1, + "restrict_dismissals": null + } + ], + "required_status_checks": [], + "restrict_pushes": [] + }, + "sensitive_values": { + "required_pull_request_reviews": [ + { + "pull_request_bypassers": [ + false, + false + ] + } + ], + "required_status_checks": [], + "restrict_pushes": [] + } + }, + { + "address": "module.repo_list[\"tf-tools\"].github_repository.repo", + "mode": "managed", + "type": "github_repository", + "name": "repo", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 1, + "values": { + "allow_auto_merge": false, + "allow_merge_commit": false, + "allow_rebase_merge": false, + "allow_squash_merge": true, + "allow_update_branch": false, + "archive_on_destroy": true, + "archived": false, + "auto_init": true, + "default_branch": "main", + "delete_branch_on_merge": true, + "description": "Tools for managing Terraform", + "etag": "W/\"d1710d2138a2f53f9531ba47fcc1aedfba1c84fb09fd10113527aba58c749e49\"", + "full_name": "CSVD/tf-tools", + "git_clone_url": "git://github.e.it.census.gov/CSVD/tf-tools.git", + "gitignore_template": "", + "has_discussions": false, + "has_downloads": false, + "has_issues": true, + "has_projects": true, + "has_wiki": true, + "homepage_url": "", + "html_url": "https://github.e.it.census.gov/CSVD/tf-tools", + "http_clone_url": "https://github.e.it.census.gov/CSVD/tf-tools.git", + "id": "tf-tools", + "ignore_vulnerability_alerts_during_read": null, + "is_template": false, + "license_template": null, + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "name": "tf-tools", + "node_id": "MDEwOlJlcG9zaXRvcnkxMDU2", + "pages": [], + "primary_language": "", + "private": false, + "repo_id": 1056, + "security_and_analysis": [ + { + "advanced_security": [ + { + "status": "disabled" + } + ], + "secret_scanning": [ + { + "status": "disabled" + } + ], + "secret_scanning_push_protection": [ + { + "status": "disabled" + } + ] + } + ], + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "ssh_clone_url": "git@github.e.it.census.gov:CSVD/tf-tools.git", + "svn_url": "https://github.e.it.census.gov/CSVD/tf-tools", + "template": [], + "topics": [ + "terraform-tools" + ], + "visibility": "public", + "vulnerability_alerts": false, + "web_commit_signoff_required": false + }, + "sensitive_values": { + "pages": [], + "security_and_analysis": [ + { + "advanced_security": [ + {} + ], + "secret_scanning": [ + {} + ], + "secret_scanning_push_protection": [ + {} + ] + } + ], + "template": [], + "topics": [ + false + ] + } + }, + { + "address": "module.repo_list[\"tf-tools\"].github_repository_collaborator.collaborators[\"gomez385\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "gomez385", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "tf-tools:gomez385", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "tf-tools", + "username": "gomez385" + }, + "sensitive_values": {} + }, + { + "address": "module.repo_list[\"tf-tools\"].github_repository_collaborator.collaborators[\"morga471\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "morga471", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "tf-tools:morga471", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "tf-tools", + "username": "morga471" + }, + "sensitive_values": {} + }, + { + "address": "module.repo_list[\"tf-tools\"].github_repository_collaborator.collaborators[\"naray007\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "naray007", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "tf-tools:naray007", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "tf-tools", + "username": "naray007" + }, + "sensitive_values": {} + } + ], + "address": "module.repo_list[\"tf-tools\"]" + }, + { + "resources": [ + { + "address": "module.repo_list[\"vpc-services\"].github_repository.repo", + "mode": "managed", + "type": "github_repository", + "name": "repo", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 1, + "values": { + "allow_auto_merge": false, + "allow_merge_commit": false, + "allow_rebase_merge": false, + "allow_squash_merge": true, + "allow_update_branch": false, + "archive_on_destroy": true, + "archived": false, + "auto_init": true, + "default_branch": "main", + "delete_branch_on_merge": true, + "description": "Add VPC Endpoints for Supported Services to given Subnet", + "etag": "W/\"8969d0ce7e0936f79fadaff73fe21b8c6f5ca99794c37d0ed1a53ad9457f4cc4\"", + "full_name": "CSVD/vpc-services", + "git_clone_url": "git://github.e.it.census.gov/CSVD/vpc-services.git", + "gitignore_template": "", + "has_discussions": false, + "has_downloads": false, + "has_issues": true, + "has_projects": true, + "has_wiki": true, + "homepage_url": "", + "html_url": "https://github.e.it.census.gov/CSVD/vpc-services", + "http_clone_url": "https://github.e.it.census.gov/CSVD/vpc-services.git", + "id": "vpc-services", + "ignore_vulnerability_alerts_during_read": null, + "is_template": false, + "license_template": null, + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "name": "vpc-services", + "node_id": "MDEwOlJlcG9zaXRvcnkxMDQz", + "pages": [], + "primary_language": "Python", + "private": false, + "repo_id": 1043, + "security_and_analysis": [ + { + "advanced_security": [ + { + "status": "disabled" + } + ], + "secret_scanning": [ + { + "status": "disabled" + } + ], + "secret_scanning_push_protection": [ + { + "status": "disabled" + } + ] + } + ], + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "ssh_clone_url": "git@github.e.it.census.gov:CSVD/vpc-services.git", + "svn_url": "https://github.e.it.census.gov/CSVD/vpc-services", + "template": [], + "topics": [ + "terraform" + ], + "visibility": "public", + "vulnerability_alerts": false, + "web_commit_signoff_required": false + }, + "sensitive_values": { + "pages": [], + "security_and_analysis": [ + { + "advanced_security": [ + {} + ], + "secret_scanning": [ + {} + ], + "secret_scanning_push_protection": [ + {} + ] + } + ], + "template": [], + "topics": [ + false + ] + } + }, + { + "address": "module.repo_list[\"vpc-services\"].github_repository_collaborator.collaborators[\"gomez385\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "gomez385", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "vpc-services:gomez385", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "vpc-services", + "username": "gomez385" + }, + "sensitive_values": {} + }, + { + "address": "module.repo_list[\"vpc-services\"].github_repository_collaborator.collaborators[\"morga471\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "morga471", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "vpc-services:morga471", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "vpc-services", + "username": "morga471" + }, + "sensitive_values": {} + }, + { + "address": "module.repo_list[\"vpc-services\"].github_repository_collaborator.collaborators[\"naray007\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "naray007", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "vpc-services:naray007", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "vpc-services", + "username": "naray007" + }, + "sensitive_values": {} + } + ], + "address": "module.repo_list[\"vpc-services\"]" + }, + { + "resources": [ + { + "address": "module.repo_list[\"windows-image-pipeline\"].github_repository.repo", + "mode": "managed", + "type": "github_repository", + "name": "repo", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 1, + "values": { + "allow_auto_merge": false, + "allow_merge_commit": false, + "allow_rebase_merge": false, + "allow_squash_merge": true, + "allow_update_branch": false, + "archive_on_destroy": true, + "archived": false, + "auto_init": true, + "default_branch": "main", + "delete_branch_on_merge": true, + "description": "Template repo for windows image pipelines", + "etag": "W/\"fc963d8c556c73f42ddddb1b4f9d81d4f5fdd9c84aa49e56469aac6094ababc7\"", + "full_name": "CSVD/windows-image-pipeline", + "git_clone_url": "git://github.e.it.census.gov/CSVD/windows-image-pipeline.git", + "gitignore_template": "", + "has_discussions": false, + "has_downloads": false, + "has_issues": true, + "has_projects": true, + "has_wiki": true, + "homepage_url": "", + "html_url": "https://github.e.it.census.gov/CSVD/windows-image-pipeline", + "http_clone_url": "https://github.e.it.census.gov/CSVD/windows-image-pipeline.git", + "id": "windows-image-pipeline", + "ignore_vulnerability_alerts_during_read": null, + "is_template": false, + "license_template": null, + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "name": "windows-image-pipeline", + "node_id": "MDEwOlJlcG9zaXRvcnk5NzY=", + "pages": [], + "primary_language": "PowerShell", + "private": true, + "repo_id": 976, + "security_and_analysis": [ + { + "advanced_security": [ + { + "status": "disabled" + } + ], + "secret_scanning": [ + { + "status": "disabled" + } + ], + "secret_scanning_push_protection": [ + { + "status": "disabled" + } + ] + } + ], + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "ssh_clone_url": "git@github.e.it.census.gov:CSVD/windows-image-pipeline.git", + "svn_url": "https://github.e.it.census.gov/CSVD/windows-image-pipeline", + "template": [], + "topics": [ + "terraform" + ], + "visibility": "public", + "vulnerability_alerts": false, + "web_commit_signoff_required": false + }, + "sensitive_values": { + "pages": [], + "security_and_analysis": [ + { + "advanced_security": [ + {} + ], + "secret_scanning": [ + {} + ], + "secret_scanning_push_protection": [ + {} + ] + } + ], + "template": [], + "topics": [ + false + ] + } + }, + { + "address": "module.repo_list[\"windows-image-pipeline\"].github_repository_collaborator.collaborators[\"gomez385\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "gomez385", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "windows-image-pipeline:gomez385", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "windows-image-pipeline", + "username": "gomez385" + }, + "sensitive_values": {} + }, + { + "address": "module.repo_list[\"windows-image-pipeline\"].github_repository_collaborator.collaborators[\"morga471\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "morga471", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "windows-image-pipeline:morga471", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "windows-image-pipeline", + "username": "morga471" + }, + "sensitive_values": {} + }, + { + "address": "module.repo_list[\"windows-image-pipeline\"].github_repository_collaborator.collaborators[\"naray007\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "naray007", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "windows-image-pipeline:naray007", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "windows-image-pipeline", + "username": "naray007" + }, + "sensitive_values": {} + } + ], + "address": "module.repo_list[\"windows-image-pipeline\"]" + } + ] + } + }, + "resource_drift": [ + { + "address": "github_team_members.terraform_reviewer_members", + "mode": "managed", + "type": "github_team_members", + "name": "terraform_reviewer_members", + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "update" + ], + "before": { + "id": "737", + "members": [ + { + "role": "member", + "username": "gomez385" + }, + { + "role": "member", + "username": "morga471" + }, + { + "role": "member", + "username": "naray007" + } + ], + "team_id": "737" + }, + "after": { + "id": "737", + "members": [ + { + "role": "maintainer", + "username": "gomez385" + }, + { + "role": "maintainer", + "username": "morga471" + }, + { + "role": "member", + "username": "naray007" + } + ], + "team_id": "737" + }, + "after_unknown": {}, + "before_sensitive": { + "members": [ + {}, + {}, + {} + ] + }, + "after_sensitive": { + "members": [ + {}, + {}, + {} + ] + } + } + } + ], + "resource_changes": [ + { + "address": "aws_kms_alias.actions_bucket_east", + "mode": "managed", + "type": "aws_kms_alias", + "name": "actions_bucket_east", + "provider_name": "registry.terraform.io/hashicorp/aws", + "change": { + "actions": [ + "no-op" + ], + "before": { + "arn": "arn:aws-us-gov:kms:us-gov-east-1:229685449397:alias/csvd-dev-ew-github-actions-east", + "id": "alias/csvd-dev-ew-github-actions-east", + "name": "alias/csvd-dev-ew-github-actions-east", + "name_prefix": "", + "target_key_arn": "arn:aws-us-gov:kms:us-gov-east-1:229685449397:key/985d3603-ef1f-434d-b6c7-de67a3b9533f", + "target_key_id": "985d3603-ef1f-434d-b6c7-de67a3b9533f" + }, + "after": { + "arn": "arn:aws-us-gov:kms:us-gov-east-1:229685449397:alias/csvd-dev-ew-github-actions-east", + "id": "alias/csvd-dev-ew-github-actions-east", + "name": "alias/csvd-dev-ew-github-actions-east", + "name_prefix": "", + "target_key_arn": "arn:aws-us-gov:kms:us-gov-east-1:229685449397:key/985d3603-ef1f-434d-b6c7-de67a3b9533f", + "target_key_id": "985d3603-ef1f-434d-b6c7-de67a3b9533f" + }, + "after_unknown": {}, + "before_sensitive": {}, + "after_sensitive": {} + } + }, + { + "address": "aws_kms_alias.actions_bucket_west", + "mode": "managed", + "type": "aws_kms_alias", + "name": "actions_bucket_west", + "provider_name": "registry.terraform.io/hashicorp/aws", + "change": { + "actions": [ + "no-op" + ], + "before": { + "arn": "arn:aws-us-gov:kms:us-gov-west-1:229685449397:alias/csvd-dev-ew-github-actions", + "id": "alias/csvd-dev-ew-github-actions", + "name": "alias/csvd-dev-ew-github-actions", + "name_prefix": "", + "target_key_arn": "arn:aws-us-gov:kms:us-gov-west-1:229685449397:key/77f3d319-2557-494c-b0c6-1c453048574c", + "target_key_id": "77f3d319-2557-494c-b0c6-1c453048574c" + }, + "after": { + "arn": "arn:aws-us-gov:kms:us-gov-west-1:229685449397:alias/csvd-dev-ew-github-actions", + "id": "alias/csvd-dev-ew-github-actions", + "name": "alias/csvd-dev-ew-github-actions", + "name_prefix": "", + "target_key_arn": "arn:aws-us-gov:kms:us-gov-west-1:229685449397:key/77f3d319-2557-494c-b0c6-1c453048574c", + "target_key_id": "77f3d319-2557-494c-b0c6-1c453048574c" + }, + "after_unknown": {}, + "before_sensitive": {}, + "after_sensitive": {} + } + }, + { + "address": "aws_kms_key.actions_bucket_east", + "mode": "managed", + "type": "aws_kms_key", + "name": "actions_bucket_east", + "provider_name": "registry.terraform.io/hashicorp/aws", + "change": { + "actions": [ + "no-op" + ], + "before": { + "arn": "arn:aws-us-gov:kms:us-gov-east-1:229685449397:key/985d3603-ef1f-434d-b6c7-de67a3b9533f", + "bypass_policy_lockout_safety_check": false, + "custom_key_store_id": "", + "customer_master_key_spec": "SYMMETRIC_DEFAULT", + "deletion_window_in_days": 30, + "description": "KMS key for actions bucket encryption (East)", + "enable_key_rotation": true, + "id": "985d3603-ef1f-434d-b6c7-de67a3b9533f", + "is_enabled": true, + "key_id": "985d3603-ef1f-434d-b6c7-de67a3b9533f", + "key_usage": "ENCRYPT_DECRYPT", + "multi_region": false, + "policy": "{\"Statement\":[{\"Action\":\"kms:*\",\"Effect\":\"Allow\",\"Principal\":{\"AWS\":\"arn:aws-us-gov:iam::229685449397:root\"},\"Resource\":\"*\",\"Sid\":\"Enable IAM User Permissions\"}],\"Version\":\"2012-10-17\"}", + "rotation_period_in_days": 365, + "tags": {}, + "tags_all": {}, + "timeouts": null, + "xks_key_id": "" + }, + "after": { + "arn": "arn:aws-us-gov:kms:us-gov-east-1:229685449397:key/985d3603-ef1f-434d-b6c7-de67a3b9533f", + "bypass_policy_lockout_safety_check": false, + "custom_key_store_id": "", + "customer_master_key_spec": "SYMMETRIC_DEFAULT", + "deletion_window_in_days": 30, + "description": "KMS key for actions bucket encryption (East)", + "enable_key_rotation": true, + "id": "985d3603-ef1f-434d-b6c7-de67a3b9533f", + "is_enabled": true, + "key_id": "985d3603-ef1f-434d-b6c7-de67a3b9533f", + "key_usage": "ENCRYPT_DECRYPT", + "multi_region": false, + "policy": "{\"Statement\":[{\"Action\":\"kms:*\",\"Effect\":\"Allow\",\"Principal\":{\"AWS\":\"arn:aws-us-gov:iam::229685449397:root\"},\"Resource\":\"*\",\"Sid\":\"Enable IAM User Permissions\"}],\"Version\":\"2012-10-17\"}", + "rotation_period_in_days": 365, + "tags": {}, + "tags_all": {}, + "timeouts": null, + "xks_key_id": "" + }, + "after_unknown": {}, + "before_sensitive": { + "tags": {}, + "tags_all": {} + }, + "after_sensitive": { + "tags": {}, + "tags_all": {} + } + } + }, + { + "address": "aws_kms_key.actions_bucket_west", + "mode": "managed", + "type": "aws_kms_key", + "name": "actions_bucket_west", + "provider_name": "registry.terraform.io/hashicorp/aws", + "change": { + "actions": [ + "no-op" + ], + "before": { + "arn": "arn:aws-us-gov:kms:us-gov-west-1:229685449397:key/77f3d319-2557-494c-b0c6-1c453048574c", + "bypass_policy_lockout_safety_check": false, + "custom_key_store_id": "", + "customer_master_key_spec": "SYMMETRIC_DEFAULT", + "deletion_window_in_days": 30, + "description": "KMS key for actions bucket encryption (West)", + "enable_key_rotation": true, + "id": "77f3d319-2557-494c-b0c6-1c453048574c", + "is_enabled": true, + "key_id": "77f3d319-2557-494c-b0c6-1c453048574c", + "key_usage": "ENCRYPT_DECRYPT", + "multi_region": false, + "policy": "{\"Statement\":[{\"Action\":\"kms:*\",\"Effect\":\"Allow\",\"Principal\":{\"AWS\":\"arn:aws-us-gov:iam::229685449397:root\"},\"Resource\":\"*\",\"Sid\":\"Enable IAM User Permissions\"}],\"Version\":\"2012-10-17\"}", + "rotation_period_in_days": 365, + "tags": {}, + "tags_all": {}, + "timeouts": null, + "xks_key_id": "" + }, + "after": { + "arn": "arn:aws-us-gov:kms:us-gov-west-1:229685449397:key/77f3d319-2557-494c-b0c6-1c453048574c", + "bypass_policy_lockout_safety_check": false, + "custom_key_store_id": "", + "customer_master_key_spec": "SYMMETRIC_DEFAULT", + "deletion_window_in_days": 30, + "description": "KMS key for actions bucket encryption (West)", + "enable_key_rotation": true, + "id": "77f3d319-2557-494c-b0c6-1c453048574c", + "is_enabled": true, + "key_id": "77f3d319-2557-494c-b0c6-1c453048574c", + "key_usage": "ENCRYPT_DECRYPT", + "multi_region": false, + "policy": "{\"Statement\":[{\"Action\":\"kms:*\",\"Effect\":\"Allow\",\"Principal\":{\"AWS\":\"arn:aws-us-gov:iam::229685449397:root\"},\"Resource\":\"*\",\"Sid\":\"Enable IAM User Permissions\"}],\"Version\":\"2012-10-17\"}", + "rotation_period_in_days": 365, + "tags": {}, + "tags_all": {}, + "timeouts": null, + "xks_key_id": "" + }, + "after_unknown": {}, + "before_sensitive": { + "tags": {}, + "tags_all": {} + }, + "after_sensitive": { + "tags": {}, + "tags_all": {} + } + } + }, + { + "address": "aws_s3_bucket.actions_east", + "mode": "managed", + "type": "aws_s3_bucket", + "name": "actions_east", + "provider_name": "registry.terraform.io/hashicorp/aws", + "change": { + "actions": [ + "no-op" + ], + "before": { + "acceleration_status": "", + "acl": null, + "arn": "arn:aws-us-gov:s3:::csvd-dev-ew-github-actions-east", + "bucket": "csvd-dev-ew-github-actions-east", + "bucket_domain_name": "csvd-dev-ew-github-actions-east.s3.amazonaws.com", + "bucket_prefix": "", + "bucket_regional_domain_name": "csvd-dev-ew-github-actions-east.s3.us-gov-east-1.amazonaws.com", + "cors_rule": [], + "force_destroy": false, + "grant": [ + { + "id": "1cdbccee29c5305ac377a789c6f924db69ec7da804ad7d8303a495cf5eef9084", + "permissions": [ + "FULL_CONTROL" + ], + "type": "CanonicalUser", + "uri": "" + } + ], + "hosted_zone_id": "Z2NIFVYYW2VKV1", + "id": "csvd-dev-ew-github-actions-east", + "lifecycle_rule": [], + "logging": [], + "object_lock_configuration": [], + "object_lock_enabled": false, + "policy": "{\"Statement\":[{\"Action\":[\"s3:GetObject*\",\"s3:PutObject*\",\"s3:DeleteObject*\",\"s3:ListBucket\"],\"Effect\":\"Allow\",\"Principal\":{\"AWS\":\"arn:aws-us-gov:iam::229685449397:role/aws-service-role/ecs.amazonaws.com/AWSServiceRoleForECS\"},\"Resource\":[\"arn:aws-us-gov:s3:::csvd-dev-ew-github-actions-east\",\"arn:aws-us-gov:s3:::csvd-dev-ew-github-actions-east/*\"],\"Sid\":\"AllowECSServiceRole\"}],\"Version\":\"2012-10-17\"}", + "region": "us-gov-east-1", + "replication_configuration": [], + "request_payer": "BucketOwner", + "server_side_encryption_configuration": [ + { + "rule": [ + { + "apply_server_side_encryption_by_default": [ + { + "kms_master_key_id": "arn:aws-us-gov:kms:us-gov-east-1:229685449397:key/985d3603-ef1f-434d-b6c7-de67a3b9533f", + "sse_algorithm": "aws:kms" + } + ], + "bucket_key_enabled": false + } + ] + } + ], + "tags": {}, + "tags_all": {}, + "timeouts": null, + "versioning": [ + { + "enabled": true, + "mfa_delete": false + } + ], + "website": [], + "website_domain": null, + "website_endpoint": null + }, + "after": { + "acceleration_status": "", + "acl": null, + "arn": "arn:aws-us-gov:s3:::csvd-dev-ew-github-actions-east", + "bucket": "csvd-dev-ew-github-actions-east", + "bucket_domain_name": "csvd-dev-ew-github-actions-east.s3.amazonaws.com", + "bucket_prefix": "", + "bucket_regional_domain_name": "csvd-dev-ew-github-actions-east.s3.us-gov-east-1.amazonaws.com", + "cors_rule": [], + "force_destroy": false, + "grant": [ + { + "id": "1cdbccee29c5305ac377a789c6f924db69ec7da804ad7d8303a495cf5eef9084", + "permissions": [ + "FULL_CONTROL" + ], + "type": "CanonicalUser", + "uri": "" + } + ], + "hosted_zone_id": "Z2NIFVYYW2VKV1", + "id": "csvd-dev-ew-github-actions-east", + "lifecycle_rule": [], + "logging": [], + "object_lock_configuration": [], + "object_lock_enabled": false, + "policy": "{\"Statement\":[{\"Action\":[\"s3:GetObject*\",\"s3:PutObject*\",\"s3:DeleteObject*\",\"s3:ListBucket\"],\"Effect\":\"Allow\",\"Principal\":{\"AWS\":\"arn:aws-us-gov:iam::229685449397:role/aws-service-role/ecs.amazonaws.com/AWSServiceRoleForECS\"},\"Resource\":[\"arn:aws-us-gov:s3:::csvd-dev-ew-github-actions-east\",\"arn:aws-us-gov:s3:::csvd-dev-ew-github-actions-east/*\"],\"Sid\":\"AllowECSServiceRole\"}],\"Version\":\"2012-10-17\"}", + "region": "us-gov-east-1", + "replication_configuration": [], + "request_payer": "BucketOwner", + "server_side_encryption_configuration": [ + { + "rule": [ + { + "apply_server_side_encryption_by_default": [ + { + "kms_master_key_id": "arn:aws-us-gov:kms:us-gov-east-1:229685449397:key/985d3603-ef1f-434d-b6c7-de67a3b9533f", + "sse_algorithm": "aws:kms" + } + ], + "bucket_key_enabled": false + } + ] + } + ], + "tags": {}, + "tags_all": {}, + "timeouts": null, + "versioning": [ + { + "enabled": true, + "mfa_delete": false + } + ], + "website": [], + "website_domain": null, + "website_endpoint": null + }, + "after_unknown": {}, + "before_sensitive": { + "cors_rule": [], + "grant": [ + { + "permissions": [ + false + ] + } + ], + "lifecycle_rule": [], + "logging": [], + "object_lock_configuration": [], + "replication_configuration": [], + "server_side_encryption_configuration": [ + { + "rule": [ + { + "apply_server_side_encryption_by_default": [ + {} + ] + } + ] + } + ], + "tags": {}, + "tags_all": {}, + "versioning": [ + {} + ], + "website": [] + }, + "after_sensitive": { + "cors_rule": [], + "grant": [ + { + "permissions": [ + false + ] + } + ], + "lifecycle_rule": [], + "logging": [], + "object_lock_configuration": [], + "replication_configuration": [], + "server_side_encryption_configuration": [ + { + "rule": [ + { + "apply_server_side_encryption_by_default": [ + {} + ] + } + ] + } + ], + "tags": {}, + "tags_all": {}, + "versioning": [ + {} + ], + "website": [] + } + } + }, + { + "address": "aws_s3_bucket.actions_west", + "mode": "managed", + "type": "aws_s3_bucket", + "name": "actions_west", + "provider_name": "registry.terraform.io/hashicorp/aws", + "change": { + "actions": [ + "no-op" + ], + "before": { + "acceleration_status": "", + "acl": null, + "arn": "arn:aws-us-gov:s3:::csvd-dev-ew-github-actions", + "bucket": "csvd-dev-ew-github-actions", + "bucket_domain_name": "csvd-dev-ew-github-actions.s3.amazonaws.com", + "bucket_prefix": "", + "bucket_regional_domain_name": "csvd-dev-ew-github-actions.s3.us-gov-west-1.amazonaws.com", + "cors_rule": [], + "force_destroy": false, + "grant": [ + { + "id": "1cdbccee29c5305ac377a789c6f924db69ec7da804ad7d8303a495cf5eef9084", + "permissions": [ + "FULL_CONTROL" + ], + "type": "CanonicalUser", + "uri": "" + } + ], + "hosted_zone_id": "Z31GFT0UA1I2HV", + "id": "csvd-dev-ew-github-actions", + "lifecycle_rule": [], + "logging": [], + "object_lock_configuration": [], + "object_lock_enabled": false, + "policy": "{\"Statement\":[{\"Action\":[\"s3:GetObject*\",\"s3:PutObject*\",\"s3:DeleteObject*\",\"s3:ListBucket\"],\"Effect\":\"Allow\",\"Principal\":{\"AWS\":\"arn:aws-us-gov:iam::229685449397:role/aws-service-role/ecs.amazonaws.com/AWSServiceRoleForECS\"},\"Resource\":[\"arn:aws-us-gov:s3:::csvd-dev-ew-github-actions\",\"arn:aws-us-gov:s3:::csvd-dev-ew-github-actions/*\"],\"Sid\":\"AllowECSServiceRole\"}],\"Version\":\"2012-10-17\"}", + "region": "us-gov-west-1", + "replication_configuration": [], + "request_payer": "BucketOwner", + "server_side_encryption_configuration": [ + { + "rule": [ + { + "apply_server_side_encryption_by_default": [ + { + "kms_master_key_id": "arn:aws-us-gov:kms:us-gov-west-1:229685449397:key/77f3d319-2557-494c-b0c6-1c453048574c", + "sse_algorithm": "aws:kms" + } + ], + "bucket_key_enabled": false + } + ] + } + ], + "tags": {}, + "tags_all": {}, + "timeouts": null, + "versioning": [ + { + "enabled": true, + "mfa_delete": false + } + ], + "website": [], + "website_domain": null, + "website_endpoint": null + }, + "after": { + "acceleration_status": "", + "acl": null, + "arn": "arn:aws-us-gov:s3:::csvd-dev-ew-github-actions", + "bucket": "csvd-dev-ew-github-actions", + "bucket_domain_name": "csvd-dev-ew-github-actions.s3.amazonaws.com", + "bucket_prefix": "", + "bucket_regional_domain_name": "csvd-dev-ew-github-actions.s3.us-gov-west-1.amazonaws.com", + "cors_rule": [], + "force_destroy": false, + "grant": [ + { + "id": "1cdbccee29c5305ac377a789c6f924db69ec7da804ad7d8303a495cf5eef9084", + "permissions": [ + "FULL_CONTROL" + ], + "type": "CanonicalUser", + "uri": "" + } + ], + "hosted_zone_id": "Z31GFT0UA1I2HV", + "id": "csvd-dev-ew-github-actions", + "lifecycle_rule": [], + "logging": [], + "object_lock_configuration": [], + "object_lock_enabled": false, + "policy": "{\"Statement\":[{\"Action\":[\"s3:GetObject*\",\"s3:PutObject*\",\"s3:DeleteObject*\",\"s3:ListBucket\"],\"Effect\":\"Allow\",\"Principal\":{\"AWS\":\"arn:aws-us-gov:iam::229685449397:role/aws-service-role/ecs.amazonaws.com/AWSServiceRoleForECS\"},\"Resource\":[\"arn:aws-us-gov:s3:::csvd-dev-ew-github-actions\",\"arn:aws-us-gov:s3:::csvd-dev-ew-github-actions/*\"],\"Sid\":\"AllowECSServiceRole\"}],\"Version\":\"2012-10-17\"}", + "region": "us-gov-west-1", + "replication_configuration": [], + "request_payer": "BucketOwner", + "server_side_encryption_configuration": [ + { + "rule": [ + { + "apply_server_side_encryption_by_default": [ + { + "kms_master_key_id": "arn:aws-us-gov:kms:us-gov-west-1:229685449397:key/77f3d319-2557-494c-b0c6-1c453048574c", + "sse_algorithm": "aws:kms" + } + ], + "bucket_key_enabled": false + } + ] + } + ], + "tags": {}, + "tags_all": {}, + "timeouts": null, + "versioning": [ + { + "enabled": true, + "mfa_delete": false + } + ], + "website": [], + "website_domain": null, + "website_endpoint": null + }, + "after_unknown": {}, + "before_sensitive": { + "cors_rule": [], + "grant": [ + { + "permissions": [ + false + ] + } + ], + "lifecycle_rule": [], + "logging": [], + "object_lock_configuration": [], + "replication_configuration": [], + "server_side_encryption_configuration": [ + { + "rule": [ + { + "apply_server_side_encryption_by_default": [ + {} + ] + } + ] + } + ], + "tags": {}, + "tags_all": {}, + "versioning": [ + {} + ], + "website": [] + }, + "after_sensitive": { + "cors_rule": [], + "grant": [ + { + "permissions": [ + false + ] + } + ], + "lifecycle_rule": [], + "logging": [], + "object_lock_configuration": [], + "replication_configuration": [], + "server_side_encryption_configuration": [ + { + "rule": [ + { + "apply_server_side_encryption_by_default": [ + {} + ] + } + ] + } + ], + "tags": {}, + "tags_all": {}, + "versioning": [ + {} + ], + "website": [] + } + } + }, + { + "address": "aws_s3_bucket_policy.actions_east", + "mode": "managed", + "type": "aws_s3_bucket_policy", + "name": "actions_east", + "provider_name": "registry.terraform.io/hashicorp/aws", + "change": { + "actions": [ + "no-op" + ], + "before": { + "bucket": "csvd-dev-ew-github-actions-east", + "id": "csvd-dev-ew-github-actions-east", + "policy": "{\"Statement\":[{\"Action\":[\"s3:GetObject*\",\"s3:PutObject*\",\"s3:DeleteObject*\",\"s3:ListBucket\"],\"Effect\":\"Allow\",\"Principal\":{\"AWS\":\"arn:aws-us-gov:iam::229685449397:role/aws-service-role/ecs.amazonaws.com/AWSServiceRoleForECS\"},\"Resource\":[\"arn:aws-us-gov:s3:::csvd-dev-ew-github-actions-east\",\"arn:aws-us-gov:s3:::csvd-dev-ew-github-actions-east/*\"],\"Sid\":\"AllowECSServiceRole\"}],\"Version\":\"2012-10-17\"}" + }, + "after": { + "bucket": "csvd-dev-ew-github-actions-east", + "id": "csvd-dev-ew-github-actions-east", + "policy": "{\"Statement\":[{\"Action\":[\"s3:GetObject*\",\"s3:PutObject*\",\"s3:DeleteObject*\",\"s3:ListBucket\"],\"Effect\":\"Allow\",\"Principal\":{\"AWS\":\"arn:aws-us-gov:iam::229685449397:role/aws-service-role/ecs.amazonaws.com/AWSServiceRoleForECS\"},\"Resource\":[\"arn:aws-us-gov:s3:::csvd-dev-ew-github-actions-east\",\"arn:aws-us-gov:s3:::csvd-dev-ew-github-actions-east/*\"],\"Sid\":\"AllowECSServiceRole\"}],\"Version\":\"2012-10-17\"}" + }, + "after_unknown": {}, + "before_sensitive": {}, + "after_sensitive": {} + } + }, + { + "address": "aws_s3_bucket_policy.actions_west", + "mode": "managed", + "type": "aws_s3_bucket_policy", + "name": "actions_west", + "provider_name": "registry.terraform.io/hashicorp/aws", + "change": { + "actions": [ + "no-op" + ], + "before": { + "bucket": "csvd-dev-ew-github-actions", + "id": "csvd-dev-ew-github-actions", + "policy": "{\"Statement\":[{\"Action\":[\"s3:GetObject*\",\"s3:PutObject*\",\"s3:DeleteObject*\",\"s3:ListBucket\"],\"Effect\":\"Allow\",\"Principal\":{\"AWS\":\"arn:aws-us-gov:iam::229685449397:role/aws-service-role/ecs.amazonaws.com/AWSServiceRoleForECS\"},\"Resource\":[\"arn:aws-us-gov:s3:::csvd-dev-ew-github-actions\",\"arn:aws-us-gov:s3:::csvd-dev-ew-github-actions/*\"],\"Sid\":\"AllowECSServiceRole\"}],\"Version\":\"2012-10-17\"}" + }, + "after": { + "bucket": "csvd-dev-ew-github-actions", + "id": "csvd-dev-ew-github-actions", + "policy": "{\"Statement\":[{\"Action\":[\"s3:GetObject*\",\"s3:PutObject*\",\"s3:DeleteObject*\",\"s3:ListBucket\"],\"Effect\":\"Allow\",\"Principal\":{\"AWS\":\"arn:aws-us-gov:iam::229685449397:role/aws-service-role/ecs.amazonaws.com/AWSServiceRoleForECS\"},\"Resource\":[\"arn:aws-us-gov:s3:::csvd-dev-ew-github-actions\",\"arn:aws-us-gov:s3:::csvd-dev-ew-github-actions/*\"],\"Sid\":\"AllowECSServiceRole\"}],\"Version\":\"2012-10-17\"}" + }, + "after_unknown": {}, + "before_sensitive": {}, + "after_sensitive": {} + } + }, + { + "address": "aws_s3_bucket_public_access_block.actions_east", + "mode": "managed", + "type": "aws_s3_bucket_public_access_block", + "name": "actions_east", + "provider_name": "registry.terraform.io/hashicorp/aws", + "change": { + "actions": [ + "no-op" + ], + "before": { + "block_public_acls": true, + "block_public_policy": true, + "bucket": "csvd-dev-ew-github-actions-east", + "id": "csvd-dev-ew-github-actions-east", + "ignore_public_acls": true, + "restrict_public_buckets": true + }, + "after": { + "block_public_acls": true, + "block_public_policy": true, + "bucket": "csvd-dev-ew-github-actions-east", + "id": "csvd-dev-ew-github-actions-east", + "ignore_public_acls": true, + "restrict_public_buckets": true + }, + "after_unknown": {}, + "before_sensitive": {}, + "after_sensitive": {} + } + }, + { + "address": "aws_s3_bucket_public_access_block.actions_west", + "mode": "managed", + "type": "aws_s3_bucket_public_access_block", + "name": "actions_west", + "provider_name": "registry.terraform.io/hashicorp/aws", + "change": { + "actions": [ + "no-op" + ], + "before": { + "block_public_acls": true, + "block_public_policy": true, + "bucket": "csvd-dev-ew-github-actions", + "id": "csvd-dev-ew-github-actions", + "ignore_public_acls": true, + "restrict_public_buckets": true + }, + "after": { + "block_public_acls": true, + "block_public_policy": true, + "bucket": "csvd-dev-ew-github-actions", + "id": "csvd-dev-ew-github-actions", + "ignore_public_acls": true, + "restrict_public_buckets": true + }, + "after_unknown": {}, + "before_sensitive": {}, + "after_sensitive": {} + } + }, + { + "address": "aws_s3_bucket_server_side_encryption_configuration.actions_east", + "mode": "managed", + "type": "aws_s3_bucket_server_side_encryption_configuration", + "name": "actions_east", + "provider_name": "registry.terraform.io/hashicorp/aws", + "change": { + "actions": [ + "no-op" + ], + "before": { + "bucket": "csvd-dev-ew-github-actions-east", + "expected_bucket_owner": "", + "id": "csvd-dev-ew-github-actions-east", + "rule": [ + { + "apply_server_side_encryption_by_default": [ + { + "kms_master_key_id": "arn:aws-us-gov:kms:us-gov-east-1:229685449397:key/985d3603-ef1f-434d-b6c7-de67a3b9533f", + "sse_algorithm": "aws:kms" + } + ], + "bucket_key_enabled": false + } + ] + }, + "after": { + "bucket": "csvd-dev-ew-github-actions-east", + "expected_bucket_owner": "", + "id": "csvd-dev-ew-github-actions-east", + "rule": [ + { + "apply_server_side_encryption_by_default": [ + { + "kms_master_key_id": "arn:aws-us-gov:kms:us-gov-east-1:229685449397:key/985d3603-ef1f-434d-b6c7-de67a3b9533f", + "sse_algorithm": "aws:kms" + } + ], + "bucket_key_enabled": false + } + ] + }, + "after_unknown": {}, + "before_sensitive": { + "rule": [ + { + "apply_server_side_encryption_by_default": [ + {} + ] + } + ] + }, + "after_sensitive": { + "rule": [ + { + "apply_server_side_encryption_by_default": [ + {} + ] + } + ] + } + } + }, + { + "address": "aws_s3_bucket_server_side_encryption_configuration.actions_west", + "mode": "managed", + "type": "aws_s3_bucket_server_side_encryption_configuration", + "name": "actions_west", + "provider_name": "registry.terraform.io/hashicorp/aws", + "change": { + "actions": [ + "no-op" + ], + "before": { + "bucket": "csvd-dev-ew-github-actions", + "expected_bucket_owner": "", + "id": "csvd-dev-ew-github-actions", + "rule": [ + { + "apply_server_side_encryption_by_default": [ + { + "kms_master_key_id": "arn:aws-us-gov:kms:us-gov-west-1:229685449397:key/77f3d319-2557-494c-b0c6-1c453048574c", + "sse_algorithm": "aws:kms" + } + ], + "bucket_key_enabled": false + } + ] + }, + "after": { + "bucket": "csvd-dev-ew-github-actions", + "expected_bucket_owner": "", + "id": "csvd-dev-ew-github-actions", + "rule": [ + { + "apply_server_side_encryption_by_default": [ + { + "kms_master_key_id": "arn:aws-us-gov:kms:us-gov-west-1:229685449397:key/77f3d319-2557-494c-b0c6-1c453048574c", + "sse_algorithm": "aws:kms" + } + ], + "bucket_key_enabled": false + } + ] + }, + "after_unknown": {}, + "before_sensitive": { + "rule": [ + { + "apply_server_side_encryption_by_default": [ + {} + ] + } + ] + }, + "after_sensitive": { + "rule": [ + { + "apply_server_side_encryption_by_default": [ + {} + ] + } + ] + } + } + }, + { + "address": "aws_s3_bucket_versioning.actions_east", + "mode": "managed", + "type": "aws_s3_bucket_versioning", + "name": "actions_east", + "provider_name": "registry.terraform.io/hashicorp/aws", + "change": { + "actions": [ + "no-op" + ], + "before": { + "bucket": "csvd-dev-ew-github-actions-east", + "expected_bucket_owner": "", + "id": "csvd-dev-ew-github-actions-east", + "mfa": null, + "versioning_configuration": [ + { + "mfa_delete": "", + "status": "Enabled" + } + ] + }, + "after": { + "bucket": "csvd-dev-ew-github-actions-east", + "expected_bucket_owner": "", + "id": "csvd-dev-ew-github-actions-east", + "mfa": null, + "versioning_configuration": [ + { + "mfa_delete": "", + "status": "Enabled" + } + ] + }, + "after_unknown": {}, + "before_sensitive": { + "versioning_configuration": [ + {} + ] + }, + "after_sensitive": { + "versioning_configuration": [ + {} + ] + } + } + }, + { + "address": "aws_s3_bucket_versioning.actions_west", + "mode": "managed", + "type": "aws_s3_bucket_versioning", + "name": "actions_west", + "provider_name": "registry.terraform.io/hashicorp/aws", + "change": { + "actions": [ + "no-op" + ], + "before": { + "bucket": "csvd-dev-ew-github-actions", + "expected_bucket_owner": "", + "id": "csvd-dev-ew-github-actions", + "mfa": null, + "versioning_configuration": [ + { + "mfa_delete": "", + "status": "Enabled" + } + ] + }, + "after": { + "bucket": "csvd-dev-ew-github-actions", + "expected_bucket_owner": "", + "id": "csvd-dev-ew-github-actions", + "mfa": null, + "versioning_configuration": [ + { + "mfa_delete": "", + "status": "Enabled" + } + ] + }, + "after_unknown": {}, + "before_sensitive": { + "versioning_configuration": [ + {} + ] + }, + "after_sensitive": { + "versioning_configuration": [ + {} + ] + } + } + }, + { + "address": "github_team.terraform_reviewers", + "mode": "managed", + "type": "github_team", + "name": "terraform_reviewers", + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "no-op" + ], + "before": { + "create_default_maintainer": false, + "description": "Reviewers for changes in Terraform", + "etag": "W/\"92d40c4de6a8d46afab018001de2c625bf0374b9def688e638a839e63b8267a7\"", + "id": "737", + "ldap_dn": "", + "members_count": 3, + "name": "terraform-reviewers", + "node_id": "MDQ6VGVhbTczNw==", + "parent_team_id": "", + "parent_team_read_id": "", + "parent_team_read_slug": "", + "privacy": "closed", + "slug": "terraform-reviewers" + }, + "after": { + "create_default_maintainer": false, + "description": "Reviewers for changes in Terraform", + "etag": "W/\"92d40c4de6a8d46afab018001de2c625bf0374b9def688e638a839e63b8267a7\"", + "id": "737", + "ldap_dn": "", + "members_count": 3, + "name": "terraform-reviewers", + "node_id": "MDQ6VGVhbTczNw==", + "parent_team_id": "", + "parent_team_read_id": "", + "parent_team_read_slug": "", + "privacy": "closed", + "slug": "terraform-reviewers" + }, + "after_unknown": {}, + "before_sensitive": {}, + "after_sensitive": {} + } + }, + { + "address": "github_team_members.terraform_reviewer_members", + "mode": "managed", + "type": "github_team_members", + "name": "terraform_reviewer_members", + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "update" + ], + "before": { + "id": "737", + "members": [ + { + "role": "maintainer", + "username": "gomez385" + }, + { + "role": "maintainer", + "username": "morga471" + }, + { + "role": "member", + "username": "naray007" + } + ], + "team_id": "737" + }, + "after": { + "id": "737", + "members": [ + { + "role": "member", + "username": "gomez385" + }, + { + "role": "member", + "username": "morga471" + }, + { + "role": "member", + "username": "naray007" + } + ], + "team_id": "737" + }, + "after_unknown": {}, + "before_sensitive": { + "members": [ + {}, + {}, + {} + ] + }, + "after_sensitive": { + "members": [ + {}, + {}, + {} + ] + } + } + }, + { + "address": "module.imported_repos[\"netbackup-automation-platform\"].local_file.script", + "module_address": "module.imported_repos[\"netbackup-automation-platform\"]", + "mode": "managed", + "type": "local_file", + "name": "script", + "provider_name": "registry.terraform.io/hashicorp/local", + "change": { + "actions": [ + "create" + ], + "before": null, + "after": { + "content_base64": null, + "directory_permission": "0777", + "file_permission": "0777", + "filename": ".terraform/modules/imported_repos/import.sh", + "sensitive_content": null, + "source": null + }, + "after_unknown": { + "content": true, + "content_base64sha256": true, + "content_base64sha512": true, + "content_md5": true, + "content_sha1": true, + "content_sha256": true, + "content_sha512": true, + "id": true + }, + "before_sensitive": false, + "after_sensitive": { + "sensitive_content": true + } + } + }, + { + "address": "module.imported_repos[\"netbackup-automation-platform\"].null_resource.git_import", + "module_address": "module.imported_repos[\"netbackup-automation-platform\"]", + "mode": "managed", + "type": "null_resource", + "name": "git_import", + "provider_name": "registry.terraform.io/hashicorp/null", + "change": { + "actions": [ + "create" + ], + "before": null, + "after": { + "triggers": null + }, + "after_unknown": { + "id": true + }, + "before_sensitive": false, + "after_sensitive": {} + } + }, + { + "address": "module.repo_list[\"Github-Actions-Project\"].github_repository.repo", + "module_address": "module.repo_list[\"Github-Actions-Project\"]", + "mode": "managed", + "type": "github_repository", + "name": "repo", + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "no-op" + ], + "before": { + "allow_auto_merge": false, + "allow_merge_commit": false, + "allow_rebase_merge": false, + "allow_squash_merge": true, + "allow_update_branch": false, + "archive_on_destroy": true, + "archived": false, + "auto_init": true, + "default_branch": "main", + "delete_branch_on_merge": true, + "description": "Tracking all repos and documentation for Github Actions", + "etag": "W/\"14853b941bc18e5f4e906893027f62ba7d10550834f28ef6cdd1f765ab79c163\"", + "full_name": "CSVD/Github-Actions-Project", + "git_clone_url": "git://github.e.it.census.gov/CSVD/Github-Actions-Project.git", + "gitignore_template": "", + "has_discussions": false, + "has_downloads": false, + "has_issues": true, + "has_projects": true, + "has_wiki": true, + "homepage_url": "", + "html_url": "https://github.e.it.census.gov/CSVD/Github-Actions-Project", + "http_clone_url": "https://github.e.it.census.gov/CSVD/Github-Actions-Project.git", + "id": "Github-Actions-Project", + "ignore_vulnerability_alerts_during_read": null, + "is_template": false, + "license_template": null, + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "name": "Github-Actions-Project", + "node_id": "MDEwOlJlcG9zaXRvcnkxMTE5", + "pages": [], + "primary_language": "HCL", + "private": false, + "repo_id": 1119, + "security_and_analysis": [ + { + "advanced_security": [ + { + "status": "disabled" + } + ], + "secret_scanning": [ + { + "status": "disabled" + } + ], + "secret_scanning_push_protection": [ + { + "status": "disabled" + } + ] + } + ], + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "ssh_clone_url": "git@github.e.it.census.gov:CSVD/Github-Actions-Project.git", + "svn_url": "https://github.e.it.census.gov/CSVD/Github-Actions-Project", + "template": [], + "topics": [ + "github-actions", + "terraform-tools" + ], + "visibility": "public", + "vulnerability_alerts": false, + "web_commit_signoff_required": false + }, + "after": { + "allow_auto_merge": false, + "allow_merge_commit": false, + "allow_rebase_merge": false, + "allow_squash_merge": true, + "allow_update_branch": false, + "archive_on_destroy": true, + "archived": false, + "auto_init": true, + "default_branch": "main", + "delete_branch_on_merge": true, + "description": "Tracking all repos and documentation for Github Actions", + "etag": "W/\"14853b941bc18e5f4e906893027f62ba7d10550834f28ef6cdd1f765ab79c163\"", + "full_name": "CSVD/Github-Actions-Project", + "git_clone_url": "git://github.e.it.census.gov/CSVD/Github-Actions-Project.git", + "gitignore_template": "", + "has_discussions": false, + "has_downloads": false, + "has_issues": true, + "has_projects": true, + "has_wiki": true, + "homepage_url": "", + "html_url": "https://github.e.it.census.gov/CSVD/Github-Actions-Project", + "http_clone_url": "https://github.e.it.census.gov/CSVD/Github-Actions-Project.git", + "id": "Github-Actions-Project", + "ignore_vulnerability_alerts_during_read": null, + "is_template": false, + "license_template": null, + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "name": "Github-Actions-Project", + "node_id": "MDEwOlJlcG9zaXRvcnkxMTE5", + "pages": [], + "primary_language": "HCL", + "private": false, + "repo_id": 1119, + "security_and_analysis": [ + { + "advanced_security": [ + { + "status": "disabled" + } + ], + "secret_scanning": [ + { + "status": "disabled" + } + ], + "secret_scanning_push_protection": [ + { + "status": "disabled" + } + ] + } + ], + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "ssh_clone_url": "git@github.e.it.census.gov:CSVD/Github-Actions-Project.git", + "svn_url": "https://github.e.it.census.gov/CSVD/Github-Actions-Project", + "template": [], + "topics": [ + "github-actions", + "terraform-tools" + ], + "visibility": "public", + "vulnerability_alerts": false, + "web_commit_signoff_required": false + }, + "after_unknown": {}, + "before_sensitive": { + "pages": [], + "security_and_analysis": [ + { + "advanced_security": [ + {} + ], + "secret_scanning": [ + {} + ], + "secret_scanning_push_protection": [ + {} + ] + } + ], + "template": [], + "topics": [ + false, + false + ] + }, + "after_sensitive": { + "pages": [], + "security_and_analysis": [ + { + "advanced_security": [ + {} + ], + "secret_scanning": [ + {} + ], + "secret_scanning_push_protection": [ + {} + ] + } + ], + "template": [], + "topics": [ + false, + false + ] + } + } + }, + { + "address": "module.repo_list[\"Github-Actions-Project\"].github_repository_collaborator.collaborators[\"gomez385\"]", + "module_address": "module.repo_list[\"Github-Actions-Project\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "gomez385", + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "no-op" + ], + "before": { + "id": "Github-Actions-Project:gomez385", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "Github-Actions-Project", + "username": "gomez385" + }, + "after": { + "id": "Github-Actions-Project:gomez385", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "Github-Actions-Project", + "username": "gomez385" + }, + "after_unknown": {}, + "before_sensitive": {}, + "after_sensitive": {} + } + }, + { + "address": "module.repo_list[\"Github-Actions-Project\"].github_repository_collaborator.collaborators[\"morga471\"]", + "module_address": "module.repo_list[\"Github-Actions-Project\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "morga471", + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "no-op" + ], + "before": { + "id": "Github-Actions-Project:morga471", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "Github-Actions-Project", + "username": "morga471" + }, + "after": { + "id": "Github-Actions-Project:morga471", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "Github-Actions-Project", + "username": "morga471" + }, + "after_unknown": {}, + "before_sensitive": {}, + "after_sensitive": {} + } + }, + { + "address": "module.repo_list[\"Github-Actions-Project\"].github_repository_collaborator.collaborators[\"naray007\"]", + "module_address": "module.repo_list[\"Github-Actions-Project\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "naray007", + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "no-op" + ], + "before": { + "id": "Github-Actions-Project:naray007", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "Github-Actions-Project", + "username": "naray007" + }, + "after": { + "id": "Github-Actions-Project:naray007", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "Github-Actions-Project", + "username": "naray007" + }, + "after_unknown": {}, + "before_sensitive": {}, + "after_sensitive": {} + } + }, + { + "address": "module.repo_list[\"automation-repos\"].github_repository.repo", + "previous_address": "module.automation-repos.github_repository.repo", + "module_address": "module.repo_list[\"automation-repos\"]", + "mode": "managed", + "type": "github_repository", + "name": "repo", + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "update" + ], + "before": { + "allow_auto_merge": false, + "allow_merge_commit": false, + "allow_rebase_merge": false, + "allow_squash_merge": true, + "allow_update_branch": false, + "archive_on_destroy": true, + "archived": false, + "auto_init": true, + "default_branch": "main", + "delete_branch_on_merge": true, + "description": "Automation Repos for Morpheus POC", + "etag": "W/\"e8c602ba8a63231bed3200439a518b4793d56c45c286dd6b5cbf8bb4157aa059\"", + "full_name": "CSVD/automation-repos", + "git_clone_url": "git://github.e.it.census.gov/CSVD/automation-repos.git", + "gitignore_template": "", + "has_discussions": false, + "has_downloads": false, + "has_issues": true, + "has_projects": true, + "has_wiki": true, + "homepage_url": "", + "html_url": "https://github.e.it.census.gov/CSVD/automation-repos", + "http_clone_url": "https://github.e.it.census.gov/CSVD/automation-repos.git", + "id": "automation-repos", + "ignore_vulnerability_alerts_during_read": null, + "is_template": false, + "license_template": null, + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "name": "automation-repos", + "node_id": "MDEwOlJlcG9zaXRvcnk5ODE=", + "pages": [], + "primary_language": "HCL", + "private": true, + "repo_id": 981, + "security_and_analysis": [ + { + "advanced_security": [ + { + "status": "disabled" + } + ], + "secret_scanning": [ + { + "status": "disabled" + } + ], + "secret_scanning_push_protection": [ + { + "status": "disabled" + } + ] + } + ], + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "ssh_clone_url": "git@github.e.it.census.gov:CSVD/automation-repos.git", + "svn_url": "https://github.e.it.census.gov/CSVD/automation-repos", + "template": [], + "topics": [ + "terraform" + ], + "visibility": "private", + "vulnerability_alerts": false, + "web_commit_signoff_required": false + }, + "after": { + "allow_auto_merge": false, + "allow_merge_commit": false, + "allow_rebase_merge": false, + "allow_squash_merge": true, + "allow_update_branch": false, + "archive_on_destroy": true, + "archived": false, + "auto_init": true, + "default_branch": "main", + "delete_branch_on_merge": true, + "description": "Automation Repos for Morpheus POC", + "etag": "W/\"e8c602ba8a63231bed3200439a518b4793d56c45c286dd6b5cbf8bb4157aa059\"", + "full_name": "CSVD/automation-repos", + "git_clone_url": "git://github.e.it.census.gov/CSVD/automation-repos.git", + "gitignore_template": "", + "has_discussions": false, + "has_downloads": false, + "has_issues": true, + "has_projects": true, + "has_wiki": true, + "homepage_url": "", + "html_url": "https://github.e.it.census.gov/CSVD/automation-repos", + "http_clone_url": "https://github.e.it.census.gov/CSVD/automation-repos.git", + "id": "automation-repos", + "ignore_vulnerability_alerts_during_read": null, + "is_template": false, + "license_template": null, + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "name": "automation-repos", + "node_id": "MDEwOlJlcG9zaXRvcnk5ODE=", + "pages": [], + "primary_language": "HCL", + "private": true, + "repo_id": 981, + "security_and_analysis": [ + { + "advanced_security": [ + { + "status": "disabled" + } + ], + "secret_scanning": [ + { + "status": "disabled" + } + ], + "secret_scanning_push_protection": [ + { + "status": "disabled" + } + ] + } + ], + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "ssh_clone_url": "git@github.e.it.census.gov:CSVD/automation-repos.git", + "svn_url": "https://github.e.it.census.gov/CSVD/automation-repos", + "template": [], + "topics": [ + "terraform" + ], + "visibility": "public", + "vulnerability_alerts": false, + "web_commit_signoff_required": false + }, + "after_unknown": {}, + "before_sensitive": { + "pages": [], + "security_and_analysis": [ + { + "advanced_security": [ + {} + ], + "secret_scanning": [ + {} + ], + "secret_scanning_push_protection": [ + {} + ] + } + ], + "template": [], + "topics": [ + false + ] + }, + "after_sensitive": { + "pages": [], + "security_and_analysis": [ + { + "advanced_security": [ + {} + ], + "secret_scanning": [ + {} + ], + "secret_scanning_push_protection": [ + {} + ] + } + ], + "template": [], + "topics": [ + false + ] + } + } + }, + { + "address": "module.repo_list[\"automation-repos\"].github_repository_collaborator.collaborators[\"gomez385\"]", + "previous_address": "module.automation-repos.github_repository_collaborator.collaborators[\"gomez385\"]", + "module_address": "module.repo_list[\"automation-repos\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "gomez385", + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "no-op" + ], + "before": { + "id": "automation-repos:gomez385", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "automation-repos", + "username": "gomez385" + }, + "after": { + "id": "automation-repos:gomez385", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "automation-repos", + "username": "gomez385" + }, + "after_unknown": {}, + "before_sensitive": {}, + "after_sensitive": {} + } + }, + { + "address": "module.repo_list[\"automation-repos\"].github_repository_collaborator.collaborators[\"morga471\"]", + "previous_address": "module.automation-repos.github_repository_collaborator.collaborators[\"morga471\"]", + "module_address": "module.repo_list[\"automation-repos\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "morga471", + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "no-op" + ], + "before": { + "id": "automation-repos:morga471", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "automation-repos", + "username": "morga471" + }, + "after": { + "id": "automation-repos:morga471", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "automation-repos", + "username": "morga471" + }, + "after_unknown": {}, + "before_sensitive": {}, + "after_sensitive": {} + } + }, + { + "address": "module.repo_list[\"automation-repos\"].github_repository_collaborator.collaborators[\"naray007\"]", + "previous_address": "module.automation-repos.github_repository_collaborator.collaborators[\"naray007\"]", + "module_address": "module.repo_list[\"automation-repos\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "naray007", + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "no-op" + ], + "before": { + "id": "automation-repos:naray007", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "automation-repos", + "username": "naray007" + }, + "after": { + "id": "automation-repos:naray007", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "automation-repos", + "username": "naray007" + }, + "after_unknown": {}, + "before_sensitive": {}, + "after_sensitive": {} + } + }, + { + "address": "module.repo_list[\"aws-beanstalk\"].github_repository.repo", + "previous_address": "module.elastic_beanstalk.github_repository.repo", + "module_address": "module.repo_list[\"aws-beanstalk\"]", + "mode": "managed", + "type": "github_repository", + "name": "repo", + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "update" + ], + "before": { + "allow_auto_merge": false, + "allow_merge_commit": false, + "allow_rebase_merge": false, + "allow_squash_merge": true, + "allow_update_branch": false, + "archive_on_destroy": true, + "archived": false, + "auto_init": true, + "default_branch": "main", + "delete_branch_on_merge": true, + "description": "Terraform Workspace for creating Elastic Beanstalk Apps and Environments", + "etag": "W/\"8ac441e7848382c8552d4b8a0cd5205491bce4eca1f8e7d56d5e699cbdce8442\"", + "full_name": "CSVD/aws-beanstalk", + "git_clone_url": "git://github.e.it.census.gov/CSVD/aws-beanstalk.git", + "gitignore_template": "", + "has_discussions": false, + "has_downloads": false, + "has_issues": true, + "has_projects": true, + "has_wiki": true, + "homepage_url": "", + "html_url": "https://github.e.it.census.gov/CSVD/aws-beanstalk", + "http_clone_url": "https://github.e.it.census.gov/CSVD/aws-beanstalk.git", + "id": "aws-beanstalk", + "ignore_vulnerability_alerts_during_read": null, + "is_template": true, + "license_template": null, + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "name": "aws-beanstalk", + "node_id": "MDEwOlJlcG9zaXRvcnk5MjU=", + "pages": [], + "primary_language": "HCL", + "private": true, + "repo_id": 925, + "security_and_analysis": [ + { + "advanced_security": [ + { + "status": "disabled" + } + ], + "secret_scanning": [ + { + "status": "disabled" + } + ], + "secret_scanning_push_protection": [ + { + "status": "disabled" + } + ] + } + ], + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "ssh_clone_url": "git@github.e.it.census.gov:CSVD/aws-beanstalk.git", + "svn_url": "https://github.e.it.census.gov/CSVD/aws-beanstalk", + "template": [], + "topics": [ + "terraform" + ], + "visibility": "private", + "vulnerability_alerts": false, + "web_commit_signoff_required": false + }, + "after": { + "allow_auto_merge": false, + "allow_merge_commit": false, + "allow_rebase_merge": false, + "allow_squash_merge": true, + "allow_update_branch": false, + "archive_on_destroy": true, + "archived": false, + "auto_init": true, + "default_branch": "main", + "delete_branch_on_merge": true, + "description": "Terraform Workspace for creating Elastic Beanstalk Apps and Environments", + "etag": "W/\"8ac441e7848382c8552d4b8a0cd5205491bce4eca1f8e7d56d5e699cbdce8442\"", + "full_name": "CSVD/aws-beanstalk", + "git_clone_url": "git://github.e.it.census.gov/CSVD/aws-beanstalk.git", + "gitignore_template": "", + "has_discussions": false, + "has_downloads": false, + "has_issues": true, + "has_projects": true, + "has_wiki": true, + "homepage_url": "", + "html_url": "https://github.e.it.census.gov/CSVD/aws-beanstalk", + "http_clone_url": "https://github.e.it.census.gov/CSVD/aws-beanstalk.git", + "id": "aws-beanstalk", + "ignore_vulnerability_alerts_during_read": null, + "is_template": true, + "license_template": null, + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "name": "aws-beanstalk", + "node_id": "MDEwOlJlcG9zaXRvcnk5MjU=", + "pages": [], + "primary_language": "HCL", + "private": true, + "repo_id": 925, + "security_and_analysis": [ + { + "advanced_security": [ + { + "status": "disabled" + } + ], + "secret_scanning": [ + { + "status": "disabled" + } + ], + "secret_scanning_push_protection": [ + { + "status": "disabled" + } + ] + } + ], + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "ssh_clone_url": "git@github.e.it.census.gov:CSVD/aws-beanstalk.git", + "svn_url": "https://github.e.it.census.gov/CSVD/aws-beanstalk", + "template": [], + "topics": [ + "terraform" + ], + "visibility": "public", + "vulnerability_alerts": false, + "web_commit_signoff_required": false + }, + "after_unknown": {}, + "before_sensitive": { + "pages": [], + "security_and_analysis": [ + { + "advanced_security": [ + {} + ], + "secret_scanning": [ + {} + ], + "secret_scanning_push_protection": [ + {} + ] + } + ], + "template": [], + "topics": [ + false + ] + }, + "after_sensitive": { + "pages": [], + "security_and_analysis": [ + { + "advanced_security": [ + {} + ], + "secret_scanning": [ + {} + ], + "secret_scanning_push_protection": [ + {} + ] + } + ], + "template": [], + "topics": [ + false + ] + } + } + }, + { + "address": "module.repo_list[\"aws-beanstalk\"].github_repository_collaborator.collaborators[\"gomez385\"]", + "previous_address": "module.elastic_beanstalk.github_repository_collaborator.collaborators[\"gomez385\"]", + "module_address": "module.repo_list[\"aws-beanstalk\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "gomez385", + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "no-op" + ], + "before": { + "id": "aws-beanstalk:gomez385", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "aws-beanstalk", + "username": "gomez385" + }, + "after": { + "id": "aws-beanstalk:gomez385", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "aws-beanstalk", + "username": "gomez385" + }, + "after_unknown": {}, + "before_sensitive": {}, + "after_sensitive": {} + } + }, + { + "address": "module.repo_list[\"aws-beanstalk\"].github_repository_collaborator.collaborators[\"morga471\"]", + "previous_address": "module.elastic_beanstalk.github_repository_collaborator.collaborators[\"morga471\"]", + "module_address": "module.repo_list[\"aws-beanstalk\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "morga471", + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "no-op" + ], + "before": { + "id": "aws-beanstalk:morga471", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "aws-beanstalk", + "username": "morga471" + }, + "after": { + "id": "aws-beanstalk:morga471", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "aws-beanstalk", + "username": "morga471" + }, + "after_unknown": {}, + "before_sensitive": {}, + "after_sensitive": {} + } + }, + { + "address": "module.repo_list[\"aws-beanstalk\"].github_repository_collaborator.collaborators[\"naray007\"]", + "previous_address": "module.elastic_beanstalk.github_repository_collaborator.collaborators[\"naray007\"]", + "module_address": "module.repo_list[\"aws-beanstalk\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "naray007", + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "no-op" + ], + "before": { + "id": "aws-beanstalk:naray007", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "aws-beanstalk", + "username": "naray007" + }, + "after": { + "id": "aws-beanstalk:naray007", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "aws-beanstalk", + "username": "naray007" + }, + "after_unknown": {}, + "before_sensitive": {}, + "after_sensitive": {} + } + }, + { + "address": "module.repo_list[\"aws-beanstalk-docker\"].github_repository.repo", + "previous_address": "module.elastic_beanstalk_docker.github_repository.repo", + "module_address": "module.repo_list[\"aws-beanstalk-docker\"]", + "mode": "managed", + "type": "github_repository", + "name": "repo", + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "update" + ], + "before": { + "allow_auto_merge": false, + "allow_merge_commit": false, + "allow_rebase_merge": false, + "allow_squash_merge": true, + "allow_update_branch": false, + "archive_on_destroy": true, + "archived": false, + "auto_init": true, + "default_branch": "main", + "delete_branch_on_merge": true, + "description": "Terraform Workspace for creating Elastic Beanstalk Apps and Environments", + "etag": "W/\"8fc9f715cca851ec50f80ee04d3528bc284c142cd26c7353f5b28fba10cee0ea\"", + "full_name": "CSVD/aws-beanstalk-docker", + "git_clone_url": "git://github.e.it.census.gov/CSVD/aws-beanstalk-docker.git", + "gitignore_template": "", + "has_discussions": false, + "has_downloads": false, + "has_issues": true, + "has_projects": true, + "has_wiki": true, + "homepage_url": "", + "html_url": "https://github.e.it.census.gov/CSVD/aws-beanstalk-docker", + "http_clone_url": "https://github.e.it.census.gov/CSVD/aws-beanstalk-docker.git", + "id": "aws-beanstalk-docker", + "ignore_vulnerability_alerts_during_read": null, + "is_template": true, + "license_template": null, + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "name": "aws-beanstalk-docker", + "node_id": "MDEwOlJlcG9zaXRvcnk5NDA=", + "pages": [], + "primary_language": "HCL", + "private": true, + "repo_id": 940, + "security_and_analysis": [ + { + "advanced_security": [ + { + "status": "disabled" + } + ], + "secret_scanning": [ + { + "status": "disabled" + } + ], + "secret_scanning_push_protection": [ + { + "status": "disabled" + } + ] + } + ], + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "ssh_clone_url": "git@github.e.it.census.gov:CSVD/aws-beanstalk-docker.git", + "svn_url": "https://github.e.it.census.gov/CSVD/aws-beanstalk-docker", + "template": [ + { + "include_all_branches": false, + "owner": "CSVD", + "repository": "aws-beanstalk" + } + ], + "topics": [ + "terraform" + ], + "visibility": "private", + "vulnerability_alerts": false, + "web_commit_signoff_required": false + }, + "after": { + "allow_auto_merge": false, + "allow_merge_commit": false, + "allow_rebase_merge": false, + "allow_squash_merge": true, + "allow_update_branch": false, + "archive_on_destroy": true, + "archived": false, + "auto_init": true, + "default_branch": "main", + "delete_branch_on_merge": true, + "description": "Terraform Workspace for creating Elastic Beanstalk Apps and Environments", + "etag": "W/\"8fc9f715cca851ec50f80ee04d3528bc284c142cd26c7353f5b28fba10cee0ea\"", + "full_name": "CSVD/aws-beanstalk-docker", + "git_clone_url": "git://github.e.it.census.gov/CSVD/aws-beanstalk-docker.git", + "gitignore_template": "", + "has_discussions": false, + "has_downloads": false, + "has_issues": true, + "has_projects": true, + "has_wiki": true, + "homepage_url": "", + "html_url": "https://github.e.it.census.gov/CSVD/aws-beanstalk-docker", + "http_clone_url": "https://github.e.it.census.gov/CSVD/aws-beanstalk-docker.git", + "id": "aws-beanstalk-docker", + "ignore_vulnerability_alerts_during_read": null, + "is_template": true, + "license_template": null, + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "name": "aws-beanstalk-docker", + "node_id": "MDEwOlJlcG9zaXRvcnk5NDA=", + "pages": [], + "primary_language": "HCL", + "private": true, + "repo_id": 940, + "security_and_analysis": [ + { + "advanced_security": [ + { + "status": "disabled" + } + ], + "secret_scanning": [ + { + "status": "disabled" + } + ], + "secret_scanning_push_protection": [ + { + "status": "disabled" + } + ] + } + ], + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "ssh_clone_url": "git@github.e.it.census.gov:CSVD/aws-beanstalk-docker.git", + "svn_url": "https://github.e.it.census.gov/CSVD/aws-beanstalk-docker", + "template": [], + "topics": [ + "terraform" + ], + "visibility": "public", + "vulnerability_alerts": false, + "web_commit_signoff_required": false + }, + "after_unknown": {}, + "before_sensitive": { + "pages": [], + "security_and_analysis": [ + { + "advanced_security": [ + {} + ], + "secret_scanning": [ + {} + ], + "secret_scanning_push_protection": [ + {} + ] + } + ], + "template": [ + {} + ], + "topics": [ + false + ] + }, + "after_sensitive": { + "pages": [], + "security_and_analysis": [ + { + "advanced_security": [ + {} + ], + "secret_scanning": [ + {} + ], + "secret_scanning_push_protection": [ + {} + ] + } + ], + "template": [], + "topics": [ + false + ] + } + } + }, + { + "address": "module.repo_list[\"aws-beanstalk-docker\"].github_repository_collaborator.collaborators[\"gomez385\"]", + "previous_address": "module.elastic_beanstalk_docker.github_repository_collaborator.collaborators[\"gomez385\"]", + "module_address": "module.repo_list[\"aws-beanstalk-docker\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "gomez385", + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "no-op" + ], + "before": { + "id": "aws-beanstalk-docker:gomez385", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "aws-beanstalk-docker", + "username": "gomez385" + }, + "after": { + "id": "aws-beanstalk-docker:gomez385", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "aws-beanstalk-docker", + "username": "gomez385" + }, + "after_unknown": {}, + "before_sensitive": {}, + "after_sensitive": {} + } + }, + { + "address": "module.repo_list[\"aws-beanstalk-docker\"].github_repository_collaborator.collaborators[\"morga471\"]", + "previous_address": "module.elastic_beanstalk_docker.github_repository_collaborator.collaborators[\"morga471\"]", + "module_address": "module.repo_list[\"aws-beanstalk-docker\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "morga471", + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "no-op" + ], + "before": { + "id": "aws-beanstalk-docker:morga471", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "aws-beanstalk-docker", + "username": "morga471" + }, + "after": { + "id": "aws-beanstalk-docker:morga471", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "aws-beanstalk-docker", + "username": "morga471" + }, + "after_unknown": {}, + "before_sensitive": {}, + "after_sensitive": {} + } + }, + { + "address": "module.repo_list[\"aws-beanstalk-docker\"].github_repository_collaborator.collaborators[\"naray007\"]", + "previous_address": "module.elastic_beanstalk_docker.github_repository_collaborator.collaborators[\"naray007\"]", + "module_address": "module.repo_list[\"aws-beanstalk-docker\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "naray007", + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "no-op" + ], + "before": { + "id": "aws-beanstalk-docker:naray007", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "aws-beanstalk-docker", + "username": "naray007" + }, + "after": { + "id": "aws-beanstalk-docker:naray007", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "aws-beanstalk-docker", + "username": "naray007" + }, + "after_unknown": {}, + "before_sensitive": {}, + "after_sensitive": {} + } + }, + { + "address": "module.repo_list[\"aws-beanstalk-docker\"].github_repository_file.extra_files[\".TEMPLATE_SHA\"]", + "previous_address": "module.elastic_beanstalk_docker.github_repository_file.extra_files[\".TEMPLATE_SHA\"]", + "module_address": "module.repo_list[\"aws-beanstalk-docker\"]", + "mode": "managed", + "type": "github_repository_file", + "name": "extra_files", + "index": ".TEMPLATE_SHA", + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "delete" + ], + "before": { + "autocreate_branch": false, + "autocreate_branch_source_branch": "main", + "autocreate_branch_source_sha": null, + "branch": "main", + "commit_author": null, + "commit_email": null, + "commit_message": "Add .TEMPLATE_SHA", + "commit_sha": "000ae23da24c029c3e9f4c3bbdbeb115e6d3af2d", + "content": "6073244fcae31ce1bab13a48119e8cc1054dd1cc", + "file": ".TEMPLATE_SHA", + "id": "aws-beanstalk-docker/.TEMPLATE_SHA", + "overwrite_on_create": true, + "ref": "main", + "repository": "aws-beanstalk-docker", + "sha": "a0a3e7c51948abeba3176af69e00f5f0d6fe86bd" + }, + "after": null, + "after_unknown": {}, + "before_sensitive": {}, + "after_sensitive": false + }, + "action_reason": "delete_because_each_key" + }, + { + "address": "module.repo_list[\"aws-beanstalk-java\"].github_repository.repo", + "previous_address": "module.elastic_beanstalk_java.github_repository.repo", + "module_address": "module.repo_list[\"aws-beanstalk-java\"]", + "mode": "managed", + "type": "github_repository", + "name": "repo", + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "update" + ], + "before": { + "allow_auto_merge": false, + "allow_merge_commit": false, + "allow_rebase_merge": false, + "allow_squash_merge": true, + "allow_update_branch": false, + "archive_on_destroy": true, + "archived": false, + "auto_init": true, + "default_branch": "main", + "delete_branch_on_merge": true, + "description": "Terraform Workspace for creating Elastic Beanstalk Apps and Environments", + "etag": "W/\"b18162d467b84021d3fd5fca42e7b33329083f64bcb3d85f595c9ad83c7f3160\"", + "full_name": "CSVD/aws-beanstalk-java", + "git_clone_url": "git://github.e.it.census.gov/CSVD/aws-beanstalk-java.git", + "gitignore_template": "", + "has_discussions": false, + "has_downloads": false, + "has_issues": true, + "has_projects": true, + "has_wiki": true, + "homepage_url": "", + "html_url": "https://github.e.it.census.gov/CSVD/aws-beanstalk-java", + "http_clone_url": "https://github.e.it.census.gov/CSVD/aws-beanstalk-java.git", + "id": "aws-beanstalk-java", + "ignore_vulnerability_alerts_during_read": null, + "is_template": true, + "license_template": null, + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "name": "aws-beanstalk-java", + "node_id": "MDEwOlJlcG9zaXRvcnk5Mzg=", + "pages": [], + "primary_language": "Python", + "private": true, + "repo_id": 938, + "security_and_analysis": [ + { + "advanced_security": [ + { + "status": "disabled" + } + ], + "secret_scanning": [ + { + "status": "disabled" + } + ], + "secret_scanning_push_protection": [ + { + "status": "disabled" + } + ] + } + ], + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "ssh_clone_url": "git@github.e.it.census.gov:CSVD/aws-beanstalk-java.git", + "svn_url": "https://github.e.it.census.gov/CSVD/aws-beanstalk-java", + "template": [ + { + "include_all_branches": false, + "owner": "CSVD", + "repository": "aws-beanstalk" + } + ], + "topics": [ + "terraform" + ], + "visibility": "private", + "vulnerability_alerts": false, + "web_commit_signoff_required": false + }, + "after": { + "allow_auto_merge": false, + "allow_merge_commit": false, + "allow_rebase_merge": false, + "allow_squash_merge": true, + "allow_update_branch": false, + "archive_on_destroy": true, + "archived": false, + "auto_init": true, + "default_branch": "main", + "delete_branch_on_merge": true, + "description": "Terraform Workspace for creating Elastic Beanstalk Apps and Environments", + "etag": "W/\"b18162d467b84021d3fd5fca42e7b33329083f64bcb3d85f595c9ad83c7f3160\"", + "full_name": "CSVD/aws-beanstalk-java", + "git_clone_url": "git://github.e.it.census.gov/CSVD/aws-beanstalk-java.git", + "gitignore_template": "", + "has_discussions": false, + "has_downloads": false, + "has_issues": true, + "has_projects": true, + "has_wiki": true, + "homepage_url": "", + "html_url": "https://github.e.it.census.gov/CSVD/aws-beanstalk-java", + "http_clone_url": "https://github.e.it.census.gov/CSVD/aws-beanstalk-java.git", + "id": "aws-beanstalk-java", + "ignore_vulnerability_alerts_during_read": null, + "is_template": true, + "license_template": null, + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "name": "aws-beanstalk-java", + "node_id": "MDEwOlJlcG9zaXRvcnk5Mzg=", + "pages": [], + "primary_language": "Python", + "private": true, + "repo_id": 938, + "security_and_analysis": [ + { + "advanced_security": [ + { + "status": "disabled" + } + ], + "secret_scanning": [ + { + "status": "disabled" + } + ], + "secret_scanning_push_protection": [ + { + "status": "disabled" + } + ] + } + ], + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "ssh_clone_url": "git@github.e.it.census.gov:CSVD/aws-beanstalk-java.git", + "svn_url": "https://github.e.it.census.gov/CSVD/aws-beanstalk-java", + "template": [], + "topics": [ + "terraform" + ], + "visibility": "public", + "vulnerability_alerts": false, + "web_commit_signoff_required": false + }, + "after_unknown": {}, + "before_sensitive": { + "pages": [], + "security_and_analysis": [ + { + "advanced_security": [ + {} + ], + "secret_scanning": [ + {} + ], + "secret_scanning_push_protection": [ + {} + ] + } + ], + "template": [ + {} + ], + "topics": [ + false + ] + }, + "after_sensitive": { + "pages": [], + "security_and_analysis": [ + { + "advanced_security": [ + {} + ], + "secret_scanning": [ + {} + ], + "secret_scanning_push_protection": [ + {} + ] + } + ], + "template": [], + "topics": [ + false + ] + } + } + }, + { + "address": "module.repo_list[\"aws-beanstalk-java\"].github_repository_collaborator.collaborators[\"gomez385\"]", + "previous_address": "module.elastic_beanstalk_java.github_repository_collaborator.collaborators[\"gomez385\"]", + "module_address": "module.repo_list[\"aws-beanstalk-java\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "gomez385", + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "no-op" + ], + "before": { + "id": "aws-beanstalk-java:gomez385", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "aws-beanstalk-java", + "username": "gomez385" + }, + "after": { + "id": "aws-beanstalk-java:gomez385", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "aws-beanstalk-java", + "username": "gomez385" + }, + "after_unknown": {}, + "before_sensitive": {}, + "after_sensitive": {} + } + }, + { + "address": "module.repo_list[\"aws-beanstalk-java\"].github_repository_collaborator.collaborators[\"morga471\"]", + "previous_address": "module.elastic_beanstalk_java.github_repository_collaborator.collaborators[\"morga471\"]", + "module_address": "module.repo_list[\"aws-beanstalk-java\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "morga471", + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "no-op" + ], + "before": { + "id": "aws-beanstalk-java:morga471", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "aws-beanstalk-java", + "username": "morga471" + }, + "after": { + "id": "aws-beanstalk-java:morga471", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "aws-beanstalk-java", + "username": "morga471" + }, + "after_unknown": {}, + "before_sensitive": {}, + "after_sensitive": {} + } + }, + { + "address": "module.repo_list[\"aws-beanstalk-java\"].github_repository_collaborator.collaborators[\"naray007\"]", + "previous_address": "module.elastic_beanstalk_java.github_repository_collaborator.collaborators[\"naray007\"]", + "module_address": "module.repo_list[\"aws-beanstalk-java\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "naray007", + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "no-op" + ], + "before": { + "id": "aws-beanstalk-java:naray007", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "aws-beanstalk-java", + "username": "naray007" + }, + "after": { + "id": "aws-beanstalk-java:naray007", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "aws-beanstalk-java", + "username": "naray007" + }, + "after_unknown": {}, + "before_sensitive": {}, + "after_sensitive": {} + } + }, + { + "address": "module.repo_list[\"aws-beanstalk-java\"].github_repository_file.extra_files[\".TEMPLATE_SHA\"]", + "previous_address": "module.elastic_beanstalk_java.github_repository_file.extra_files[\".TEMPLATE_SHA\"]", + "module_address": "module.repo_list[\"aws-beanstalk-java\"]", + "mode": "managed", + "type": "github_repository_file", + "name": "extra_files", + "index": ".TEMPLATE_SHA", + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "delete" + ], + "before": { + "autocreate_branch": false, + "autocreate_branch_source_branch": "main", + "autocreate_branch_source_sha": null, + "branch": "main", + "commit_author": null, + "commit_email": null, + "commit_message": "Add .TEMPLATE_SHA", + "commit_sha": "e6c49a76171963551fc922cc50d7e1abcd1bf7b6", + "content": "6073244fcae31ce1bab13a48119e8cc1054dd1cc", + "file": ".TEMPLATE_SHA", + "id": "aws-beanstalk-java/.TEMPLATE_SHA", + "overwrite_on_create": true, + "ref": "main", + "repository": "aws-beanstalk-java", + "sha": "a0a3e7c51948abeba3176af69e00f5f0d6fe86bd" + }, + "after": null, + "after_unknown": {}, + "before_sensitive": {}, + "after_sensitive": false + }, + "action_reason": "delete_because_each_key" + }, + { + "address": "module.repo_list[\"aws-beanstalk-nodejs\"].github_repository.repo", + "previous_address": "module.elastic_beanstalk_nodejs.github_repository.repo", + "module_address": "module.repo_list[\"aws-beanstalk-nodejs\"]", + "mode": "managed", + "type": "github_repository", + "name": "repo", + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "update" + ], + "before": { + "allow_auto_merge": false, + "allow_merge_commit": false, + "allow_rebase_merge": false, + "allow_squash_merge": true, + "allow_update_branch": false, + "archive_on_destroy": true, + "archived": false, + "auto_init": true, + "default_branch": "main", + "delete_branch_on_merge": true, + "description": "Terraform Workspace for creating Elastic Beanstalk Apps and Environments", + "etag": "W/\"7cdc2bc273e5df0b4780256a67b50186759e79ca2e4d78609d6c6d5aef888c5f\"", + "full_name": "CSVD/aws-beanstalk-nodejs", + "git_clone_url": "git://github.e.it.census.gov/CSVD/aws-beanstalk-nodejs.git", + "gitignore_template": "", + "has_discussions": false, + "has_downloads": false, + "has_issues": true, + "has_projects": true, + "has_wiki": true, + "homepage_url": "", + "html_url": "https://github.e.it.census.gov/CSVD/aws-beanstalk-nodejs", + "http_clone_url": "https://github.e.it.census.gov/CSVD/aws-beanstalk-nodejs.git", + "id": "aws-beanstalk-nodejs", + "ignore_vulnerability_alerts_during_read": null, + "is_template": true, + "license_template": null, + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "name": "aws-beanstalk-nodejs", + "node_id": "MDEwOlJlcG9zaXRvcnk5NDc=", + "pages": [], + "primary_language": "HCL", + "private": true, + "repo_id": 947, + "security_and_analysis": [ + { + "advanced_security": [ + { + "status": "disabled" + } + ], + "secret_scanning": [ + { + "status": "disabled" + } + ], + "secret_scanning_push_protection": [ + { + "status": "disabled" + } + ] + } + ], + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "ssh_clone_url": "git@github.e.it.census.gov:CSVD/aws-beanstalk-nodejs.git", + "svn_url": "https://github.e.it.census.gov/CSVD/aws-beanstalk-nodejs", + "template": [ + { + "include_all_branches": false, + "owner": "CSVD", + "repository": "aws-beanstalk" + } + ], + "topics": [ + "terraform" + ], + "visibility": "private", + "vulnerability_alerts": false, + "web_commit_signoff_required": false + }, + "after": { + "allow_auto_merge": false, + "allow_merge_commit": false, + "allow_rebase_merge": false, + "allow_squash_merge": true, + "allow_update_branch": false, + "archive_on_destroy": true, + "archived": false, + "auto_init": true, + "default_branch": "main", + "delete_branch_on_merge": true, + "description": "Terraform Workspace for creating Elastic Beanstalk Apps and Environments", + "etag": "W/\"7cdc2bc273e5df0b4780256a67b50186759e79ca2e4d78609d6c6d5aef888c5f\"", + "full_name": "CSVD/aws-beanstalk-nodejs", + "git_clone_url": "git://github.e.it.census.gov/CSVD/aws-beanstalk-nodejs.git", + "gitignore_template": "", + "has_discussions": false, + "has_downloads": false, + "has_issues": true, + "has_projects": true, + "has_wiki": true, + "homepage_url": "", + "html_url": "https://github.e.it.census.gov/CSVD/aws-beanstalk-nodejs", + "http_clone_url": "https://github.e.it.census.gov/CSVD/aws-beanstalk-nodejs.git", + "id": "aws-beanstalk-nodejs", + "ignore_vulnerability_alerts_during_read": null, + "is_template": true, + "license_template": null, + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "name": "aws-beanstalk-nodejs", + "node_id": "MDEwOlJlcG9zaXRvcnk5NDc=", + "pages": [], + "primary_language": "HCL", + "private": true, + "repo_id": 947, + "security_and_analysis": [ + { + "advanced_security": [ + { + "status": "disabled" + } + ], + "secret_scanning": [ + { + "status": "disabled" + } + ], + "secret_scanning_push_protection": [ + { + "status": "disabled" + } + ] + } + ], + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "ssh_clone_url": "git@github.e.it.census.gov:CSVD/aws-beanstalk-nodejs.git", + "svn_url": "https://github.e.it.census.gov/CSVD/aws-beanstalk-nodejs", + "template": [], + "topics": [ + "terraform" + ], + "visibility": "public", + "vulnerability_alerts": false, + "web_commit_signoff_required": false + }, + "after_unknown": {}, + "before_sensitive": { + "pages": [], + "security_and_analysis": [ + { + "advanced_security": [ + {} + ], + "secret_scanning": [ + {} + ], + "secret_scanning_push_protection": [ + {} + ] + } + ], + "template": [ + {} + ], + "topics": [ + false + ] + }, + "after_sensitive": { + "pages": [], + "security_and_analysis": [ + { + "advanced_security": [ + {} + ], + "secret_scanning": [ + {} + ], + "secret_scanning_push_protection": [ + {} + ] + } + ], + "template": [], + "topics": [ + false + ] + } + } + }, + { + "address": "module.repo_list[\"aws-beanstalk-nodejs\"].github_repository_collaborator.collaborators[\"gomez385\"]", + "previous_address": "module.elastic_beanstalk_nodejs.github_repository_collaborator.collaborators[\"gomez385\"]", + "module_address": "module.repo_list[\"aws-beanstalk-nodejs\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "gomez385", + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "no-op" + ], + "before": { + "id": "aws-beanstalk-nodejs:gomez385", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "aws-beanstalk-nodejs", + "username": "gomez385" + }, + "after": { + "id": "aws-beanstalk-nodejs:gomez385", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "aws-beanstalk-nodejs", + "username": "gomez385" + }, + "after_unknown": {}, + "before_sensitive": {}, + "after_sensitive": {} + } + }, + { + "address": "module.repo_list[\"aws-beanstalk-nodejs\"].github_repository_collaborator.collaborators[\"morga471\"]", + "previous_address": "module.elastic_beanstalk_nodejs.github_repository_collaborator.collaborators[\"morga471\"]", + "module_address": "module.repo_list[\"aws-beanstalk-nodejs\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "morga471", + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "no-op" + ], + "before": { + "id": "aws-beanstalk-nodejs:morga471", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "aws-beanstalk-nodejs", + "username": "morga471" + }, + "after": { + "id": "aws-beanstalk-nodejs:morga471", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "aws-beanstalk-nodejs", + "username": "morga471" + }, + "after_unknown": {}, + "before_sensitive": {}, + "after_sensitive": {} + } + }, + { + "address": "module.repo_list[\"aws-beanstalk-nodejs\"].github_repository_collaborator.collaborators[\"naray007\"]", + "previous_address": "module.elastic_beanstalk_nodejs.github_repository_collaborator.collaborators[\"naray007\"]", + "module_address": "module.repo_list[\"aws-beanstalk-nodejs\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "naray007", + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "no-op" + ], + "before": { + "id": "aws-beanstalk-nodejs:naray007", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "aws-beanstalk-nodejs", + "username": "naray007" + }, + "after": { + "id": "aws-beanstalk-nodejs:naray007", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "aws-beanstalk-nodejs", + "username": "naray007" + }, + "after_unknown": {}, + "before_sensitive": {}, + "after_sensitive": {} + } + }, + { + "address": "module.repo_list[\"aws-beanstalk-nodejs\"].github_repository_file.extra_files[\".TEMPLATE_SHA\"]", + "previous_address": "module.elastic_beanstalk_nodejs.github_repository_file.extra_files[\".TEMPLATE_SHA\"]", + "module_address": "module.repo_list[\"aws-beanstalk-nodejs\"]", + "mode": "managed", + "type": "github_repository_file", + "name": "extra_files", + "index": ".TEMPLATE_SHA", + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "delete" + ], + "before": { + "autocreate_branch": false, + "autocreate_branch_source_branch": "main", + "autocreate_branch_source_sha": null, + "branch": "main", + "commit_author": null, + "commit_email": null, + "commit_message": "Add .TEMPLATE_SHA", + "commit_sha": "aca83a9d09583cdd1958867fc871aa3f037b0e5a", + "content": "6073244fcae31ce1bab13a48119e8cc1054dd1cc", + "file": ".TEMPLATE_SHA", + "id": "aws-beanstalk-nodejs/.TEMPLATE_SHA", + "overwrite_on_create": true, + "ref": "main", + "repository": "aws-beanstalk-nodejs", + "sha": "a0a3e7c51948abeba3176af69e00f5f0d6fe86bd" + }, + "after": null, + "after_unknown": {}, + "before_sensitive": {}, + "after_sensitive": false + }, + "action_reason": "delete_because_each_key" + }, + { + "address": "module.repo_list[\"aws-beanstalk-php\"].github_repository.repo", + "previous_address": "module.elastic_beanstalk_php.github_repository.repo", + "module_address": "module.repo_list[\"aws-beanstalk-php\"]", + "mode": "managed", + "type": "github_repository", + "name": "repo", + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "update" + ], + "before": { + "allow_auto_merge": false, + "allow_merge_commit": false, + "allow_rebase_merge": false, + "allow_squash_merge": true, + "allow_update_branch": false, + "archive_on_destroy": true, + "archived": false, + "auto_init": true, + "default_branch": "main", + "delete_branch_on_merge": true, + "description": "Terraform Workspace for creating Elastic Beanstalk Apps and Environments", + "etag": "W/\"0b94bea58d6ae35c2c9bf27b64294eac11480e949685d284c7433ed5cc6989f4\"", + "full_name": "CSVD/aws-beanstalk-php", + "git_clone_url": "git://github.e.it.census.gov/CSVD/aws-beanstalk-php.git", + "gitignore_template": "", + "has_discussions": false, + "has_downloads": false, + "has_issues": true, + "has_projects": true, + "has_wiki": true, + "homepage_url": "", + "html_url": "https://github.e.it.census.gov/CSVD/aws-beanstalk-php", + "http_clone_url": "https://github.e.it.census.gov/CSVD/aws-beanstalk-php.git", + "id": "aws-beanstalk-php", + "ignore_vulnerability_alerts_during_read": null, + "is_template": true, + "license_template": null, + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "name": "aws-beanstalk-php", + "node_id": "MDEwOlJlcG9zaXRvcnk5NTg=", + "pages": [], + "primary_language": "HCL", + "private": true, + "repo_id": 958, + "security_and_analysis": [ + { + "advanced_security": [ + { + "status": "disabled" + } + ], + "secret_scanning": [ + { + "status": "disabled" + } + ], + "secret_scanning_push_protection": [ + { + "status": "disabled" + } + ] + } + ], + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "ssh_clone_url": "git@github.e.it.census.gov:CSVD/aws-beanstalk-php.git", + "svn_url": "https://github.e.it.census.gov/CSVD/aws-beanstalk-php", + "template": [ + { + "include_all_branches": false, + "owner": "CSVD", + "repository": "aws-beanstalk" + } + ], + "topics": [ + "terraform" + ], + "visibility": "private", + "vulnerability_alerts": false, + "web_commit_signoff_required": false + }, + "after": { + "allow_auto_merge": false, + "allow_merge_commit": false, + "allow_rebase_merge": false, + "allow_squash_merge": true, + "allow_update_branch": false, + "archive_on_destroy": true, + "archived": false, + "auto_init": true, + "default_branch": "main", + "delete_branch_on_merge": true, + "description": "Terraform Workspace for creating Elastic Beanstalk Apps and Environments", + "etag": "W/\"0b94bea58d6ae35c2c9bf27b64294eac11480e949685d284c7433ed5cc6989f4\"", + "full_name": "CSVD/aws-beanstalk-php", + "git_clone_url": "git://github.e.it.census.gov/CSVD/aws-beanstalk-php.git", + "gitignore_template": "", + "has_discussions": false, + "has_downloads": false, + "has_issues": true, + "has_projects": true, + "has_wiki": true, + "homepage_url": "", + "html_url": "https://github.e.it.census.gov/CSVD/aws-beanstalk-php", + "http_clone_url": "https://github.e.it.census.gov/CSVD/aws-beanstalk-php.git", + "id": "aws-beanstalk-php", + "ignore_vulnerability_alerts_during_read": null, + "is_template": true, + "license_template": null, + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "name": "aws-beanstalk-php", + "node_id": "MDEwOlJlcG9zaXRvcnk5NTg=", + "pages": [], + "primary_language": "HCL", + "private": true, + "repo_id": 958, + "security_and_analysis": [ + { + "advanced_security": [ + { + "status": "disabled" + } + ], + "secret_scanning": [ + { + "status": "disabled" + } + ], + "secret_scanning_push_protection": [ + { + "status": "disabled" + } + ] + } + ], + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "ssh_clone_url": "git@github.e.it.census.gov:CSVD/aws-beanstalk-php.git", + "svn_url": "https://github.e.it.census.gov/CSVD/aws-beanstalk-php", + "template": [], + "topics": [ + "terraform" + ], + "visibility": "public", + "vulnerability_alerts": false, + "web_commit_signoff_required": false + }, + "after_unknown": {}, + "before_sensitive": { + "pages": [], + "security_and_analysis": [ + { + "advanced_security": [ + {} + ], + "secret_scanning": [ + {} + ], + "secret_scanning_push_protection": [ + {} + ] + } + ], + "template": [ + {} + ], + "topics": [ + false + ] + }, + "after_sensitive": { + "pages": [], + "security_and_analysis": [ + { + "advanced_security": [ + {} + ], + "secret_scanning": [ + {} + ], + "secret_scanning_push_protection": [ + {} + ] + } + ], + "template": [], + "topics": [ + false + ] + } + } + }, + { + "address": "module.repo_list[\"aws-beanstalk-php\"].github_repository_collaborator.collaborators[\"gomez385\"]", + "previous_address": "module.elastic_beanstalk_php.github_repository_collaborator.collaborators[\"gomez385\"]", + "module_address": "module.repo_list[\"aws-beanstalk-php\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "gomez385", + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "no-op" + ], + "before": { + "id": "aws-beanstalk-php:gomez385", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "aws-beanstalk-php", + "username": "gomez385" + }, + "after": { + "id": "aws-beanstalk-php:gomez385", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "aws-beanstalk-php", + "username": "gomez385" + }, + "after_unknown": {}, + "before_sensitive": {}, + "after_sensitive": {} + } + }, + { + "address": "module.repo_list[\"aws-beanstalk-php\"].github_repository_collaborator.collaborators[\"morga471\"]", + "previous_address": "module.elastic_beanstalk_php.github_repository_collaborator.collaborators[\"morga471\"]", + "module_address": "module.repo_list[\"aws-beanstalk-php\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "morga471", + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "no-op" + ], + "before": { + "id": "aws-beanstalk-php:morga471", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "aws-beanstalk-php", + "username": "morga471" + }, + "after": { + "id": "aws-beanstalk-php:morga471", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "aws-beanstalk-php", + "username": "morga471" + }, + "after_unknown": {}, + "before_sensitive": {}, + "after_sensitive": {} + } + }, + { + "address": "module.repo_list[\"aws-beanstalk-php\"].github_repository_collaborator.collaborators[\"naray007\"]", + "previous_address": "module.elastic_beanstalk_php.github_repository_collaborator.collaborators[\"naray007\"]", + "module_address": "module.repo_list[\"aws-beanstalk-php\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "naray007", + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "no-op" + ], + "before": { + "id": "aws-beanstalk-php:naray007", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "aws-beanstalk-php", + "username": "naray007" + }, + "after": { + "id": "aws-beanstalk-php:naray007", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "aws-beanstalk-php", + "username": "naray007" + }, + "after_unknown": {}, + "before_sensitive": {}, + "after_sensitive": {} + } + }, + { + "address": "module.repo_list[\"aws-beanstalk-php\"].github_repository_file.extra_files[\".TEMPLATE_SHA\"]", + "previous_address": "module.elastic_beanstalk_php.github_repository_file.extra_files[\".TEMPLATE_SHA\"]", + "module_address": "module.repo_list[\"aws-beanstalk-php\"]", + "mode": "managed", + "type": "github_repository_file", + "name": "extra_files", + "index": ".TEMPLATE_SHA", + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "delete" + ], + "before": { + "autocreate_branch": false, + "autocreate_branch_source_branch": "main", + "autocreate_branch_source_sha": null, + "branch": "main", + "commit_author": null, + "commit_email": null, + "commit_message": "Add .TEMPLATE_SHA", + "commit_sha": "c1495bda72665be16ddc910173b69ec6128f437e", + "content": "6073244fcae31ce1bab13a48119e8cc1054dd1cc", + "file": ".TEMPLATE_SHA", + "id": "aws-beanstalk-php/.TEMPLATE_SHA", + "overwrite_on_create": true, + "ref": "main", + "repository": "aws-beanstalk-php", + "sha": "a0a3e7c51948abeba3176af69e00f5f0d6fe86bd" + }, + "after": null, + "after_unknown": {}, + "before_sensitive": {}, + "after_sensitive": false + }, + "action_reason": "delete_because_each_key" + }, + { + "address": "module.repo_list[\"aws-copilot-demo\"].github_repository.repo", + "module_address": "module.repo_list[\"aws-copilot-demo\"]", + "mode": "managed", + "type": "github_repository", + "name": "repo", + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "no-op" + ], + "before": { + "allow_auto_merge": false, + "allow_merge_commit": false, + "allow_rebase_merge": false, + "allow_squash_merge": true, + "allow_update_branch": false, + "archive_on_destroy": true, + "archived": false, + "auto_init": true, + "default_branch": "main", + "delete_branch_on_merge": true, + "description": "AWS Copilot Demo", + "etag": "W/\"024c0bb47fa2fe355d730fbd87091d26b27cd111c8f451cd5424288f743b1bb9\"", + "full_name": "CSVD/aws-copilot-demo", + "git_clone_url": "git://github.e.it.census.gov/CSVD/aws-copilot-demo.git", + "gitignore_template": null, + "has_discussions": false, + "has_downloads": false, + "has_issues": true, + "has_projects": true, + "has_wiki": true, + "homepage_url": "", + "html_url": "https://github.e.it.census.gov/CSVD/aws-copilot-demo", + "http_clone_url": "https://github.e.it.census.gov/CSVD/aws-copilot-demo.git", + "id": "aws-copilot-demo", + "ignore_vulnerability_alerts_during_read": null, + "is_template": false, + "license_template": null, + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "name": "aws-copilot-demo", + "node_id": "MDEwOlJlcG9zaXRvcnkxMjM0", + "pages": [], + "primary_language": "HCL", + "private": false, + "repo_id": 1234, + "security_and_analysis": [ + { + "advanced_security": [ + { + "status": "disabled" + } + ], + "secret_scanning": [ + { + "status": "disabled" + } + ], + "secret_scanning_push_protection": [ + { + "status": "disabled" + } + ] + } + ], + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "ssh_clone_url": "git@github.e.it.census.gov:CSVD/aws-copilot-demo.git", + "svn_url": "https://github.e.it.census.gov/CSVD/aws-copilot-demo", + "template": [], + "topics": [ + "aws-cdk", + "aws-copilot" + ], + "visibility": "public", + "vulnerability_alerts": false, + "web_commit_signoff_required": false + }, + "after": { + "allow_auto_merge": false, + "allow_merge_commit": false, + "allow_rebase_merge": false, + "allow_squash_merge": true, + "allow_update_branch": false, + "archive_on_destroy": true, + "archived": false, + "auto_init": true, + "default_branch": "main", + "delete_branch_on_merge": true, + "description": "AWS Copilot Demo", + "etag": "W/\"024c0bb47fa2fe355d730fbd87091d26b27cd111c8f451cd5424288f743b1bb9\"", + "full_name": "CSVD/aws-copilot-demo", + "git_clone_url": "git://github.e.it.census.gov/CSVD/aws-copilot-demo.git", + "gitignore_template": null, + "has_discussions": false, + "has_downloads": false, + "has_issues": true, + "has_projects": true, + "has_wiki": true, + "homepage_url": "", + "html_url": "https://github.e.it.census.gov/CSVD/aws-copilot-demo", + "http_clone_url": "https://github.e.it.census.gov/CSVD/aws-copilot-demo.git", + "id": "aws-copilot-demo", + "ignore_vulnerability_alerts_during_read": null, + "is_template": false, + "license_template": null, + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "name": "aws-copilot-demo", + "node_id": "MDEwOlJlcG9zaXRvcnkxMjM0", + "pages": [], + "primary_language": "HCL", + "private": false, + "repo_id": 1234, + "security_and_analysis": [ + { + "advanced_security": [ + { + "status": "disabled" + } + ], + "secret_scanning": [ + { + "status": "disabled" + } + ], + "secret_scanning_push_protection": [ + { + "status": "disabled" + } + ] + } + ], + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "ssh_clone_url": "git@github.e.it.census.gov:CSVD/aws-copilot-demo.git", + "svn_url": "https://github.e.it.census.gov/CSVD/aws-copilot-demo", + "template": [], + "topics": [ + "aws-cdk", + "aws-copilot" + ], + "visibility": "public", + "vulnerability_alerts": false, + "web_commit_signoff_required": false + }, + "after_unknown": {}, + "before_sensitive": { + "pages": [], + "security_and_analysis": [ + { + "advanced_security": [ + {} + ], + "secret_scanning": [ + {} + ], + "secret_scanning_push_protection": [ + {} + ] + } + ], + "template": [], + "topics": [ + false, + false + ] + }, + "after_sensitive": { + "pages": [], + "security_and_analysis": [ + { + "advanced_security": [ + {} + ], + "secret_scanning": [ + {} + ], + "secret_scanning_push_protection": [ + {} + ] + } + ], + "template": [], + "topics": [ + false, + false + ] + } + } + }, + { + "address": "module.repo_list[\"aws-copilot-demo\"].github_repository_collaborator.collaborators[\"gomez385\"]", + "module_address": "module.repo_list[\"aws-copilot-demo\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "gomez385", + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "no-op" + ], + "before": { + "id": "aws-copilot-demo:gomez385", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "aws-copilot-demo", + "username": "gomez385" + }, + "after": { + "id": "aws-copilot-demo:gomez385", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "aws-copilot-demo", + "username": "gomez385" + }, + "after_unknown": {}, + "before_sensitive": {}, + "after_sensitive": {} + } + }, + { + "address": "module.repo_list[\"aws-copilot-demo\"].github_repository_collaborator.collaborators[\"morga471\"]", + "module_address": "module.repo_list[\"aws-copilot-demo\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "morga471", + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "no-op" + ], + "before": { + "id": "aws-copilot-demo:morga471", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "aws-copilot-demo", + "username": "morga471" + }, + "after": { + "id": "aws-copilot-demo:morga471", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "aws-copilot-demo", + "username": "morga471" + }, + "after_unknown": {}, + "before_sensitive": {}, + "after_sensitive": {} + } + }, + { + "address": "module.repo_list[\"aws-copilot-demo\"].github_repository_collaborator.collaborators[\"naray007\"]", + "module_address": "module.repo_list[\"aws-copilot-demo\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "naray007", + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "no-op" + ], + "before": { + "id": "aws-copilot-demo:naray007", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "aws-copilot-demo", + "username": "naray007" + }, + "after": { + "id": "aws-copilot-demo:naray007", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "aws-copilot-demo", + "username": "naray007" + }, + "after_unknown": {}, + "before_sensitive": {}, + "after_sensitive": {} + } + }, + { + "address": "module.repo_list[\"aws-image-pipeline\"].github_repository.repo", + "previous_address": "module.aws_image_pipeline.github_repository.repo", + "module_address": "module.repo_list[\"aws-image-pipeline\"]", + "mode": "managed", + "type": "github_repository", + "name": "repo", + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "update" + ], + "before": { + "allow_auto_merge": false, + "allow_merge_commit": false, + "allow_rebase_merge": false, + "allow_squash_merge": true, + "allow_update_branch": false, + "archive_on_destroy": true, + "archived": false, + "auto_init": true, + "default_branch": "main", + "delete_branch_on_merge": true, + "description": "Terraform Workspace for creating and managing AWS Image Pipelines", + "etag": "W/\"cd754c8e3915a94f0bae3e8cbf23fd834f5db9171a3862e691f7c82aa679d48d\"", + "full_name": "CSVD/aws-image-pipeline", + "git_clone_url": "git://github.e.it.census.gov/CSVD/aws-image-pipeline.git", + "gitignore_template": "", + "has_discussions": false, + "has_downloads": false, + "has_issues": true, + "has_projects": true, + "has_wiki": true, + "homepage_url": "", + "html_url": "https://github.e.it.census.gov/CSVD/aws-image-pipeline", + "http_clone_url": "https://github.e.it.census.gov/CSVD/aws-image-pipeline.git", + "id": "aws-image-pipeline", + "ignore_vulnerability_alerts_during_read": null, + "is_template": true, + "license_template": null, + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "name": "aws-image-pipeline", + "node_id": "MDEwOlJlcG9zaXRvcnk5MjY=", + "pages": [], + "primary_language": "Python", + "private": true, + "repo_id": 926, + "security_and_analysis": [ + { + "advanced_security": [ + { + "status": "disabled" + } + ], + "secret_scanning": [ + { + "status": "disabled" + } + ], + "secret_scanning_push_protection": [ + { + "status": "disabled" + } + ] + } + ], + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "ssh_clone_url": "git@github.e.it.census.gov:CSVD/aws-image-pipeline.git", + "svn_url": "https://github.e.it.census.gov/CSVD/aws-image-pipeline", + "template": [], + "topics": [ + "terraform" + ], + "visibility": "private", + "vulnerability_alerts": false, + "web_commit_signoff_required": false + }, + "after": { + "allow_auto_merge": false, + "allow_merge_commit": false, + "allow_rebase_merge": false, + "allow_squash_merge": true, + "allow_update_branch": false, + "archive_on_destroy": true, + "archived": false, + "auto_init": true, + "default_branch": "main", + "delete_branch_on_merge": true, + "description": "Terraform Workspace for creating and managing AWS Image Pipelines", + "etag": "W/\"cd754c8e3915a94f0bae3e8cbf23fd834f5db9171a3862e691f7c82aa679d48d\"", + "full_name": "CSVD/aws-image-pipeline", + "git_clone_url": "git://github.e.it.census.gov/CSVD/aws-image-pipeline.git", + "gitignore_template": "", + "has_discussions": false, + "has_downloads": false, + "has_issues": true, + "has_projects": true, + "has_wiki": true, + "homepage_url": "", + "html_url": "https://github.e.it.census.gov/CSVD/aws-image-pipeline", + "http_clone_url": "https://github.e.it.census.gov/CSVD/aws-image-pipeline.git", + "id": "aws-image-pipeline", + "ignore_vulnerability_alerts_during_read": null, + "is_template": true, + "license_template": null, + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "name": "aws-image-pipeline", + "node_id": "MDEwOlJlcG9zaXRvcnk5MjY=", + "pages": [], + "primary_language": "Python", + "private": true, + "repo_id": 926, + "security_and_analysis": [ + { + "advanced_security": [ + { + "status": "disabled" + } + ], + "secret_scanning": [ + { + "status": "disabled" + } + ], + "secret_scanning_push_protection": [ + { + "status": "disabled" + } + ] + } + ], + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "ssh_clone_url": "git@github.e.it.census.gov:CSVD/aws-image-pipeline.git", + "svn_url": "https://github.e.it.census.gov/CSVD/aws-image-pipeline", + "template": [], + "topics": [ + "terraform" + ], + "visibility": "public", + "vulnerability_alerts": false, + "web_commit_signoff_required": false + }, + "after_unknown": {}, + "before_sensitive": { + "pages": [], + "security_and_analysis": [ + { + "advanced_security": [ + {} + ], + "secret_scanning": [ + {} + ], + "secret_scanning_push_protection": [ + {} + ] + } + ], + "template": [], + "topics": [ + false + ] + }, + "after_sensitive": { + "pages": [], + "security_and_analysis": [ + { + "advanced_security": [ + {} + ], + "secret_scanning": [ + {} + ], + "secret_scanning_push_protection": [ + {} + ] + } + ], + "template": [], + "topics": [ + false + ] + } + } + }, + { + "address": "module.repo_list[\"aws-image-pipeline\"].github_repository_collaborator.collaborators[\"gomez385\"]", + "previous_address": "module.aws_image_pipeline.github_repository_collaborator.collaborators[\"gomez385\"]", + "module_address": "module.repo_list[\"aws-image-pipeline\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "gomez385", + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "no-op" + ], + "before": { + "id": "aws-image-pipeline:gomez385", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "aws-image-pipeline", + "username": "gomez385" + }, + "after": { + "id": "aws-image-pipeline:gomez385", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "aws-image-pipeline", + "username": "gomez385" + }, + "after_unknown": {}, + "before_sensitive": {}, + "after_sensitive": {} + } + }, + { + "address": "module.repo_list[\"aws-image-pipeline\"].github_repository_collaborator.collaborators[\"morga471\"]", + "previous_address": "module.aws_image_pipeline.github_repository_collaborator.collaborators[\"morga471\"]", + "module_address": "module.repo_list[\"aws-image-pipeline\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "morga471", + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "no-op" + ], + "before": { + "id": "aws-image-pipeline:morga471", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "aws-image-pipeline", + "username": "morga471" + }, + "after": { + "id": "aws-image-pipeline:morga471", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "aws-image-pipeline", + "username": "morga471" + }, + "after_unknown": {}, + "before_sensitive": {}, + "after_sensitive": {} + } + }, + { + "address": "module.repo_list[\"aws-image-pipeline\"].github_repository_collaborator.collaborators[\"naray007\"]", + "previous_address": "module.aws_image_pipeline.github_repository_collaborator.collaborators[\"naray007\"]", + "module_address": "module.repo_list[\"aws-image-pipeline\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "naray007", + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "no-op" + ], + "before": { + "id": "aws-image-pipeline:naray007", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "aws-image-pipeline", + "username": "naray007" + }, + "after": { + "id": "aws-image-pipeline:naray007", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "aws-image-pipeline", + "username": "naray007" + }, + "after_unknown": {}, + "before_sensitive": {}, + "after_sensitive": {} + } + }, + { + "address": "module.repo_list[\"aws-image-pipeline\"].github_repository_file.managed_extra_files[\"terraform-apply.yaml\"]", + "previous_address": "module.aws_image_pipeline.github_repository_file.managed_extra_files[\"terraform-apply.yaml\"]", + "module_address": "module.repo_list[\"aws-image-pipeline\"]", + "mode": "managed", + "type": "github_repository_file", + "name": "managed_extra_files", + "index": "terraform-apply.yaml", + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "delete" + ], + "before": { + "autocreate_branch": null, + "autocreate_branch_source_branch": null, + "autocreate_branch_source_sha": null, + "branch": "main", + "commit_author": null, + "commit_email": null, + "commit_message": "Add .github/workflows/terraform-apply.yaml", + "commit_sha": "7816440148f083de1d8a24cb8517120466ca7810", + "content": "# This is a basic workflow to help you get started with Actions\nname: Terraform Apply\n\n# Controls when the workflow will run\non:\n # Triggers the workflow on push or pull request events but only for the \"main\" branch\n push:\n branches: [ \"main\" ]\n # Allows you to run this workflow manually from the Actions tab\n workflow_dispatch:\n\n# A workflow run is made up of one or more jobs that can run sequentially or in parallel\njobs:\n # This workflow contains a single job called \"build\"\n build:\n # The type of runner that the job will run on\n runs-on: [ aws-image-pipeline ]\n env:\n AWS_SECRET_ACCESS_KEY: \"${{ secrets.AWS_SECRET_ACCESS_KEY }}\"\n AWS_ACCESS_KEY_ID: \"${{ vars.AWS_ACCESS_KEY_ID }}\"\n AWS_SESSION_TOKEN: \"${{ secrets.AWS_SESSION_TOKEN }}\"\n \n\n # Steps represent a sequence of tasks that will be executed as part of the job\n steps:\n # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it\n - uses: actions/checkout@v3\n\n\n - uses: CSVD/gh-actions-setup-node@v3\n with:\n node-version: 16\n \n - uses: CSVD/gh-actions-setup-terraform@v2\n with:\n terraform_version: ${{ vars.terraform_version }}\n \n - name: Terraform Format\n id: fmt\n \n run: |\n terraform fmt -check\n\n - name: Autoformat Halt\n if: env.auto_format == 'true'\n \n run: exit 1\n\n - name: Terraform Init\n id: init\n \n run: terraform init -upgrade\n\n - name: Terraform Validate\n id: validate\n \n run: terraform validate\n\n - name: Terraform Apply\n id: apply\n \n run: terraform apply -auto-approve\n continue-on-error: true\n", + "file": ".github/workflows/terraform-apply.yaml", + "id": "aws-image-pipeline/.github/workflows/terraform-apply.yaml", + "overwrite_on_create": true, + "ref": "main", + "repository": "aws-image-pipeline", + "sha": "4ce33c8b6f70c5252ab6d47f1acb3f5aadb17073" + }, + "after": null, + "after_unknown": {}, + "before_sensitive": {}, + "after_sensitive": false + }, + "action_reason": "delete_because_each_key" + }, + { + "address": "module.repo_list[\"aws-image-pipeline\"].github_repository_file.managed_extra_files[\"terraform-plan.yaml\"]", + "previous_address": "module.aws_image_pipeline.github_repository_file.managed_extra_files[\"terraform-plan.yaml\"]", + "module_address": "module.repo_list[\"aws-image-pipeline\"]", + "mode": "managed", + "type": "github_repository_file", + "name": "managed_extra_files", + "index": "terraform-plan.yaml", + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "delete" + ], + "before": { + "autocreate_branch": null, + "autocreate_branch_source_branch": null, + "autocreate_branch_source_sha": null, + "branch": "main", + "commit_author": null, + "commit_email": null, + "commit_message": "Add .github/workflows/terraform-plan.yaml", + "commit_sha": "00cc5117b7ad0ae81e7ad0e99475a18a9bd5b226", + "content": "\n# This is a basic workflow to help you get started with Actions\n\nname: Terraform Plan\n\n\n# Controls when the workflow will run\non:\n pull_request:\n\n# A workflow run is made up of one or more jobs that can run sequentially or in parallel\njobs:\n # This workflow contains a single job called \"build\"\n build:\n # The type of runner that the job will run on\n runs-on: [ aws-image-pipeline ]\n env:\n AWS_SECRET_ACCESS_KEY: \"${{ secrets.AWS_SECRET_ACCESS_KEY }}\"\n AWS_ACCESS_KEY_ID: \"${{ vars.AWS_ACCESS_KEY_ID }}\"\n AWS_SESSION_TOKEN: \"${{ secrets.AWS_SESSION_TOKEN }}\"\n \n\n # Steps represent a sequence of tasks that will be executed as part of the job\n steps:\n # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it\n - uses: actions/checkout@v3\n with:\n ref: ${{ github.head_ref }}\n token: ${{ secrets.GH_TOKEN }}\n\n - uses: CSVD/gh-actions-setup-node@v3\n with:\n node-version: 16\n \n - uses: CSVD/gh-actions-setup-terraform@v2\n with:\n terraform_version: ${{ vars.terraform_version }}\n\n - name: Terraform Format\n id: fmt\n run: |\n terraform fmt\n if ! git diff-index --quiet HEAD; then \n git config --global user.name 'arnol377'\n git config --global user.email 'david.j.arnold.jr@census.gov'\n git commit -am \"Autoformatting TF Code\"\n git push\n echo \"auto_format=true\" >> $GITHUB_ENV \n fi\n\n - name: Autoformat Halt\n if: env.auto_format == 'true'\n run: exit 0\n\n - name: Terraform Init\n id: init\n \n run: terraform init -upgrade\n\n - name: Terraform Validate\n id: validate\n \n run: terraform validate\n\n - name: Terraform Plan\n id: plan\n \n run: terraform plan\n continue-on-error: true\n\n - name: Update Pull Request\n uses: CSVD/gh-actions-github-script@v6\n if: github.event_name == 'pull_request'\n with:\n github-token: ${{ secrets.GH_TOKEN }}\n script: |\n const output = `#### Terraform Format and Style 🖌\\`${{ steps.fmt.outcome }}\\`\n #### Terraform Initialization ⚙️\\`${{ steps.init.outcome }}\\`\n #### Terraform Validation 🤖\\`${{ steps.validate.outcome }}\\`\n #### Terraform Plan:\n ${{ steps.plan.outcome }}\n *Pushed by: @${{ github.actor }}, Action: \\`${{ github.event_name }}\\`*`;\n\n github.rest.issues.createComment({\n issue_number: context.issue.number,\n owner: context.repo.owner,\n repo: context.repo.repo,\n body: output\n })\n", + "file": ".github/workflows/terraform-plan.yaml", + "id": "aws-image-pipeline/.github/workflows/terraform-plan.yaml", + "overwrite_on_create": true, + "ref": "main", + "repository": "aws-image-pipeline", + "sha": "1e8768229b88d08d3042a86b4fb8e06ac9215266" + }, + "after": null, + "after_unknown": {}, + "before_sensitive": {}, + "after_sensitive": false + }, + "action_reason": "delete_because_each_key" + }, + { + "address": "module.repo_list[\"aws-image-pipeline-pip-config\"].github_repository.repo", + "module_address": "module.repo_list[\"aws-image-pipeline-pip-config\"]", + "mode": "managed", + "type": "github_repository", + "name": "repo", + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "no-op" + ], + "before": { + "allow_auto_merge": false, + "allow_merge_commit": false, + "allow_rebase_merge": false, + "allow_squash_merge": true, + "allow_update_branch": false, + "archive_on_destroy": true, + "archived": false, + "auto_init": true, + "default_branch": "main", + "delete_branch_on_merge": true, + "description": "Pip Configuration for Image Pipeline", + "etag": "W/\"ef4d347c5e6e8df7481ecbe0e551d1e3bc9640556a90f5300f627b41f58de4e1\"", + "full_name": "CSVD/aws-image-pipeline-pip-config", + "git_clone_url": "git://github.e.it.census.gov/CSVD/aws-image-pipeline-pip-config.git", + "gitignore_template": null, + "has_discussions": false, + "has_downloads": false, + "has_issues": true, + "has_projects": true, + "has_wiki": true, + "homepage_url": "", + "html_url": "https://github.e.it.census.gov/CSVD/aws-image-pipeline-pip-config", + "http_clone_url": "https://github.e.it.census.gov/CSVD/aws-image-pipeline-pip-config.git", + "id": "aws-image-pipeline-pip-config", + "ignore_vulnerability_alerts_during_read": null, + "is_template": true, + "license_template": null, + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "name": "aws-image-pipeline-pip-config", + "node_id": "MDEwOlJlcG9zaXRvcnkxMjY2", + "pages": [], + "primary_language": "", + "private": false, + "repo_id": 1266, + "security_and_analysis": [ + { + "advanced_security": [ + { + "status": "disabled" + } + ], + "secret_scanning": [ + { + "status": "disabled" + } + ], + "secret_scanning_push_protection": [ + { + "status": "disabled" + } + ] + } + ], + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "ssh_clone_url": "git@github.e.it.census.gov:CSVD/aws-image-pipeline-pip-config.git", + "svn_url": "https://github.e.it.census.gov/CSVD/aws-image-pipeline-pip-config", + "template": [], + "topics": [ + "aws-image-pipeline", + "terraform" + ], + "visibility": "public", + "vulnerability_alerts": false, + "web_commit_signoff_required": false + }, + "after": { + "allow_auto_merge": false, + "allow_merge_commit": false, + "allow_rebase_merge": false, + "allow_squash_merge": true, + "allow_update_branch": false, + "archive_on_destroy": true, + "archived": false, + "auto_init": true, + "default_branch": "main", + "delete_branch_on_merge": true, + "description": "Pip Configuration for Image Pipeline", + "etag": "W/\"ef4d347c5e6e8df7481ecbe0e551d1e3bc9640556a90f5300f627b41f58de4e1\"", + "full_name": "CSVD/aws-image-pipeline-pip-config", + "git_clone_url": "git://github.e.it.census.gov/CSVD/aws-image-pipeline-pip-config.git", + "gitignore_template": null, + "has_discussions": false, + "has_downloads": false, + "has_issues": true, + "has_projects": true, + "has_wiki": true, + "homepage_url": "", + "html_url": "https://github.e.it.census.gov/CSVD/aws-image-pipeline-pip-config", + "http_clone_url": "https://github.e.it.census.gov/CSVD/aws-image-pipeline-pip-config.git", + "id": "aws-image-pipeline-pip-config", + "ignore_vulnerability_alerts_during_read": null, + "is_template": true, + "license_template": null, + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "name": "aws-image-pipeline-pip-config", + "node_id": "MDEwOlJlcG9zaXRvcnkxMjY2", + "pages": [], + "primary_language": "", + "private": false, + "repo_id": 1266, + "security_and_analysis": [ + { + "advanced_security": [ + { + "status": "disabled" + } + ], + "secret_scanning": [ + { + "status": "disabled" + } + ], + "secret_scanning_push_protection": [ + { + "status": "disabled" + } + ] + } + ], + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "ssh_clone_url": "git@github.e.it.census.gov:CSVD/aws-image-pipeline-pip-config.git", + "svn_url": "https://github.e.it.census.gov/CSVD/aws-image-pipeline-pip-config", + "template": [], + "topics": [ + "aws-image-pipeline", + "terraform" + ], + "visibility": "public", + "vulnerability_alerts": false, + "web_commit_signoff_required": false + }, + "after_unknown": {}, + "before_sensitive": { + "pages": [], + "security_and_analysis": [ + { + "advanced_security": [ + {} + ], + "secret_scanning": [ + {} + ], + "secret_scanning_push_protection": [ + {} + ] + } + ], + "template": [], + "topics": [ + false, + false + ] + }, + "after_sensitive": { + "pages": [], + "security_and_analysis": [ + { + "advanced_security": [ + {} + ], + "secret_scanning": [ + {} + ], + "secret_scanning_push_protection": [ + {} + ] + } + ], + "template": [], + "topics": [ + false, + false + ] + } + } + }, + { + "address": "module.repo_list[\"aws-image-pipeline-pip-config\"].github_repository_collaborator.collaborators[\"gomez385\"]", + "module_address": "module.repo_list[\"aws-image-pipeline-pip-config\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "gomez385", + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "no-op" + ], + "before": { + "id": "aws-image-pipeline-pip-config:gomez385", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "aws-image-pipeline-pip-config", + "username": "gomez385" + }, + "after": { + "id": "aws-image-pipeline-pip-config:gomez385", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "aws-image-pipeline-pip-config", + "username": "gomez385" + }, + "after_unknown": {}, + "before_sensitive": {}, + "after_sensitive": {} + } + }, + { + "address": "module.repo_list[\"aws-image-pipeline-pip-config\"].github_repository_collaborator.collaborators[\"morga471\"]", + "module_address": "module.repo_list[\"aws-image-pipeline-pip-config\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "morga471", + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "no-op" + ], + "before": { + "id": "aws-image-pipeline-pip-config:morga471", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "aws-image-pipeline-pip-config", + "username": "morga471" + }, + "after": { + "id": "aws-image-pipeline-pip-config:morga471", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "aws-image-pipeline-pip-config", + "username": "morga471" + }, + "after_unknown": {}, + "before_sensitive": {}, + "after_sensitive": {} + } + }, + { + "address": "module.repo_list[\"aws-image-pipeline-pip-config\"].github_repository_collaborator.collaborators[\"naray007\"]", + "module_address": "module.repo_list[\"aws-image-pipeline-pip-config\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "naray007", + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "no-op" + ], + "before": { + "id": "aws-image-pipeline-pip-config:naray007", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "aws-image-pipeline-pip-config", + "username": "naray007" + }, + "after": { + "id": "aws-image-pipeline-pip-config:naray007", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "aws-image-pipeline-pip-config", + "username": "naray007" + }, + "after_unknown": {}, + "before_sensitive": {}, + "after_sensitive": {} + } + }, + { + "address": "module.repo_list[\"aws-secrets\"].github_repository.repo", + "module_address": "module.repo_list[\"aws-secrets\"]", + "mode": "managed", + "type": "github_repository", + "name": "repo", + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "no-op" + ], + "before": { + "allow_auto_merge": false, + "allow_merge_commit": false, + "allow_rebase_merge": false, + "allow_squash_merge": true, + "allow_update_branch": false, + "archive_on_destroy": true, + "archived": false, + "auto_init": true, + "default_branch": "main", + "delete_branch_on_merge": true, + "description": "Managing AWS CSVD Secrets", + "etag": "W/\"90633a005d36910ee92f96ea3a88aed81d1d544360a6a35dab08f638547b2e9c\"", + "full_name": "CSVD/aws-secrets", + "git_clone_url": "git://github.e.it.census.gov/CSVD/aws-secrets.git", + "gitignore_template": "", + "has_discussions": false, + "has_downloads": false, + "has_issues": true, + "has_projects": true, + "has_wiki": true, + "homepage_url": "", + "html_url": "https://github.e.it.census.gov/CSVD/aws-secrets", + "http_clone_url": "https://github.e.it.census.gov/CSVD/aws-secrets.git", + "id": "aws-secrets", + "ignore_vulnerability_alerts_during_read": null, + "is_template": false, + "license_template": null, + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "name": "aws-secrets", + "node_id": "MDEwOlJlcG9zaXRvcnkxMDUy", + "pages": [], + "primary_language": "HCL", + "private": false, + "repo_id": 1052, + "security_and_analysis": [ + { + "advanced_security": [ + { + "status": "disabled" + } + ], + "secret_scanning": [ + { + "status": "disabled" + } + ], + "secret_scanning_push_protection": [ + { + "status": "disabled" + } + ] + } + ], + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "ssh_clone_url": "git@github.e.it.census.gov:CSVD/aws-secrets.git", + "svn_url": "https://github.e.it.census.gov/CSVD/aws-secrets", + "template": [], + "topics": [ + "terraform-tools" + ], + "visibility": "public", + "vulnerability_alerts": false, + "web_commit_signoff_required": false + }, + "after": { + "allow_auto_merge": false, + "allow_merge_commit": false, + "allow_rebase_merge": false, + "allow_squash_merge": true, + "allow_update_branch": false, + "archive_on_destroy": true, + "archived": false, + "auto_init": true, + "default_branch": "main", + "delete_branch_on_merge": true, + "description": "Managing AWS CSVD Secrets", + "etag": "W/\"90633a005d36910ee92f96ea3a88aed81d1d544360a6a35dab08f638547b2e9c\"", + "full_name": "CSVD/aws-secrets", + "git_clone_url": "git://github.e.it.census.gov/CSVD/aws-secrets.git", + "gitignore_template": "", + "has_discussions": false, + "has_downloads": false, + "has_issues": true, + "has_projects": true, + "has_wiki": true, + "homepage_url": "", + "html_url": "https://github.e.it.census.gov/CSVD/aws-secrets", + "http_clone_url": "https://github.e.it.census.gov/CSVD/aws-secrets.git", + "id": "aws-secrets", + "ignore_vulnerability_alerts_during_read": null, + "is_template": false, + "license_template": null, + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "name": "aws-secrets", + "node_id": "MDEwOlJlcG9zaXRvcnkxMDUy", + "pages": [], + "primary_language": "HCL", + "private": false, + "repo_id": 1052, + "security_and_analysis": [ + { + "advanced_security": [ + { + "status": "disabled" + } + ], + "secret_scanning": [ + { + "status": "disabled" + } + ], + "secret_scanning_push_protection": [ + { + "status": "disabled" + } + ] + } + ], + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "ssh_clone_url": "git@github.e.it.census.gov:CSVD/aws-secrets.git", + "svn_url": "https://github.e.it.census.gov/CSVD/aws-secrets", + "template": [], + "topics": [ + "terraform-tools" + ], + "visibility": "public", + "vulnerability_alerts": false, + "web_commit_signoff_required": false + }, + "after_unknown": {}, + "before_sensitive": { + "pages": [], + "security_and_analysis": [ + { + "advanced_security": [ + {} + ], + "secret_scanning": [ + {} + ], + "secret_scanning_push_protection": [ + {} + ] + } + ], + "template": [], + "topics": [ + false + ] + }, + "after_sensitive": { + "pages": [], + "security_and_analysis": [ + { + "advanced_security": [ + {} + ], + "secret_scanning": [ + {} + ], + "secret_scanning_push_protection": [ + {} + ] + } + ], + "template": [], + "topics": [ + false + ] + } + } + }, + { + "address": "module.repo_list[\"aws-secrets\"].github_repository_collaborator.collaborators[\"gomez385\"]", + "module_address": "module.repo_list[\"aws-secrets\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "gomez385", + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "no-op" + ], + "before": { + "id": "aws-secrets:gomez385", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "aws-secrets", + "username": "gomez385" + }, + "after": { + "id": "aws-secrets:gomez385", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "aws-secrets", + "username": "gomez385" + }, + "after_unknown": {}, + "before_sensitive": {}, + "after_sensitive": {} + } + }, + { + "address": "module.repo_list[\"aws-secrets\"].github_repository_collaborator.collaborators[\"morga471\"]", + "module_address": "module.repo_list[\"aws-secrets\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "morga471", + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "no-op" + ], + "before": { + "id": "aws-secrets:morga471", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "aws-secrets", + "username": "morga471" + }, + "after": { + "id": "aws-secrets:morga471", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "aws-secrets", + "username": "morga471" + }, + "after_unknown": {}, + "before_sensitive": {}, + "after_sensitive": {} + } + }, + { + "address": "module.repo_list[\"aws-secrets\"].github_repository_collaborator.collaborators[\"naray007\"]", + "module_address": "module.repo_list[\"aws-secrets\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "naray007", + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "no-op" + ], + "before": { + "id": "aws-secrets:naray007", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "aws-secrets", + "username": "naray007" + }, + "after": { + "id": "aws-secrets:naray007", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "aws-secrets", + "username": "naray007" + }, + "after_unknown": {}, + "before_sensitive": {}, + "after_sensitive": {} + } + }, + { + "address": "module.repo_list[\"beanstalk-flask-demo\"].github_repository.repo", + "previous_address": "module.beanstalk-demo.github_repository.repo", + "module_address": "module.repo_list[\"beanstalk-flask-demo\"]", + "mode": "managed", + "type": "github_repository", + "name": "repo", + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "update" + ], + "before": { + "allow_auto_merge": false, + "allow_merge_commit": false, + "allow_rebase_merge": false, + "allow_squash_merge": true, + "allow_update_branch": false, + "archive_on_destroy": true, + "archived": false, + "auto_init": true, + "default_branch": "main", + "delete_branch_on_merge": true, + "description": "Terraform Workspace for creating and managing AWS Beanstalk Demo", + "etag": "W/\"5b339d2f6acbb7802e62cc8a8e6683632315390f5e42fc4a3d2e662e35978dc7\"", + "full_name": "CSVD/beanstalk-flask-demo", + "git_clone_url": "git://github.e.it.census.gov/CSVD/beanstalk-flask-demo.git", + "gitignore_template": "", + "has_discussions": false, + "has_downloads": false, + "has_issues": true, + "has_projects": true, + "has_wiki": true, + "homepage_url": "", + "html_url": "https://github.e.it.census.gov/CSVD/beanstalk-flask-demo", + "http_clone_url": "https://github.e.it.census.gov/CSVD/beanstalk-flask-demo.git", + "id": "beanstalk-flask-demo", + "ignore_vulnerability_alerts_during_read": null, + "is_template": true, + "license_template": null, + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "name": "beanstalk-flask-demo", + "node_id": "MDEwOlJlcG9zaXRvcnk5MzE=", + "pages": [], + "primary_language": "Python", + "private": true, + "repo_id": 931, + "security_and_analysis": [ + { + "advanced_security": [ + { + "status": "disabled" + } + ], + "secret_scanning": [ + { + "status": "disabled" + } + ], + "secret_scanning_push_protection": [ + { + "status": "disabled" + } + ] + } + ], + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "ssh_clone_url": "git@github.e.it.census.gov:CSVD/beanstalk-flask-demo.git", + "svn_url": "https://github.e.it.census.gov/CSVD/beanstalk-flask-demo", + "template": [], + "topics": [ + "terraform" + ], + "visibility": "private", + "vulnerability_alerts": false, + "web_commit_signoff_required": false + }, + "after": { + "allow_auto_merge": false, + "allow_merge_commit": false, + "allow_rebase_merge": false, + "allow_squash_merge": true, + "allow_update_branch": false, + "archive_on_destroy": true, + "archived": false, + "auto_init": true, + "default_branch": "main", + "delete_branch_on_merge": true, + "description": "Terraform Workspace for creating and managing AWS Beanstalk Demo", + "etag": "W/\"5b339d2f6acbb7802e62cc8a8e6683632315390f5e42fc4a3d2e662e35978dc7\"", + "full_name": "CSVD/beanstalk-flask-demo", + "git_clone_url": "git://github.e.it.census.gov/CSVD/beanstalk-flask-demo.git", + "gitignore_template": "", + "has_discussions": false, + "has_downloads": false, + "has_issues": true, + "has_projects": true, + "has_wiki": true, + "homepage_url": "", + "html_url": "https://github.e.it.census.gov/CSVD/beanstalk-flask-demo", + "http_clone_url": "https://github.e.it.census.gov/CSVD/beanstalk-flask-demo.git", + "id": "beanstalk-flask-demo", + "ignore_vulnerability_alerts_during_read": null, + "is_template": true, + "license_template": null, + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "name": "beanstalk-flask-demo", + "node_id": "MDEwOlJlcG9zaXRvcnk5MzE=", + "pages": [], + "primary_language": "Python", + "private": true, + "repo_id": 931, + "security_and_analysis": [ + { + "advanced_security": [ + { + "status": "disabled" + } + ], + "secret_scanning": [ + { + "status": "disabled" + } + ], + "secret_scanning_push_protection": [ + { + "status": "disabled" + } + ] + } + ], + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "ssh_clone_url": "git@github.e.it.census.gov:CSVD/beanstalk-flask-demo.git", + "svn_url": "https://github.e.it.census.gov/CSVD/beanstalk-flask-demo", + "template": [], + "topics": [ + "terraform" + ], + "visibility": "public", + "vulnerability_alerts": false, + "web_commit_signoff_required": false + }, + "after_unknown": {}, + "before_sensitive": { + "pages": [], + "security_and_analysis": [ + { + "advanced_security": [ + {} + ], + "secret_scanning": [ + {} + ], + "secret_scanning_push_protection": [ + {} + ] + } + ], + "template": [], + "topics": [ + false + ] + }, + "after_sensitive": { + "pages": [], + "security_and_analysis": [ + { + "advanced_security": [ + {} + ], + "secret_scanning": [ + {} + ], + "secret_scanning_push_protection": [ + {} + ] + } + ], + "template": [], + "topics": [ + false + ] + } + } + }, + { + "address": "module.repo_list[\"beanstalk-flask-demo\"].github_repository_collaborator.collaborators[\"gomez385\"]", + "previous_address": "module.beanstalk-demo.github_repository_collaborator.collaborators[\"gomez385\"]", + "module_address": "module.repo_list[\"beanstalk-flask-demo\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "gomez385", + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "no-op" + ], + "before": { + "id": "beanstalk-flask-demo:gomez385", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "beanstalk-flask-demo", + "username": "gomez385" + }, + "after": { + "id": "beanstalk-flask-demo:gomez385", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "beanstalk-flask-demo", + "username": "gomez385" + }, + "after_unknown": {}, + "before_sensitive": {}, + "after_sensitive": {} + } + }, + { + "address": "module.repo_list[\"beanstalk-flask-demo\"].github_repository_collaborator.collaborators[\"morga471\"]", + "previous_address": "module.beanstalk-demo.github_repository_collaborator.collaborators[\"morga471\"]", + "module_address": "module.repo_list[\"beanstalk-flask-demo\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "morga471", + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "no-op" + ], + "before": { + "id": "beanstalk-flask-demo:morga471", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "beanstalk-flask-demo", + "username": "morga471" + }, + "after": { + "id": "beanstalk-flask-demo:morga471", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "beanstalk-flask-demo", + "username": "morga471" + }, + "after_unknown": {}, + "before_sensitive": {}, + "after_sensitive": {} + } + }, + { + "address": "module.repo_list[\"beanstalk-flask-demo\"].github_repository_collaborator.collaborators[\"naray007\"]", + "previous_address": "module.beanstalk-demo.github_repository_collaborator.collaborators[\"naray007\"]", + "module_address": "module.repo_list[\"beanstalk-flask-demo\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "naray007", + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "no-op" + ], + "before": { + "id": "beanstalk-flask-demo:naray007", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "beanstalk-flask-demo", + "username": "naray007" + }, + "after": { + "id": "beanstalk-flask-demo:naray007", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "beanstalk-flask-demo", + "username": "naray007" + }, + "after_unknown": {}, + "before_sensitive": {}, + "after_sensitive": {} + } + }, + { + "address": "module.repo_list[\"csvd-org-management\"].github_repository.repo", + "previous_address": "module.csvd-org-management.github_repository.repo", + "module_address": "module.repo_list[\"csvd-org-management\"]", + "mode": "managed", + "type": "github_repository", + "name": "repo", + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "update" + ], + "before": { + "allow_auto_merge": false, + "allow_merge_commit": false, + "allow_rebase_merge": false, + "allow_squash_merge": true, + "allow_update_branch": false, + "archive_on_destroy": true, + "archived": false, + "auto_init": true, + "default_branch": "main", + "delete_branch_on_merge": true, + "description": "Automation Repos for Morpheus POC", + "etag": "W/\"9554696dac650a44a3e473c55ba6d9397b05313c2f16b123aa120d5bc7eeaa77\"", + "full_name": "CSVD/csvd-org-management", + "git_clone_url": "git://github.e.it.census.gov/CSVD/csvd-org-management.git", + "gitignore_template": "", + "has_discussions": false, + "has_downloads": false, + "has_issues": true, + "has_projects": true, + "has_wiki": true, + "homepage_url": "", + "html_url": "https://github.e.it.census.gov/CSVD/csvd-org-management", + "http_clone_url": "https://github.e.it.census.gov/CSVD/csvd-org-management.git", + "id": "csvd-org-management", + "ignore_vulnerability_alerts_during_read": null, + "is_template": false, + "license_template": null, + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "name": "csvd-org-management", + "node_id": "MDEwOlJlcG9zaXRvcnkxMDM4", + "pages": [], + "primary_language": "", + "private": true, + "repo_id": 1038, + "security_and_analysis": [ + { + "advanced_security": [ + { + "status": "disabled" + } + ], + "secret_scanning": [ + { + "status": "disabled" + } + ], + "secret_scanning_push_protection": [ + { + "status": "disabled" + } + ] + } + ], + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "ssh_clone_url": "git@github.e.it.census.gov:CSVD/csvd-org-management.git", + "svn_url": "https://github.e.it.census.gov/CSVD/csvd-org-management", + "template": [], + "topics": [ + "terraform" + ], + "visibility": "private", + "vulnerability_alerts": false, + "web_commit_signoff_required": false + }, + "after": { + "allow_auto_merge": false, + "allow_merge_commit": false, + "allow_rebase_merge": false, + "allow_squash_merge": true, + "allow_update_branch": false, + "archive_on_destroy": true, + "archived": false, + "auto_init": true, + "default_branch": "main", + "delete_branch_on_merge": true, + "description": "Automation Repos for Morpheus POC", + "etag": "W/\"9554696dac650a44a3e473c55ba6d9397b05313c2f16b123aa120d5bc7eeaa77\"", + "full_name": "CSVD/csvd-org-management", + "git_clone_url": "git://github.e.it.census.gov/CSVD/csvd-org-management.git", + "gitignore_template": "", + "has_discussions": false, + "has_downloads": false, + "has_issues": true, + "has_projects": true, + "has_wiki": true, + "homepage_url": "", + "html_url": "https://github.e.it.census.gov/CSVD/csvd-org-management", + "http_clone_url": "https://github.e.it.census.gov/CSVD/csvd-org-management.git", + "id": "csvd-org-management", + "ignore_vulnerability_alerts_during_read": null, + "is_template": false, + "license_template": null, + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "name": "csvd-org-management", + "node_id": "MDEwOlJlcG9zaXRvcnkxMDM4", + "pages": [], + "primary_language": "", + "private": true, + "repo_id": 1038, + "security_and_analysis": [ + { + "advanced_security": [ + { + "status": "disabled" + } + ], + "secret_scanning": [ + { + "status": "disabled" + } + ], + "secret_scanning_push_protection": [ + { + "status": "disabled" + } + ] + } + ], + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "ssh_clone_url": "git@github.e.it.census.gov:CSVD/csvd-org-management.git", + "svn_url": "https://github.e.it.census.gov/CSVD/csvd-org-management", + "template": [], + "topics": [ + "terraform" + ], + "visibility": "public", + "vulnerability_alerts": false, + "web_commit_signoff_required": false + }, + "after_unknown": {}, + "before_sensitive": { + "pages": [], + "security_and_analysis": [ + { + "advanced_security": [ + {} + ], + "secret_scanning": [ + {} + ], + "secret_scanning_push_protection": [ + {} + ] + } + ], + "template": [], + "topics": [ + false + ] + }, + "after_sensitive": { + "pages": [], + "security_and_analysis": [ + { + "advanced_security": [ + {} + ], + "secret_scanning": [ + {} + ], + "secret_scanning_push_protection": [ + {} + ] + } + ], + "template": [], + "topics": [ + false + ] + } + } + }, + { + "address": "module.repo_list[\"csvd-org-management\"].github_repository_collaborator.collaborators[\"gomez385\"]", + "previous_address": "module.csvd-org-management.github_repository_collaborator.collaborators[\"gomez385\"]", + "module_address": "module.repo_list[\"csvd-org-management\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "gomez385", + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "no-op" + ], + "before": { + "id": "csvd-org-management:gomez385", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "csvd-org-management", + "username": "gomez385" + }, + "after": { + "id": "csvd-org-management:gomez385", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "csvd-org-management", + "username": "gomez385" + }, + "after_unknown": {}, + "before_sensitive": {}, + "after_sensitive": {} + } + }, + { + "address": "module.repo_list[\"csvd-org-management\"].github_repository_collaborator.collaborators[\"morga471\"]", + "previous_address": "module.csvd-org-management.github_repository_collaborator.collaborators[\"morga471\"]", + "module_address": "module.repo_list[\"csvd-org-management\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "morga471", + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "no-op" + ], + "before": { + "id": "csvd-org-management:morga471", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "csvd-org-management", + "username": "morga471" + }, + "after": { + "id": "csvd-org-management:morga471", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "csvd-org-management", + "username": "morga471" + }, + "after_unknown": {}, + "before_sensitive": {}, + "after_sensitive": {} + } + }, + { + "address": "module.repo_list[\"csvd-org-management\"].github_repository_collaborator.collaborators[\"naray007\"]", + "previous_address": "module.csvd-org-management.github_repository_collaborator.collaborators[\"naray007\"]", + "module_address": "module.repo_list[\"csvd-org-management\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "naray007", + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "no-op" + ], + "before": { + "id": "csvd-org-management:naray007", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "csvd-org-management", + "username": "naray007" + }, + "after": { + "id": "csvd-org-management:naray007", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "csvd-org-management", + "username": "naray007" + }, + "after_unknown": {}, + "before_sensitive": {}, + "after_sensitive": {} + } + }, + { + "address": "module.repo_list[\"docker-image-pipeline\"].github_repository.repo", + "previous_address": "module.image_pipeline_repos[\"docker-image-pipeline\"].github_repository.repo", + "module_address": "module.repo_list[\"docker-image-pipeline\"]", + "mode": "managed", + "type": "github_repository", + "name": "repo", + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "update" + ], + "before": { + "allow_auto_merge": false, + "allow_merge_commit": false, + "allow_rebase_merge": false, + "allow_squash_merge": true, + "allow_update_branch": false, + "archive_on_destroy": true, + "archived": false, + "auto_init": true, + "default_branch": "main", + "delete_branch_on_merge": true, + "description": "Template repo for windows image pipelines", + "etag": "W/\"afa36a79c806ffabd950d5c30531322108b58e75cd4e65d9475e5958d55e1115\"", + "full_name": "CSVD/docker-image-pipeline", + "git_clone_url": "git://github.e.it.census.gov/CSVD/docker-image-pipeline.git", + "gitignore_template": "", + "has_discussions": false, + "has_downloads": false, + "has_issues": true, + "has_projects": true, + "has_wiki": true, + "homepage_url": "", + "html_url": "https://github.e.it.census.gov/CSVD/docker-image-pipeline", + "http_clone_url": "https://github.e.it.census.gov/CSVD/docker-image-pipeline.git", + "id": "docker-image-pipeline", + "ignore_vulnerability_alerts_during_read": null, + "is_template": false, + "license_template": null, + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "name": "docker-image-pipeline", + "node_id": "MDEwOlJlcG9zaXRvcnkxMDEw", + "pages": [], + "primary_language": "HCL", + "private": true, + "repo_id": 1010, + "security_and_analysis": [ + { + "advanced_security": [ + { + "status": "disabled" + } + ], + "secret_scanning": [ + { + "status": "disabled" + } + ], + "secret_scanning_push_protection": [ + { + "status": "disabled" + } + ] + } + ], + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "ssh_clone_url": "git@github.e.it.census.gov:CSVD/docker-image-pipeline.git", + "svn_url": "https://github.e.it.census.gov/CSVD/docker-image-pipeline", + "template": [], + "topics": [ + "terraform" + ], + "visibility": "private", + "vulnerability_alerts": false, + "web_commit_signoff_required": false + }, + "after": { + "allow_auto_merge": false, + "allow_merge_commit": false, + "allow_rebase_merge": false, + "allow_squash_merge": true, + "allow_update_branch": false, + "archive_on_destroy": true, + "archived": false, + "auto_init": true, + "default_branch": "main", + "delete_branch_on_merge": true, + "description": "Template repo for docker image pipelines", + "etag": "W/\"afa36a79c806ffabd950d5c30531322108b58e75cd4e65d9475e5958d55e1115\"", + "full_name": "CSVD/docker-image-pipeline", + "git_clone_url": "git://github.e.it.census.gov/CSVD/docker-image-pipeline.git", + "gitignore_template": "", + "has_discussions": false, + "has_downloads": false, + "has_issues": true, + "has_projects": true, + "has_wiki": true, + "homepage_url": "", + "html_url": "https://github.e.it.census.gov/CSVD/docker-image-pipeline", + "http_clone_url": "https://github.e.it.census.gov/CSVD/docker-image-pipeline.git", + "id": "docker-image-pipeline", + "ignore_vulnerability_alerts_during_read": null, + "is_template": false, + "license_template": null, + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "name": "docker-image-pipeline", + "node_id": "MDEwOlJlcG9zaXRvcnkxMDEw", + "pages": [], + "primary_language": "HCL", + "private": true, + "repo_id": 1010, + "security_and_analysis": [ + { + "advanced_security": [ + { + "status": "disabled" + } + ], + "secret_scanning": [ + { + "status": "disabled" + } + ], + "secret_scanning_push_protection": [ + { + "status": "disabled" + } + ] + } + ], + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "ssh_clone_url": "git@github.e.it.census.gov:CSVD/docker-image-pipeline.git", + "svn_url": "https://github.e.it.census.gov/CSVD/docker-image-pipeline", + "template": [], + "topics": [ + "terraform" + ], + "visibility": "public", + "vulnerability_alerts": false, + "web_commit_signoff_required": false + }, + "after_unknown": {}, + "before_sensitive": { + "pages": [], + "security_and_analysis": [ + { + "advanced_security": [ + {} + ], + "secret_scanning": [ + {} + ], + "secret_scanning_push_protection": [ + {} + ] + } + ], + "template": [], + "topics": [ + false + ] + }, + "after_sensitive": { + "pages": [], + "security_and_analysis": [ + { + "advanced_security": [ + {} + ], + "secret_scanning": [ + {} + ], + "secret_scanning_push_protection": [ + {} + ] + } + ], + "template": [], + "topics": [ + false + ] + } + } + }, + { + "address": "module.repo_list[\"docker-image-pipeline\"].github_repository_collaborator.collaborators[\"gomez385\"]", + "previous_address": "module.image_pipeline_repos[\"docker-image-pipeline\"].github_repository_collaborator.collaborators[\"gomez385\"]", + "module_address": "module.repo_list[\"docker-image-pipeline\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "gomez385", + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "no-op" + ], + "before": { + "id": "docker-image-pipeline:gomez385", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "docker-image-pipeline", + "username": "gomez385" + }, + "after": { + "id": "docker-image-pipeline:gomez385", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "docker-image-pipeline", + "username": "gomez385" + }, + "after_unknown": {}, + "before_sensitive": {}, + "after_sensitive": {} + } + }, + { + "address": "module.repo_list[\"docker-image-pipeline\"].github_repository_collaborator.collaborators[\"morga471\"]", + "previous_address": "module.image_pipeline_repos[\"docker-image-pipeline\"].github_repository_collaborator.collaborators[\"morga471\"]", + "module_address": "module.repo_list[\"docker-image-pipeline\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "morga471", + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "no-op" + ], + "before": { + "id": "docker-image-pipeline:morga471", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "docker-image-pipeline", + "username": "morga471" + }, + "after": { + "id": "docker-image-pipeline:morga471", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "docker-image-pipeline", + "username": "morga471" + }, + "after_unknown": {}, + "before_sensitive": {}, + "after_sensitive": {} + } + }, + { + "address": "module.repo_list[\"docker-image-pipeline\"].github_repository_collaborator.collaborators[\"naray007\"]", + "previous_address": "module.image_pipeline_repos[\"docker-image-pipeline\"].github_repository_collaborator.collaborators[\"naray007\"]", + "module_address": "module.repo_list[\"docker-image-pipeline\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "naray007", + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "no-op" + ], + "before": { + "id": "docker-image-pipeline:naray007", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "docker-image-pipeline", + "username": "naray007" + }, + "after": { + "id": "docker-image-pipeline:naray007", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "docker-image-pipeline", + "username": "naray007" + }, + "after_unknown": {}, + "before_sensitive": {}, + "after_sensitive": {} + } + }, + { + "address": "module.repo_list[\"docker-image-pipeline\"].github_repository_file.managed_extra_files[\"s3_upload.yaml\"]", + "previous_address": "module.image_pipeline_repos[\"docker-image-pipeline\"].github_repository_file.managed_extra_files[\"s3_upload.yaml\"]", + "module_address": "module.repo_list[\"docker-image-pipeline\"]", + "mode": "managed", + "type": "github_repository_file", + "name": "managed_extra_files", + "index": "s3_upload.yaml", + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "delete" + ], + "before": { + "autocreate_branch": false, + "autocreate_branch_source_branch": "main", + "autocreate_branch_source_sha": null, + "branch": "main", + "commit_author": null, + "commit_email": null, + "commit_message": "Update .github/workflows/s3_upload.yaml", + "commit_sha": "29fc1c4c5df968ac59495090e38075eae28e2647", + "content": "# This is a basic workflow to help you get started with Actions\nname: S3 Upload\n\non:\n push:\n branches: [ \"main\" ]\n # Allows you to run this workflow manually from the Actions tab\n workflow_dispatch:\n \n# A workflow run is made up of one or more jobs that can run sequentially or in parallel\njobs:\n # This workflow contains a single job called \"build\"\n build:\n # The type of runner that the job will run on\n runs-on: [ \"229685449397\" ]\n \n # Steps represent a sequence of tasks that will be executed as part of the job\n steps:\n # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it\n - uses: CSVD/gh-actions-checkout@v4\n id: checkout\n with:\n persist-credentials: false\n\n - uses: CSVD/gh-actions-setup-node@v3\n with:\n node-version: 16\n \n - name: AWS Auth\n id: aws_auth\n uses: CSVD/aws-auth@main\n with:\n ecs: true\n\n - run: |\n zip -r docker-image-pipeline.zip *\n aws s3 cp docker-image-pipeline.zip s3://csvd-dev-ew-github-actions\n env:\n AWS_ACCESS_KEY_ID: ${{ steps.aws_auth.outputs.aws_access_key_id }}\n AWS_SECRET_ACCESS_KEY: ${{ steps.aws_auth.outputs.aws_secret_access_key }}\n AWS_SESSION_TOKEN: ${{ steps.aws_auth.outputs.aws_session_token }}\n", + "file": ".github/workflows/s3_upload.yaml", + "id": "docker-image-pipeline/.github/workflows/s3_upload.yaml", + "overwrite_on_create": true, + "ref": "main", + "repository": "docker-image-pipeline", + "sha": "8566f43dfab1c2b1152470d7799cf7b0f1883a88" + }, + "after": null, + "after_unknown": {}, + "before_sensitive": {}, + "after_sensitive": false + }, + "action_reason": "delete_because_each_key" + }, + { + "address": "module.repo_list[\"gh-actions-setup-node\"].github_repository.repo", + "previous_address": "module.setup_node.github_repository.repo", + "module_address": "module.repo_list[\"gh-actions-setup-node\"]", + "mode": "managed", + "type": "github_repository", + "name": "repo", + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "no-op" + ], + "before": { + "allow_auto_merge": false, + "allow_merge_commit": false, + "allow_rebase_merge": false, + "allow_squash_merge": true, + "allow_update_branch": false, + "archive_on_destroy": true, + "archived": false, + "auto_init": true, + "default_branch": "main", + "delete_branch_on_merge": true, + "description": "Github Actions Setup Node", + "etag": "W/\"964c77b57422a0023f2e4620b4f5c0c1924de4ea312b6abd469b152922a8e6a4\"", + "full_name": "CSVD/gh-actions-setup-node", + "git_clone_url": "git://github.e.it.census.gov/CSVD/gh-actions-setup-node.git", + "gitignore_template": "", + "has_discussions": false, + "has_downloads": false, + "has_issues": true, + "has_projects": true, + "has_wiki": true, + "homepage_url": "", + "html_url": "https://github.e.it.census.gov/CSVD/gh-actions-setup-node", + "http_clone_url": "https://github.e.it.census.gov/CSVD/gh-actions-setup-node.git", + "id": "gh-actions-setup-node", + "ignore_vulnerability_alerts_during_read": null, + "is_template": false, + "license_template": null, + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "name": "gh-actions-setup-node", + "node_id": "MDEwOlJlcG9zaXRvcnk5OTk=", + "pages": [], + "primary_language": "", + "private": false, + "repo_id": 999, + "security_and_analysis": [ + { + "advanced_security": [ + { + "status": "disabled" + } + ], + "secret_scanning": [ + { + "status": "disabled" + } + ], + "secret_scanning_push_protection": [ + { + "status": "disabled" + } + ] + } + ], + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "ssh_clone_url": "git@github.e.it.census.gov:CSVD/gh-actions-setup-node.git", + "svn_url": "https://github.e.it.census.gov/CSVD/gh-actions-setup-node", + "template": [], + "topics": [ + "terraform" + ], + "visibility": "public", + "vulnerability_alerts": false, + "web_commit_signoff_required": false + }, + "after": { + "allow_auto_merge": false, + "allow_merge_commit": false, + "allow_rebase_merge": false, + "allow_squash_merge": true, + "allow_update_branch": false, + "archive_on_destroy": true, + "archived": false, + "auto_init": true, + "default_branch": "main", + "delete_branch_on_merge": true, + "description": "Github Actions Setup Node", + "etag": "W/\"964c77b57422a0023f2e4620b4f5c0c1924de4ea312b6abd469b152922a8e6a4\"", + "full_name": "CSVD/gh-actions-setup-node", + "git_clone_url": "git://github.e.it.census.gov/CSVD/gh-actions-setup-node.git", + "gitignore_template": "", + "has_discussions": false, + "has_downloads": false, + "has_issues": true, + "has_projects": true, + "has_wiki": true, + "homepage_url": "", + "html_url": "https://github.e.it.census.gov/CSVD/gh-actions-setup-node", + "http_clone_url": "https://github.e.it.census.gov/CSVD/gh-actions-setup-node.git", + "id": "gh-actions-setup-node", + "ignore_vulnerability_alerts_during_read": null, + "is_template": false, + "license_template": null, + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "name": "gh-actions-setup-node", + "node_id": "MDEwOlJlcG9zaXRvcnk5OTk=", + "pages": [], + "primary_language": "", + "private": false, + "repo_id": 999, + "security_and_analysis": [ + { + "advanced_security": [ + { + "status": "disabled" + } + ], + "secret_scanning": [ + { + "status": "disabled" + } + ], + "secret_scanning_push_protection": [ + { + "status": "disabled" + } + ] + } + ], + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "ssh_clone_url": "git@github.e.it.census.gov:CSVD/gh-actions-setup-node.git", + "svn_url": "https://github.e.it.census.gov/CSVD/gh-actions-setup-node", + "template": [], + "topics": [ + "terraform" + ], + "visibility": "public", + "vulnerability_alerts": false, + "web_commit_signoff_required": false + }, + "after_unknown": {}, + "before_sensitive": { + "pages": [], + "security_and_analysis": [ + { + "advanced_security": [ + {} + ], + "secret_scanning": [ + {} + ], + "secret_scanning_push_protection": [ + {} + ] + } + ], + "template": [], + "topics": [ + false + ] + }, + "after_sensitive": { + "pages": [], + "security_and_analysis": [ + { + "advanced_security": [ + {} + ], + "secret_scanning": [ + {} + ], + "secret_scanning_push_protection": [ + {} + ] + } + ], + "template": [], + "topics": [ + false + ] + } + } + }, + { + "address": "module.repo_list[\"gh-actions-setup-node\"].github_repository_collaborator.collaborators[\"gomez385\"]", + "previous_address": "module.setup_node.github_repository_collaborator.collaborators[\"gomez385\"]", + "module_address": "module.repo_list[\"gh-actions-setup-node\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "gomez385", + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "no-op" + ], + "before": { + "id": "gh-actions-setup-node:gomez385", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "gh-actions-setup-node", + "username": "gomez385" + }, + "after": { + "id": "gh-actions-setup-node:gomez385", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "gh-actions-setup-node", + "username": "gomez385" + }, + "after_unknown": {}, + "before_sensitive": {}, + "after_sensitive": {} + } + }, + { + "address": "module.repo_list[\"gh-actions-setup-node\"].github_repository_collaborator.collaborators[\"morga471\"]", + "previous_address": "module.setup_node.github_repository_collaborator.collaborators[\"morga471\"]", + "module_address": "module.repo_list[\"gh-actions-setup-node\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "morga471", + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "no-op" + ], + "before": { + "id": "gh-actions-setup-node:morga471", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "gh-actions-setup-node", + "username": "morga471" + }, + "after": { + "id": "gh-actions-setup-node:morga471", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "gh-actions-setup-node", + "username": "morga471" + }, + "after_unknown": {}, + "before_sensitive": {}, + "after_sensitive": {} + } + }, + { + "address": "module.repo_list[\"gh-actions-setup-node\"].github_repository_collaborator.collaborators[\"naray007\"]", + "previous_address": "module.setup_node.github_repository_collaborator.collaborators[\"naray007\"]", + "module_address": "module.repo_list[\"gh-actions-setup-node\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "naray007", + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "no-op" + ], + "before": { + "id": "gh-actions-setup-node:naray007", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "gh-actions-setup-node", + "username": "naray007" + }, + "after": { + "id": "gh-actions-setup-node:naray007", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "gh-actions-setup-node", + "username": "naray007" + }, + "after_unknown": {}, + "before_sensitive": {}, + "after_sensitive": {} + } + }, + { + "address": "module.repo_list[\"github-runner-image\"].github_repository.repo", + "module_address": "module.repo_list[\"github-runner-image\"]", + "mode": "managed", + "type": "github_repository", + "name": "repo", + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "no-op" + ], + "before": { + "allow_auto_merge": false, + "allow_merge_commit": false, + "allow_rebase_merge": false, + "allow_squash_merge": true, + "allow_update_branch": false, + "archive_on_destroy": true, + "archived": false, + "auto_init": true, + "default_branch": "main", + "delete_branch_on_merge": true, + "description": "Managing AWS Github Runner Image", + "etag": "W/\"2f8b2aad3aa99bd7955bc07a7dcae9782069a56694437a8ac371df31cba7404c\"", + "full_name": "CSVD/github-runner-image", + "git_clone_url": "git://github.e.it.census.gov/CSVD/github-runner-image.git", + "gitignore_template": "", + "has_discussions": false, + "has_downloads": false, + "has_issues": true, + "has_projects": true, + "has_wiki": true, + "homepage_url": "", + "html_url": "https://github.e.it.census.gov/CSVD/github-runner-image", + "http_clone_url": "https://github.e.it.census.gov/CSVD/github-runner-image.git", + "id": "github-runner-image", + "ignore_vulnerability_alerts_during_read": null, + "is_template": false, + "license_template": null, + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "name": "github-runner-image", + "node_id": "MDEwOlJlcG9zaXRvcnkxMDkw", + "pages": [], + "primary_language": "", + "private": false, + "repo_id": 1090, + "security_and_analysis": [ + { + "advanced_security": [ + { + "status": "disabled" + } + ], + "secret_scanning": [ + { + "status": "disabled" + } + ], + "secret_scanning_push_protection": [ + { + "status": "disabled" + } + ] + } + ], + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "ssh_clone_url": "git@github.e.it.census.gov:CSVD/github-runner-image.git", + "svn_url": "https://github.e.it.census.gov/CSVD/github-runner-image", + "template": [], + "topics": [ + "terraform-tools" + ], + "visibility": "public", + "vulnerability_alerts": false, + "web_commit_signoff_required": false + }, + "after": { + "allow_auto_merge": false, + "allow_merge_commit": false, + "allow_rebase_merge": false, + "allow_squash_merge": true, + "allow_update_branch": false, + "archive_on_destroy": true, + "archived": false, + "auto_init": true, + "default_branch": "main", + "delete_branch_on_merge": true, + "description": "Managing AWS Github Runner Image", + "etag": "W/\"2f8b2aad3aa99bd7955bc07a7dcae9782069a56694437a8ac371df31cba7404c\"", + "full_name": "CSVD/github-runner-image", + "git_clone_url": "git://github.e.it.census.gov/CSVD/github-runner-image.git", + "gitignore_template": "", + "has_discussions": false, + "has_downloads": false, + "has_issues": true, + "has_projects": true, + "has_wiki": true, + "homepage_url": "", + "html_url": "https://github.e.it.census.gov/CSVD/github-runner-image", + "http_clone_url": "https://github.e.it.census.gov/CSVD/github-runner-image.git", + "id": "github-runner-image", + "ignore_vulnerability_alerts_during_read": null, + "is_template": false, + "license_template": null, + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "name": "github-runner-image", + "node_id": "MDEwOlJlcG9zaXRvcnkxMDkw", + "pages": [], + "primary_language": "", + "private": false, + "repo_id": 1090, + "security_and_analysis": [ + { + "advanced_security": [ + { + "status": "disabled" + } + ], + "secret_scanning": [ + { + "status": "disabled" + } + ], + "secret_scanning_push_protection": [ + { + "status": "disabled" + } + ] + } + ], + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "ssh_clone_url": "git@github.e.it.census.gov:CSVD/github-runner-image.git", + "svn_url": "https://github.e.it.census.gov/CSVD/github-runner-image", + "template": [], + "topics": [ + "terraform-tools" + ], + "visibility": "public", + "vulnerability_alerts": false, + "web_commit_signoff_required": false + }, + "after_unknown": {}, + "before_sensitive": { + "pages": [], + "security_and_analysis": [ + { + "advanced_security": [ + {} + ], + "secret_scanning": [ + {} + ], + "secret_scanning_push_protection": [ + {} + ] + } + ], + "template": [], + "topics": [ + false + ] + }, + "after_sensitive": { + "pages": [], + "security_and_analysis": [ + { + "advanced_security": [ + {} + ], + "secret_scanning": [ + {} + ], + "secret_scanning_push_protection": [ + {} + ] + } + ], + "template": [], + "topics": [ + false + ] + } + } + }, + { + "address": "module.repo_list[\"github-runner-image\"].github_repository_collaborator.collaborators[\"gomez385\"]", + "module_address": "module.repo_list[\"github-runner-image\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "gomez385", + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "no-op" + ], + "before": { + "id": "github-runner-image:gomez385", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "github-runner-image", + "username": "gomez385" + }, + "after": { + "id": "github-runner-image:gomez385", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "github-runner-image", + "username": "gomez385" + }, + "after_unknown": {}, + "before_sensitive": {}, + "after_sensitive": {} + } + }, + { + "address": "module.repo_list[\"github-runner-image\"].github_repository_collaborator.collaborators[\"morga471\"]", + "module_address": "module.repo_list[\"github-runner-image\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "morga471", + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "no-op" + ], + "before": { + "id": "github-runner-image:morga471", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "github-runner-image", + "username": "morga471" + }, + "after": { + "id": "github-runner-image:morga471", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "github-runner-image", + "username": "morga471" + }, + "after_unknown": {}, + "before_sensitive": {}, + "after_sensitive": {} + } + }, + { + "address": "module.repo_list[\"github-runner-image\"].github_repository_collaborator.collaborators[\"naray007\"]", + "module_address": "module.repo_list[\"github-runner-image\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "naray007", + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "no-op" + ], + "before": { + "id": "github-runner-image:naray007", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "github-runner-image", + "username": "naray007" + }, + "after": { + "id": "github-runner-image:naray007", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "github-runner-image", + "username": "naray007" + }, + "after_unknown": {}, + "before_sensitive": {}, + "after_sensitive": {} + } + }, + { + "address": "module.repo_list[\"github-runner-images\"].github_repository.repo", + "previous_address": "module.github-runner-images.github_repository.repo", + "module_address": "module.repo_list[\"github-runner-images\"]", + "mode": "managed", + "type": "github_repository", + "name": "repo", + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "update" + ], + "before": { + "allow_auto_merge": false, + "allow_merge_commit": false, + "allow_rebase_merge": false, + "allow_squash_merge": true, + "allow_update_branch": false, + "archive_on_destroy": true, + "archived": false, + "auto_init": true, + "default_branch": "main", + "delete_branch_on_merge": true, + "description": "Github Runner Images Import", + "etag": "W/\"dc287ae8ded798ee81678d17632ee54721af2a9e4955fb332971325a1a23ef43\"", + "full_name": "CSVD/github-runner-images", + "git_clone_url": "git://github.e.it.census.gov/CSVD/github-runner-images.git", + "gitignore_template": "", + "has_discussions": false, + "has_downloads": false, + "has_issues": true, + "has_projects": true, + "has_wiki": true, + "homepage_url": "", + "html_url": "https://github.e.it.census.gov/CSVD/github-runner-images", + "http_clone_url": "https://github.e.it.census.gov/CSVD/github-runner-images.git", + "id": "github-runner-images", + "ignore_vulnerability_alerts_during_read": null, + "is_template": false, + "license_template": null, + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "name": "github-runner-images", + "node_id": "MDEwOlJlcG9zaXRvcnkxMDM2", + "pages": [], + "primary_language": "HCL", + "private": true, + "repo_id": 1036, + "security_and_analysis": [ + { + "advanced_security": [ + { + "status": "disabled" + } + ], + "secret_scanning": [ + { + "status": "disabled" + } + ], + "secret_scanning_push_protection": [ + { + "status": "disabled" + } + ] + } + ], + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "ssh_clone_url": "git@github.e.it.census.gov:CSVD/github-runner-images.git", + "svn_url": "https://github.e.it.census.gov/CSVD/github-runner-images", + "template": [], + "topics": [ + "terraform" + ], + "visibility": "private", + "vulnerability_alerts": false, + "web_commit_signoff_required": false + }, + "after": { + "allow_auto_merge": false, + "allow_merge_commit": false, + "allow_rebase_merge": false, + "allow_squash_merge": true, + "allow_update_branch": false, + "archive_on_destroy": true, + "archived": false, + "auto_init": true, + "default_branch": "main", + "delete_branch_on_merge": true, + "description": "Github Runner Images Import", + "etag": "W/\"dc287ae8ded798ee81678d17632ee54721af2a9e4955fb332971325a1a23ef43\"", + "full_name": "CSVD/github-runner-images", + "git_clone_url": "git://github.e.it.census.gov/CSVD/github-runner-images.git", + "gitignore_template": "", + "has_discussions": false, + "has_downloads": false, + "has_issues": true, + "has_projects": true, + "has_wiki": true, + "homepage_url": "", + "html_url": "https://github.e.it.census.gov/CSVD/github-runner-images", + "http_clone_url": "https://github.e.it.census.gov/CSVD/github-runner-images.git", + "id": "github-runner-images", + "ignore_vulnerability_alerts_during_read": null, + "is_template": false, + "license_template": null, + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "name": "github-runner-images", + "node_id": "MDEwOlJlcG9zaXRvcnkxMDM2", + "pages": [], + "primary_language": "HCL", + "private": true, + "repo_id": 1036, + "security_and_analysis": [ + { + "advanced_security": [ + { + "status": "disabled" + } + ], + "secret_scanning": [ + { + "status": "disabled" + } + ], + "secret_scanning_push_protection": [ + { + "status": "disabled" + } + ] + } + ], + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "ssh_clone_url": "git@github.e.it.census.gov:CSVD/github-runner-images.git", + "svn_url": "https://github.e.it.census.gov/CSVD/github-runner-images", + "template": [], + "topics": [ + "terraform" + ], + "visibility": "public", + "vulnerability_alerts": false, + "web_commit_signoff_required": false + }, + "after_unknown": {}, + "before_sensitive": { + "pages": [], + "security_and_analysis": [ + { + "advanced_security": [ + {} + ], + "secret_scanning": [ + {} + ], + "secret_scanning_push_protection": [ + {} + ] + } + ], + "template": [], + "topics": [ + false + ] + }, + "after_sensitive": { + "pages": [], + "security_and_analysis": [ + { + "advanced_security": [ + {} + ], + "secret_scanning": [ + {} + ], + "secret_scanning_push_protection": [ + {} + ] + } + ], + "template": [], + "topics": [ + false + ] + } + } + }, + { + "address": "module.repo_list[\"github-runner-images\"].github_repository_collaborator.collaborators[\"gomez385\"]", + "previous_address": "module.github-runner-images.github_repository_collaborator.collaborators[\"gomez385\"]", + "module_address": "module.repo_list[\"github-runner-images\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "gomez385", + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "no-op" + ], + "before": { + "id": "github-runner-images:gomez385", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "github-runner-images", + "username": "gomez385" + }, + "after": { + "id": "github-runner-images:gomez385", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "github-runner-images", + "username": "gomez385" + }, + "after_unknown": {}, + "before_sensitive": {}, + "after_sensitive": {} + } + }, + { + "address": "module.repo_list[\"github-runner-images\"].github_repository_collaborator.collaborators[\"morga471\"]", + "previous_address": "module.github-runner-images.github_repository_collaborator.collaborators[\"morga471\"]", + "module_address": "module.repo_list[\"github-runner-images\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "morga471", + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "no-op" + ], + "before": { + "id": "github-runner-images:morga471", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "github-runner-images", + "username": "morga471" + }, + "after": { + "id": "github-runner-images:morga471", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "github-runner-images", + "username": "morga471" + }, + "after_unknown": {}, + "before_sensitive": {}, + "after_sensitive": {} + } + }, + { + "address": "module.repo_list[\"github-runner-images\"].github_repository_collaborator.collaborators[\"naray007\"]", + "previous_address": "module.github-runner-images.github_repository_collaborator.collaborators[\"naray007\"]", + "module_address": "module.repo_list[\"github-runner-images\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "naray007", + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "no-op" + ], + "before": { + "id": "github-runner-images:naray007", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "github-runner-images", + "username": "naray007" + }, + "after": { + "id": "github-runner-images:naray007", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "github-runner-images", + "username": "naray007" + }, + "after_unknown": {}, + "before_sensitive": {}, + "after_sensitive": {} + } + }, + { + "address": "module.repo_list[\"github-runners-workspace\"].github_repository.repo", + "module_address": "module.repo_list[\"github-runners-workspace\"]", + "mode": "managed", + "type": "github_repository", + "name": "repo", + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "no-op" + ], + "before": { + "allow_auto_merge": false, + "allow_merge_commit": false, + "allow_rebase_merge": false, + "allow_squash_merge": true, + "allow_update_branch": false, + "archive_on_destroy": true, + "archived": false, + "auto_init": true, + "default_branch": "main", + "delete_branch_on_merge": true, + "description": "Workspace for ghe-runners and github-runner-image", + "etag": "W/\"7559eec0909abf1f686d9290c2b78aa4f88dbdeee11ca5f1c2ffcd5b9624c02d\"", + "full_name": "CSVD/github-runners-workspace", + "git_clone_url": "git://github.e.it.census.gov/CSVD/github-runners-workspace.git", + "gitignore_template": "", + "has_discussions": false, + "has_downloads": false, + "has_issues": true, + "has_projects": true, + "has_wiki": true, + "homepage_url": "", + "html_url": "https://github.e.it.census.gov/CSVD/github-runners-workspace", + "http_clone_url": "https://github.e.it.census.gov/CSVD/github-runners-workspace.git", + "id": "github-runners-workspace", + "ignore_vulnerability_alerts_during_read": null, + "is_template": true, + "license_template": null, + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "name": "github-runners-workspace", + "node_id": "MDEwOlJlcG9zaXRvcnkxMTEz", + "pages": [], + "primary_language": "HCL", + "private": true, + "repo_id": 1113, + "security_and_analysis": [ + { + "advanced_security": [ + { + "status": "disabled" + } + ], + "secret_scanning": [ + { + "status": "disabled" + } + ], + "secret_scanning_push_protection": [ + { + "status": "disabled" + } + ] + } + ], + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "ssh_clone_url": "git@github.e.it.census.gov:CSVD/github-runners-workspace.git", + "svn_url": "https://github.e.it.census.gov/CSVD/github-runners-workspace", + "template": [], + "topics": [ + "github-actions", + "terraform-tools" + ], + "visibility": "private", + "vulnerability_alerts": false, + "web_commit_signoff_required": false + }, + "after": { + "allow_auto_merge": false, + "allow_merge_commit": false, + "allow_rebase_merge": false, + "allow_squash_merge": true, + "allow_update_branch": false, + "archive_on_destroy": true, + "archived": false, + "auto_init": true, + "default_branch": "main", + "delete_branch_on_merge": true, + "description": "Workspace for ghe-runners and github-runner-image", + "etag": "W/\"7559eec0909abf1f686d9290c2b78aa4f88dbdeee11ca5f1c2ffcd5b9624c02d\"", + "full_name": "CSVD/github-runners-workspace", + "git_clone_url": "git://github.e.it.census.gov/CSVD/github-runners-workspace.git", + "gitignore_template": "", + "has_discussions": false, + "has_downloads": false, + "has_issues": true, + "has_projects": true, + "has_wiki": true, + "homepage_url": "", + "html_url": "https://github.e.it.census.gov/CSVD/github-runners-workspace", + "http_clone_url": "https://github.e.it.census.gov/CSVD/github-runners-workspace.git", + "id": "github-runners-workspace", + "ignore_vulnerability_alerts_during_read": null, + "is_template": true, + "license_template": null, + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "name": "github-runners-workspace", + "node_id": "MDEwOlJlcG9zaXRvcnkxMTEz", + "pages": [], + "primary_language": "HCL", + "private": true, + "repo_id": 1113, + "security_and_analysis": [ + { + "advanced_security": [ + { + "status": "disabled" + } + ], + "secret_scanning": [ + { + "status": "disabled" + } + ], + "secret_scanning_push_protection": [ + { + "status": "disabled" + } + ] + } + ], + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "ssh_clone_url": "git@github.e.it.census.gov:CSVD/github-runners-workspace.git", + "svn_url": "https://github.e.it.census.gov/CSVD/github-runners-workspace", + "template": [], + "topics": [ + "github-actions", + "terraform-tools" + ], + "visibility": "private", + "vulnerability_alerts": false, + "web_commit_signoff_required": false + }, + "after_unknown": {}, + "before_sensitive": { + "pages": [], + "security_and_analysis": [ + { + "advanced_security": [ + {} + ], + "secret_scanning": [ + {} + ], + "secret_scanning_push_protection": [ + {} + ] + } + ], + "template": [], + "topics": [ + false, + false + ] + }, + "after_sensitive": { + "pages": [], + "security_and_analysis": [ + { + "advanced_security": [ + {} + ], + "secret_scanning": [ + {} + ], + "secret_scanning_push_protection": [ + {} + ] + } + ], + "template": [], + "topics": [ + false, + false + ] + } + } + }, + { + "address": "module.repo_list[\"github-runners-workspace\"].github_repository_collaborator.collaborators[\"gomez385\"]", + "module_address": "module.repo_list[\"github-runners-workspace\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "gomez385", + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "no-op" + ], + "before": { + "id": "github-runners-workspace:gomez385", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "github-runners-workspace", + "username": "gomez385" + }, + "after": { + "id": "github-runners-workspace:gomez385", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "github-runners-workspace", + "username": "gomez385" + }, + "after_unknown": {}, + "before_sensitive": {}, + "after_sensitive": {} + } + }, + { + "address": "module.repo_list[\"github-runners-workspace\"].github_repository_collaborator.collaborators[\"morga471\"]", + "module_address": "module.repo_list[\"github-runners-workspace\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "morga471", + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "no-op" + ], + "before": { + "id": "github-runners-workspace:morga471", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "github-runners-workspace", + "username": "morga471" + }, + "after": { + "id": "github-runners-workspace:morga471", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "github-runners-workspace", + "username": "morga471" + }, + "after_unknown": {}, + "before_sensitive": {}, + "after_sensitive": {} + } + }, + { + "address": "module.repo_list[\"github-runners-workspace\"].github_repository_collaborator.collaborators[\"naray007\"]", + "module_address": "module.repo_list[\"github-runners-workspace\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "naray007", + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "no-op" + ], + "before": { + "id": "github-runners-workspace:naray007", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "github-runners-workspace", + "username": "naray007" + }, + "after": { + "id": "github-runners-workspace:naray007", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "github-runners-workspace", + "username": "naray007" + }, + "after_unknown": {}, + "before_sensitive": {}, + "after_sensitive": {} + } + }, + { + "address": "module.repo_list[\"github-workspaces\"].github_repository.repo", + "module_address": "module.repo_list[\"github-workspaces\"]", + "mode": "managed", + "type": "github_repository", + "name": "repo", + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "no-op" + ], + "before": { + "allow_auto_merge": false, + "allow_merge_commit": false, + "allow_rebase_merge": false, + "allow_squash_merge": true, + "allow_update_branch": false, + "archive_on_destroy": true, + "archived": false, + "auto_init": true, + "default_branch": "main", + "delete_branch_on_merge": true, + "description": "Home for github-terraform workspaces", + "etag": "W/\"2a9dc15ac188990158412de4b7c238fe6b8285a323225b76e80553be384aef91\"", + "full_name": "CSVD/github-workspaces", + "git_clone_url": "git://github.e.it.census.gov/CSVD/github-workspaces.git", + "gitignore_template": "", + "has_discussions": false, + "has_downloads": false, + "has_issues": true, + "has_projects": true, + "has_wiki": true, + "homepage_url": "", + "html_url": "https://github.e.it.census.gov/CSVD/github-workspaces", + "http_clone_url": "https://github.e.it.census.gov/CSVD/github-workspaces.git", + "id": "github-workspaces", + "ignore_vulnerability_alerts_during_read": null, + "is_template": false, + "license_template": null, + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "name": "github-workspaces", + "node_id": "MDEwOlJlcG9zaXRvcnkxMTAy", + "pages": [], + "primary_language": "HCL", + "private": false, + "repo_id": 1102, + "security_and_analysis": [ + { + "advanced_security": [ + { + "status": "disabled" + } + ], + "secret_scanning": [ + { + "status": "disabled" + } + ], + "secret_scanning_push_protection": [ + { + "status": "disabled" + } + ] + } + ], + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "ssh_clone_url": "git@github.e.it.census.gov:CSVD/github-workspaces.git", + "svn_url": "https://github.e.it.census.gov/CSVD/github-workspaces", + "template": [], + "topics": [ + "github-actions", + "github-workspace" + ], + "visibility": "public", + "vulnerability_alerts": false, + "web_commit_signoff_required": false + }, + "after": { + "allow_auto_merge": false, + "allow_merge_commit": false, + "allow_rebase_merge": false, + "allow_squash_merge": true, + "allow_update_branch": false, + "archive_on_destroy": true, + "archived": false, + "auto_init": true, + "default_branch": "main", + "delete_branch_on_merge": true, + "description": "Home for github-terraform workspaces", + "etag": "W/\"2a9dc15ac188990158412de4b7c238fe6b8285a323225b76e80553be384aef91\"", + "full_name": "CSVD/github-workspaces", + "git_clone_url": "git://github.e.it.census.gov/CSVD/github-workspaces.git", + "gitignore_template": "", + "has_discussions": false, + "has_downloads": false, + "has_issues": true, + "has_projects": true, + "has_wiki": true, + "homepage_url": "", + "html_url": "https://github.e.it.census.gov/CSVD/github-workspaces", + "http_clone_url": "https://github.e.it.census.gov/CSVD/github-workspaces.git", + "id": "github-workspaces", + "ignore_vulnerability_alerts_during_read": null, + "is_template": false, + "license_template": null, + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "name": "github-workspaces", + "node_id": "MDEwOlJlcG9zaXRvcnkxMTAy", + "pages": [], + "primary_language": "HCL", + "private": false, + "repo_id": 1102, + "security_and_analysis": [ + { + "advanced_security": [ + { + "status": "disabled" + } + ], + "secret_scanning": [ + { + "status": "disabled" + } + ], + "secret_scanning_push_protection": [ + { + "status": "disabled" + } + ] + } + ], + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "ssh_clone_url": "git@github.e.it.census.gov:CSVD/github-workspaces.git", + "svn_url": "https://github.e.it.census.gov/CSVD/github-workspaces", + "template": [], + "topics": [ + "github-actions", + "github-workspace" + ], + "visibility": "public", + "vulnerability_alerts": false, + "web_commit_signoff_required": false + }, + "after_unknown": {}, + "before_sensitive": { + "pages": [], + "security_and_analysis": [ + { + "advanced_security": [ + {} + ], + "secret_scanning": [ + {} + ], + "secret_scanning_push_protection": [ + {} + ] + } + ], + "template": [], + "topics": [ + false, + false + ] + }, + "after_sensitive": { + "pages": [], + "security_and_analysis": [ + { + "advanced_security": [ + {} + ], + "secret_scanning": [ + {} + ], + "secret_scanning_push_protection": [ + {} + ] + } + ], + "template": [], + "topics": [ + false, + false + ] + } + } + }, + { + "address": "module.repo_list[\"github-workspaces\"].github_repository_collaborator.collaborators[\"gomez385\"]", + "module_address": "module.repo_list[\"github-workspaces\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "gomez385", + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "no-op" + ], + "before": { + "id": "github-workspaces:gomez385", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "github-workspaces", + "username": "gomez385" + }, + "after": { + "id": "github-workspaces:gomez385", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "github-workspaces", + "username": "gomez385" + }, + "after_unknown": {}, + "before_sensitive": {}, + "after_sensitive": {} + } + }, + { + "address": "module.repo_list[\"github-workspaces\"].github_repository_collaborator.collaborators[\"morga471\"]", + "module_address": "module.repo_list[\"github-workspaces\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "morga471", + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "no-op" + ], + "before": { + "id": "github-workspaces:morga471", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "github-workspaces", + "username": "morga471" + }, + "after": { + "id": "github-workspaces:morga471", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "github-workspaces", + "username": "morga471" + }, + "after_unknown": {}, + "before_sensitive": {}, + "after_sensitive": {} + } + }, + { + "address": "module.repo_list[\"github-workspaces\"].github_repository_collaborator.collaborators[\"naray007\"]", + "module_address": "module.repo_list[\"github-workspaces\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "naray007", + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "no-op" + ], + "before": { + "id": "github-workspaces:naray007", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "github-workspaces", + "username": "naray007" + }, + "after": { + "id": "github-workspaces:naray007", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "github-workspaces", + "username": "naray007" + }, + "after_unknown": {}, + "before_sensitive": {}, + "after_sensitive": {} + } + }, + { + "address": "module.repo_list[\"image-pipeline-ansible-playbooks\"].github_repository.repo", + "previous_address": "module.image_pipeline_repos[\"image-pipeline-ansible-playbooks\"].github_repository.repo", + "module_address": "module.repo_list[\"image-pipeline-ansible-playbooks\"]", + "mode": "managed", + "type": "github_repository", + "name": "repo", + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "update" + ], + "before": { + "allow_auto_merge": false, + "allow_merge_commit": false, + "allow_rebase_merge": false, + "allow_squash_merge": true, + "allow_update_branch": false, + "archive_on_destroy": true, + "archived": false, + "auto_init": true, + "default_branch": "main", + "delete_branch_on_merge": true, + "description": "Template repo for windows image pipelines", + "etag": "W/\"b6086d5086cc020c80a50173dc4dd1ccc503a1a3c913b5e594f7a87aa8c5f704\"", + "full_name": "CSVD/image-pipeline-ansible-playbooks", + "git_clone_url": "git://github.e.it.census.gov/CSVD/image-pipeline-ansible-playbooks.git", + "gitignore_template": "", + "has_discussions": false, + "has_downloads": false, + "has_issues": true, + "has_projects": true, + "has_wiki": true, + "homepage_url": "", + "html_url": "https://github.e.it.census.gov/CSVD/image-pipeline-ansible-playbooks", + "http_clone_url": "https://github.e.it.census.gov/CSVD/image-pipeline-ansible-playbooks.git", + "id": "image-pipeline-ansible-playbooks", + "ignore_vulnerability_alerts_during_read": null, + "is_template": false, + "license_template": null, + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "name": "image-pipeline-ansible-playbooks", + "node_id": "MDEwOlJlcG9zaXRvcnk5ODM=", + "pages": [], + "primary_language": "Jinja", + "private": true, + "repo_id": 983, + "security_and_analysis": [ + { + "advanced_security": [ + { + "status": "disabled" + } + ], + "secret_scanning": [ + { + "status": "disabled" + } + ], + "secret_scanning_push_protection": [ + { + "status": "disabled" + } + ] + } + ], + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "ssh_clone_url": "git@github.e.it.census.gov:CSVD/image-pipeline-ansible-playbooks.git", + "svn_url": "https://github.e.it.census.gov/CSVD/image-pipeline-ansible-playbooks", + "template": [], + "topics": [ + "terraform" + ], + "visibility": "private", + "vulnerability_alerts": false, + "web_commit_signoff_required": false + }, + "after": { + "allow_auto_merge": false, + "allow_merge_commit": false, + "allow_rebase_merge": false, + "allow_squash_merge": true, + "allow_update_branch": false, + "archive_on_destroy": true, + "archived": false, + "auto_init": true, + "default_branch": "main", + "delete_branch_on_merge": true, + "description": "Template repo for image pipelines", + "etag": "W/\"b6086d5086cc020c80a50173dc4dd1ccc503a1a3c913b5e594f7a87aa8c5f704\"", + "full_name": "CSVD/image-pipeline-ansible-playbooks", + "git_clone_url": "git://github.e.it.census.gov/CSVD/image-pipeline-ansible-playbooks.git", + "gitignore_template": "", + "has_discussions": false, + "has_downloads": false, + "has_issues": true, + "has_projects": true, + "has_wiki": true, + "homepage_url": "", + "html_url": "https://github.e.it.census.gov/CSVD/image-pipeline-ansible-playbooks", + "http_clone_url": "https://github.e.it.census.gov/CSVD/image-pipeline-ansible-playbooks.git", + "id": "image-pipeline-ansible-playbooks", + "ignore_vulnerability_alerts_during_read": null, + "is_template": false, + "license_template": null, + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "name": "image-pipeline-ansible-playbooks", + "node_id": "MDEwOlJlcG9zaXRvcnk5ODM=", + "pages": [], + "primary_language": "Jinja", + "private": true, + "repo_id": 983, + "security_and_analysis": [ + { + "advanced_security": [ + { + "status": "disabled" + } + ], + "secret_scanning": [ + { + "status": "disabled" + } + ], + "secret_scanning_push_protection": [ + { + "status": "disabled" + } + ] + } + ], + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "ssh_clone_url": "git@github.e.it.census.gov:CSVD/image-pipeline-ansible-playbooks.git", + "svn_url": "https://github.e.it.census.gov/CSVD/image-pipeline-ansible-playbooks", + "template": [], + "topics": [ + "terraform" + ], + "visibility": "public", + "vulnerability_alerts": false, + "web_commit_signoff_required": false + }, + "after_unknown": {}, + "before_sensitive": { + "pages": [], + "security_and_analysis": [ + { + "advanced_security": [ + {} + ], + "secret_scanning": [ + {} + ], + "secret_scanning_push_protection": [ + {} + ] + } + ], + "template": [], + "topics": [ + false + ] + }, + "after_sensitive": { + "pages": [], + "security_and_analysis": [ + { + "advanced_security": [ + {} + ], + "secret_scanning": [ + {} + ], + "secret_scanning_push_protection": [ + {} + ] + } + ], + "template": [], + "topics": [ + false + ] + } + } + }, + { + "address": "module.repo_list[\"image-pipeline-ansible-playbooks\"].github_repository_collaborator.collaborators[\"gomez385\"]", + "previous_address": "module.image_pipeline_repos[\"image-pipeline-ansible-playbooks\"].github_repository_collaborator.collaborators[\"gomez385\"]", + "module_address": "module.repo_list[\"image-pipeline-ansible-playbooks\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "gomez385", + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "no-op" + ], + "before": { + "id": "image-pipeline-ansible-playbooks:gomez385", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "image-pipeline-ansible-playbooks", + "username": "gomez385" + }, + "after": { + "id": "image-pipeline-ansible-playbooks:gomez385", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "image-pipeline-ansible-playbooks", + "username": "gomez385" + }, + "after_unknown": {}, + "before_sensitive": {}, + "after_sensitive": {} + } + }, + { + "address": "module.repo_list[\"image-pipeline-ansible-playbooks\"].github_repository_collaborator.collaborators[\"morga471\"]", + "previous_address": "module.image_pipeline_repos[\"image-pipeline-ansible-playbooks\"].github_repository_collaborator.collaborators[\"morga471\"]", + "module_address": "module.repo_list[\"image-pipeline-ansible-playbooks\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "morga471", + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "no-op" + ], + "before": { + "id": "image-pipeline-ansible-playbooks:morga471", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "image-pipeline-ansible-playbooks", + "username": "morga471" + }, + "after": { + "id": "image-pipeline-ansible-playbooks:morga471", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "image-pipeline-ansible-playbooks", + "username": "morga471" + }, + "after_unknown": {}, + "before_sensitive": {}, + "after_sensitive": {} + } + }, + { + "address": "module.repo_list[\"image-pipeline-ansible-playbooks\"].github_repository_collaborator.collaborators[\"naray007\"]", + "previous_address": "module.image_pipeline_repos[\"image-pipeline-ansible-playbooks\"].github_repository_collaborator.collaborators[\"naray007\"]", + "module_address": "module.repo_list[\"image-pipeline-ansible-playbooks\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "naray007", + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "no-op" + ], + "before": { + "id": "image-pipeline-ansible-playbooks:naray007", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "image-pipeline-ansible-playbooks", + "username": "naray007" + }, + "after": { + "id": "image-pipeline-ansible-playbooks:naray007", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "image-pipeline-ansible-playbooks", + "username": "naray007" + }, + "after_unknown": {}, + "before_sensitive": {}, + "after_sensitive": {} + } + }, + { + "address": "module.repo_list[\"image-pipeline-ansible-playbooks\"].github_repository_file.managed_extra_files[\"s3_upload.yaml\"]", + "previous_address": "module.image_pipeline_repos[\"image-pipeline-ansible-playbooks\"].github_repository_file.managed_extra_files[\"s3_upload.yaml\"]", + "module_address": "module.repo_list[\"image-pipeline-ansible-playbooks\"]", + "mode": "managed", + "type": "github_repository_file", + "name": "managed_extra_files", + "index": "s3_upload.yaml", + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "delete" + ], + "before": { + "autocreate_branch": false, + "autocreate_branch_source_branch": "main", + "autocreate_branch_source_sha": null, + "branch": "main", + "commit_author": null, + "commit_email": null, + "commit_message": "Update .github/workflows/s3_upload.yaml", + "commit_sha": "7f23027c238c8bf99e393275563dd49777ca5902", + "content": "# This is a basic workflow to help you get started with Actions\nname: S3 Upload\n\non:\n push:\n branches: [ \"main\" ]\n # Allows you to run this workflow manually from the Actions tab\n workflow_dispatch:\n \n# A workflow run is made up of one or more jobs that can run sequentially or in parallel\njobs:\n # This workflow contains a single job called \"build\"\n build:\n # The type of runner that the job will run on\n runs-on: [ \"229685449397\" ]\n \n # Steps represent a sequence of tasks that will be executed as part of the job\n steps:\n # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it\n - uses: CSVD/gh-actions-checkout@v4\n id: checkout\n with:\n persist-credentials: false\n\n - uses: CSVD/gh-actions-setup-node@v3\n with:\n node-version: 16\n \n - name: AWS Auth\n id: aws_auth\n uses: CSVD/aws-auth@main\n with:\n ecs: true\n\n - run: |\n zip -r image-pipeline-ansible-playbooks.zip *\n aws s3 cp image-pipeline-ansible-playbooks.zip s3://csvd-dev-ew-github-actions\n env:\n AWS_ACCESS_KEY_ID: ${{ steps.aws_auth.outputs.aws_access_key_id }}\n AWS_SECRET_ACCESS_KEY: ${{ steps.aws_auth.outputs.aws_secret_access_key }}\n AWS_SESSION_TOKEN: ${{ steps.aws_auth.outputs.aws_session_token }}\n", + "file": ".github/workflows/s3_upload.yaml", + "id": "image-pipeline-ansible-playbooks/.github/workflows/s3_upload.yaml", + "overwrite_on_create": true, + "ref": "main", + "repository": "image-pipeline-ansible-playbooks", + "sha": "7c3c97e79ac47c6da4eb9aaf913d458cd3d48ca8" + }, + "after": null, + "after_unknown": {}, + "before_sensitive": {}, + "after_sensitive": false + }, + "action_reason": "delete_because_each_key" + }, + { + "address": "module.repo_list[\"image-pipeline-asset-releases\"].github_repository.repo", + "previous_address": "module.asset_releases.github_repository.repo", + "module_address": "module.repo_list[\"image-pipeline-asset-releases\"]", + "mode": "managed", + "type": "github_repository", + "name": "repo", + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "update" + ], + "before": { + "allow_auto_merge": false, + "allow_merge_commit": false, + "allow_rebase_merge": false, + "allow_squash_merge": true, + "allow_update_branch": false, + "archive_on_destroy": true, + "archived": false, + "auto_init": true, + "default_branch": "main", + "delete_branch_on_merge": true, + "description": "Terraform Workspace for publishing image-pipeline-assets", + "etag": "W/\"0ab07eaa67048940e6aaeee8819f106057c3a7df91c159850dfbf6d69d34d1e3\"", + "full_name": "CSVD/image-pipeline-asset-releases", + "git_clone_url": "git://github.e.it.census.gov/CSVD/image-pipeline-asset-releases.git", + "gitignore_template": "", + "has_discussions": false, + "has_downloads": false, + "has_issues": true, + "has_projects": true, + "has_wiki": true, + "homepage_url": "", + "html_url": "https://github.e.it.census.gov/CSVD/image-pipeline-asset-releases", + "http_clone_url": "https://github.e.it.census.gov/CSVD/image-pipeline-asset-releases.git", + "id": "image-pipeline-asset-releases", + "ignore_vulnerability_alerts_during_read": null, + "is_template": false, + "license_template": null, + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "name": "image-pipeline-asset-releases", + "node_id": "MDEwOlJlcG9zaXRvcnk5OTY=", + "pages": [], + "primary_language": "", + "private": true, + "repo_id": 996, + "security_and_analysis": [ + { + "advanced_security": [ + { + "status": "disabled" + } + ], + "secret_scanning": [ + { + "status": "disabled" + } + ], + "secret_scanning_push_protection": [ + { + "status": "disabled" + } + ] + } + ], + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "ssh_clone_url": "git@github.e.it.census.gov:CSVD/image-pipeline-asset-releases.git", + "svn_url": "https://github.e.it.census.gov/CSVD/image-pipeline-asset-releases", + "template": [], + "topics": [ + "terraform" + ], + "visibility": "private", + "vulnerability_alerts": false, + "web_commit_signoff_required": false + }, + "after": { + "allow_auto_merge": false, + "allow_merge_commit": false, + "allow_rebase_merge": false, + "allow_squash_merge": true, + "allow_update_branch": false, + "archive_on_destroy": true, + "archived": false, + "auto_init": true, + "default_branch": "main", + "delete_branch_on_merge": true, + "description": "Terraform Workspace for publishing image-pipeline-assets", + "etag": "W/\"0ab07eaa67048940e6aaeee8819f106057c3a7df91c159850dfbf6d69d34d1e3\"", + "full_name": "CSVD/image-pipeline-asset-releases", + "git_clone_url": "git://github.e.it.census.gov/CSVD/image-pipeline-asset-releases.git", + "gitignore_template": "", + "has_discussions": false, + "has_downloads": false, + "has_issues": true, + "has_projects": true, + "has_wiki": true, + "homepage_url": "", + "html_url": "https://github.e.it.census.gov/CSVD/image-pipeline-asset-releases", + "http_clone_url": "https://github.e.it.census.gov/CSVD/image-pipeline-asset-releases.git", + "id": "image-pipeline-asset-releases", + "ignore_vulnerability_alerts_during_read": null, + "is_template": false, + "license_template": null, + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "name": "image-pipeline-asset-releases", + "node_id": "MDEwOlJlcG9zaXRvcnk5OTY=", + "pages": [], + "primary_language": "", + "private": true, + "repo_id": 996, + "security_and_analysis": [ + { + "advanced_security": [ + { + "status": "disabled" + } + ], + "secret_scanning": [ + { + "status": "disabled" + } + ], + "secret_scanning_push_protection": [ + { + "status": "disabled" + } + ] + } + ], + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "ssh_clone_url": "git@github.e.it.census.gov:CSVD/image-pipeline-asset-releases.git", + "svn_url": "https://github.e.it.census.gov/CSVD/image-pipeline-asset-releases", + "template": [], + "topics": [ + "terraform" + ], + "visibility": "public", + "vulnerability_alerts": false, + "web_commit_signoff_required": false + }, + "after_unknown": {}, + "before_sensitive": { + "pages": [], + "security_and_analysis": [ + { + "advanced_security": [ + {} + ], + "secret_scanning": [ + {} + ], + "secret_scanning_push_protection": [ + {} + ] + } + ], + "template": [], + "topics": [ + false + ] + }, + "after_sensitive": { + "pages": [], + "security_and_analysis": [ + { + "advanced_security": [ + {} + ], + "secret_scanning": [ + {} + ], + "secret_scanning_push_protection": [ + {} + ] + } + ], + "template": [], + "topics": [ + false + ] + } + } + }, + { + "address": "module.repo_list[\"image-pipeline-asset-releases\"].github_repository_collaborator.collaborators[\"gomez385\"]", + "previous_address": "module.asset_releases.github_repository_collaborator.collaborators[\"gomez385\"]", + "module_address": "module.repo_list[\"image-pipeline-asset-releases\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "gomez385", + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "no-op" + ], + "before": { + "id": "image-pipeline-asset-releases:gomez385", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "image-pipeline-asset-releases", + "username": "gomez385" + }, + "after": { + "id": "image-pipeline-asset-releases:gomez385", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "image-pipeline-asset-releases", + "username": "gomez385" + }, + "after_unknown": {}, + "before_sensitive": {}, + "after_sensitive": {} + } + }, + { + "address": "module.repo_list[\"image-pipeline-asset-releases\"].github_repository_collaborator.collaborators[\"morga471\"]", + "previous_address": "module.asset_releases.github_repository_collaborator.collaborators[\"morga471\"]", + "module_address": "module.repo_list[\"image-pipeline-asset-releases\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "morga471", + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "no-op" + ], + "before": { + "id": "image-pipeline-asset-releases:morga471", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "image-pipeline-asset-releases", + "username": "morga471" + }, + "after": { + "id": "image-pipeline-asset-releases:morga471", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "image-pipeline-asset-releases", + "username": "morga471" + }, + "after_unknown": {}, + "before_sensitive": {}, + "after_sensitive": {} + } + }, + { + "address": "module.repo_list[\"image-pipeline-asset-releases\"].github_repository_collaborator.collaborators[\"naray007\"]", + "previous_address": "module.asset_releases.github_repository_collaborator.collaborators[\"naray007\"]", + "module_address": "module.repo_list[\"image-pipeline-asset-releases\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "naray007", + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "no-op" + ], + "before": { + "id": "image-pipeline-asset-releases:naray007", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "image-pipeline-asset-releases", + "username": "naray007" + }, + "after": { + "id": "image-pipeline-asset-releases:naray007", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "image-pipeline-asset-releases", + "username": "naray007" + }, + "after_unknown": {}, + "before_sensitive": {}, + "after_sensitive": {} + } + }, + { + "address": "module.repo_list[\"image-pipeline-goss\"].github_repository.repo", + "previous_address": "module.image_pipeline_repos[\"image-pipeline-goss\"].github_repository.repo", + "module_address": "module.repo_list[\"image-pipeline-goss\"]", + "mode": "managed", + "type": "github_repository", + "name": "repo", + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "update" + ], + "before": { + "allow_auto_merge": false, + "allow_merge_commit": false, + "allow_rebase_merge": false, + "allow_squash_merge": true, + "allow_update_branch": false, + "archive_on_destroy": true, + "archived": false, + "auto_init": true, + "default_branch": "main", + "delete_branch_on_merge": true, + "description": "Template repo for windows image pipelines", + "etag": "W/\"22dac3c252584dd6571e43bf63438b36fbe8a1a4d3d07e0c0c134a9c5d3cf462\"", + "full_name": "CSVD/image-pipeline-goss", + "git_clone_url": "git://github.e.it.census.gov/CSVD/image-pipeline-goss.git", + "gitignore_template": "", + "has_discussions": false, + "has_downloads": false, + "has_issues": true, + "has_projects": true, + "has_wiki": true, + "homepage_url": "", + "html_url": "https://github.e.it.census.gov/CSVD/image-pipeline-goss", + "http_clone_url": "https://github.e.it.census.gov/CSVD/image-pipeline-goss.git", + "id": "image-pipeline-goss", + "ignore_vulnerability_alerts_during_read": null, + "is_template": false, + "license_template": null, + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "name": "image-pipeline-goss", + "node_id": "MDEwOlJlcG9zaXRvcnk5NDI=", + "pages": [], + "primary_language": "HCL", + "private": true, + "repo_id": 942, + "security_and_analysis": [ + { + "advanced_security": [ + { + "status": "disabled" + } + ], + "secret_scanning": [ + { + "status": "disabled" + } + ], + "secret_scanning_push_protection": [ + { + "status": "disabled" + } + ] + } + ], + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "ssh_clone_url": "git@github.e.it.census.gov:CSVD/image-pipeline-goss.git", + "svn_url": "https://github.e.it.census.gov/CSVD/image-pipeline-goss", + "template": [], + "topics": [ + "terraform" + ], + "visibility": "private", + "vulnerability_alerts": false, + "web_commit_signoff_required": false + }, + "after": { + "allow_auto_merge": false, + "allow_merge_commit": false, + "allow_rebase_merge": false, + "allow_squash_merge": true, + "allow_update_branch": false, + "archive_on_destroy": true, + "archived": false, + "auto_init": true, + "default_branch": "main", + "delete_branch_on_merge": true, + "description": "Template repo for image pipelines", + "etag": "W/\"22dac3c252584dd6571e43bf63438b36fbe8a1a4d3d07e0c0c134a9c5d3cf462\"", + "full_name": "CSVD/image-pipeline-goss", + "git_clone_url": "git://github.e.it.census.gov/CSVD/image-pipeline-goss.git", + "gitignore_template": "", + "has_discussions": false, + "has_downloads": false, + "has_issues": true, + "has_projects": true, + "has_wiki": true, + "homepage_url": "", + "html_url": "https://github.e.it.census.gov/CSVD/image-pipeline-goss", + "http_clone_url": "https://github.e.it.census.gov/CSVD/image-pipeline-goss.git", + "id": "image-pipeline-goss", + "ignore_vulnerability_alerts_during_read": null, + "is_template": false, + "license_template": null, + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "name": "image-pipeline-goss", + "node_id": "MDEwOlJlcG9zaXRvcnk5NDI=", + "pages": [], + "primary_language": "HCL", + "private": true, + "repo_id": 942, + "security_and_analysis": [ + { + "advanced_security": [ + { + "status": "disabled" + } + ], + "secret_scanning": [ + { + "status": "disabled" + } + ], + "secret_scanning_push_protection": [ + { + "status": "disabled" + } + ] + } + ], + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "ssh_clone_url": "git@github.e.it.census.gov:CSVD/image-pipeline-goss.git", + "svn_url": "https://github.e.it.census.gov/CSVD/image-pipeline-goss", + "template": [], + "topics": [ + "terraform" + ], + "visibility": "public", + "vulnerability_alerts": false, + "web_commit_signoff_required": false + }, + "after_unknown": {}, + "before_sensitive": { + "pages": [], + "security_and_analysis": [ + { + "advanced_security": [ + {} + ], + "secret_scanning": [ + {} + ], + "secret_scanning_push_protection": [ + {} + ] + } + ], + "template": [], + "topics": [ + false + ] + }, + "after_sensitive": { + "pages": [], + "security_and_analysis": [ + { + "advanced_security": [ + {} + ], + "secret_scanning": [ + {} + ], + "secret_scanning_push_protection": [ + {} + ] + } + ], + "template": [], + "topics": [ + false + ] + } + } + }, + { + "address": "module.repo_list[\"image-pipeline-goss\"].github_repository_collaborator.collaborators[\"gomez385\"]", + "previous_address": "module.image_pipeline_repos[\"image-pipeline-goss\"].github_repository_collaborator.collaborators[\"gomez385\"]", + "module_address": "module.repo_list[\"image-pipeline-goss\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "gomez385", + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "no-op" + ], + "before": { + "id": "image-pipeline-goss:gomez385", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "image-pipeline-goss", + "username": "gomez385" + }, + "after": { + "id": "image-pipeline-goss:gomez385", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "image-pipeline-goss", + "username": "gomez385" + }, + "after_unknown": {}, + "before_sensitive": {}, + "after_sensitive": {} + } + }, + { + "address": "module.repo_list[\"image-pipeline-goss\"].github_repository_collaborator.collaborators[\"morga471\"]", + "previous_address": "module.image_pipeline_repos[\"image-pipeline-goss\"].github_repository_collaborator.collaborators[\"morga471\"]", + "module_address": "module.repo_list[\"image-pipeline-goss\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "morga471", + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "no-op" + ], + "before": { + "id": "image-pipeline-goss:morga471", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "image-pipeline-goss", + "username": "morga471" + }, + "after": { + "id": "image-pipeline-goss:morga471", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "image-pipeline-goss", + "username": "morga471" + }, + "after_unknown": {}, + "before_sensitive": {}, + "after_sensitive": {} + } + }, + { + "address": "module.repo_list[\"image-pipeline-goss\"].github_repository_collaborator.collaborators[\"naray007\"]", + "previous_address": "module.image_pipeline_repos[\"image-pipeline-goss\"].github_repository_collaborator.collaborators[\"naray007\"]", + "module_address": "module.repo_list[\"image-pipeline-goss\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "naray007", + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "no-op" + ], + "before": { + "id": "image-pipeline-goss:naray007", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "image-pipeline-goss", + "username": "naray007" + }, + "after": { + "id": "image-pipeline-goss:naray007", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "image-pipeline-goss", + "username": "naray007" + }, + "after_unknown": {}, + "before_sensitive": {}, + "after_sensitive": {} + } + }, + { + "address": "module.repo_list[\"image-pipeline-goss\"].github_repository_file.managed_extra_files[\"s3_upload.yaml\"]", + "previous_address": "module.image_pipeline_repos[\"image-pipeline-goss\"].github_repository_file.managed_extra_files[\"s3_upload.yaml\"]", + "module_address": "module.repo_list[\"image-pipeline-goss\"]", + "mode": "managed", + "type": "github_repository_file", + "name": "managed_extra_files", + "index": "s3_upload.yaml", + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "update" + ], + "before": { + "autocreate_branch": null, + "autocreate_branch_source_branch": null, + "autocreate_branch_source_sha": null, + "branch": "main", + "commit_author": null, + "commit_email": null, + "commit_message": "Update .github/workflows/s3_upload.yaml", + "commit_sha": "8d51313ba5db9331411e60b91afef3ef6323a9c3", + "content": "# This is a basic workflow to help you get started with Actions\nname: S3 Upload\n\non:\n push:\n branches: [ \"main\" ]\n # Allows you to run this workflow manually from the Actions tab\n workflow_dispatch:\n \n# A workflow run is made up of one or more jobs that can run sequentially or in parallel\njobs:\n # This workflow contains a single job called \"build\"\n build:\n # The type of runner that the job will run on\n runs-on: [ \"229685449397\" ]\n \n # Steps represent a sequence of tasks that will be executed as part of the job\n steps:\n # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it\n - uses: CSVD/gh-actions-checkout@v4\n id: checkout\n with:\n persist-credentials: false\n\n - uses: CSVD/gh-actions-setup-node@v3\n with:\n node-version: 16\n \n - name: AWS Auth\n id: aws_auth\n uses: CSVD/aws-auth@main\n with:\n ecs: true\n\n - run: |\n zip -r image-pipeline-goss.zip *\n aws s3 cp image-pipeline-goss.zip s3://csvd-dev-ew-github-actions\n env:\n AWS_ACCESS_KEY_ID: ${{ steps.aws_auth.outputs.aws_access_key_id }}\n AWS_SECRET_ACCESS_KEY: ${{ steps.aws_auth.outputs.aws_secret_access_key }}\n AWS_SESSION_TOKEN: ${{ steps.aws_auth.outputs.aws_session_token }}\n", + "file": ".github/workflows/s3_upload.yaml", + "id": "image-pipeline-goss/.github/workflows/s3_upload.yaml", + "overwrite_on_create": true, + "ref": "main", + "repository": "image-pipeline-goss", + "sha": "b88a02be66eb1974b5b766d622f4316a2a8061b9" + }, + "after": { + "autocreate_branch": null, + "autocreate_branch_source_branch": null, + "autocreate_branch_source_sha": null, + "branch": "main", + "commit_author": null, + "commit_email": null, + "commit_message": "Update .github/workflows/s3_upload.yaml", + "commit_sha": "8d51313ba5db9331411e60b91afef3ef6323a9c3", + "content": "# This is a basic workflow to help you get started with Actions\nname: S3 Upload\n\non:\n push:\n branches: [ \"main\" ]\n # Allows you to run this workflow manually from the Actions tab\n workflow_dispatch:\n \n# A workflow run is made up of one or more jobs that can run sequentially or in parallel\njobs:\n # This workflow contains a single job called \"build\"\n build:\n # The type of runner that the job will run on\n runs-on: [ image-pipeline-goss-testing ]\n env:\n AWS_SECRET_ACCESS_KEY: \"${{ secrets.AWS_SECRET_ACCESS_KEY }}\"\n AWS_ACCESS_KEY_ID: \"${{ vars.AWS_ACCESS_KEY_ID }}\"\n AWS_SESSION_TOKEN: \"${{ secrets.AWS_SESSION_TOKEN }}\"\n \n\n # Steps represent a sequence of tasks that will be executed as part of the job\n steps:\n # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it\n - uses: actions/checkout@v3\n\n - uses: CSVD/gh-actions-setup-node@v3\n with:\n node-version: 16\n\n - uses: CSVD/gh-actions-setup-terraform@v2\n with:\n terraform_wrapper: false\n terraform_version: ${{ vars.terraform_version }}\n \n - name: get latest\n run: |\n terraform init -input=false -upgrade\n terraform apply -auto-approve -input=false\n working-directory: ./update\n\n - name: archive and upload\n run: |\n rm -rf .terraform update update/.terraform\n zip -r image-pipeline-goss-testing.zip *\n aws s3 cp image-pipeline-goss-testing.zip s3://csvd-dev-ew-github-actions\n", + "file": ".github/workflows/s3_upload.yaml", + "id": "image-pipeline-goss/.github/workflows/s3_upload.yaml", + "overwrite_on_create": true, + "ref": "main", + "repository": "image-pipeline-goss", + "sha": "b88a02be66eb1974b5b766d622f4316a2a8061b9" + }, + "after_unknown": {}, + "before_sensitive": {}, + "after_sensitive": {} + } + }, + { + "address": "module.repo_list[\"image-pipeline-packer\"].github_repository.repo", + "previous_address": "module.image_pipeline_repos[\"image-pipeline-packer\"].github_repository.repo", + "module_address": "module.repo_list[\"image-pipeline-packer\"]", + "mode": "managed", + "type": "github_repository", + "name": "repo", + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "update" + ], + "before": { + "allow_auto_merge": false, + "allow_merge_commit": false, + "allow_rebase_merge": false, + "allow_squash_merge": true, + "allow_update_branch": false, + "archive_on_destroy": true, + "archived": false, + "auto_init": true, + "default_branch": "main", + "delete_branch_on_merge": true, + "description": "Template repo for windows image pipelines", + "etag": "W/\"f098082b026cdb8e23a98afebcf9839b4863bb9ac228647ac57cb0dcc1096587\"", + "full_name": "CSVD/image-pipeline-packer", + "git_clone_url": "git://github.e.it.census.gov/CSVD/image-pipeline-packer.git", + "gitignore_template": "", + "has_discussions": false, + "has_downloads": false, + "has_issues": true, + "has_projects": true, + "has_wiki": true, + "homepage_url": "", + "html_url": "https://github.e.it.census.gov/CSVD/image-pipeline-packer", + "http_clone_url": "https://github.e.it.census.gov/CSVD/image-pipeline-packer.git", + "id": "image-pipeline-packer", + "ignore_vulnerability_alerts_during_read": null, + "is_template": false, + "license_template": null, + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "name": "image-pipeline-packer", + "node_id": "MDEwOlJlcG9zaXRvcnk5OTU=", + "pages": [], + "primary_language": "HCL", + "private": true, + "repo_id": 995, + "security_and_analysis": [ + { + "advanced_security": [ + { + "status": "disabled" + } + ], + "secret_scanning": [ + { + "status": "disabled" + } + ], + "secret_scanning_push_protection": [ + { + "status": "disabled" + } + ] + } + ], + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "ssh_clone_url": "git@github.e.it.census.gov:CSVD/image-pipeline-packer.git", + "svn_url": "https://github.e.it.census.gov/CSVD/image-pipeline-packer", + "template": [], + "topics": [ + "terraform" + ], + "visibility": "private", + "vulnerability_alerts": false, + "web_commit_signoff_required": false + }, + "after": { + "allow_auto_merge": false, + "allow_merge_commit": false, + "allow_rebase_merge": false, + "allow_squash_merge": true, + "allow_update_branch": false, + "archive_on_destroy": true, + "archived": false, + "auto_init": true, + "default_branch": "main", + "delete_branch_on_merge": true, + "description": "Template repo for image pipelines", + "etag": "W/\"f098082b026cdb8e23a98afebcf9839b4863bb9ac228647ac57cb0dcc1096587\"", + "full_name": "CSVD/image-pipeline-packer", + "git_clone_url": "git://github.e.it.census.gov/CSVD/image-pipeline-packer.git", + "gitignore_template": "", + "has_discussions": false, + "has_downloads": false, + "has_issues": true, + "has_projects": true, + "has_wiki": true, + "homepage_url": "", + "html_url": "https://github.e.it.census.gov/CSVD/image-pipeline-packer", + "http_clone_url": "https://github.e.it.census.gov/CSVD/image-pipeline-packer.git", + "id": "image-pipeline-packer", + "ignore_vulnerability_alerts_during_read": null, + "is_template": false, + "license_template": null, + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "name": "image-pipeline-packer", + "node_id": "MDEwOlJlcG9zaXRvcnk5OTU=", + "pages": [], + "primary_language": "HCL", + "private": true, + "repo_id": 995, + "security_and_analysis": [ + { + "advanced_security": [ + { + "status": "disabled" + } + ], + "secret_scanning": [ + { + "status": "disabled" + } + ], + "secret_scanning_push_protection": [ + { + "status": "disabled" + } + ] + } + ], + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "ssh_clone_url": "git@github.e.it.census.gov:CSVD/image-pipeline-packer.git", + "svn_url": "https://github.e.it.census.gov/CSVD/image-pipeline-packer", + "template": [], + "topics": [ + "terraform" + ], + "visibility": "public", + "vulnerability_alerts": false, + "web_commit_signoff_required": false + }, + "after_unknown": {}, + "before_sensitive": { + "pages": [], + "security_and_analysis": [ + { + "advanced_security": [ + {} + ], + "secret_scanning": [ + {} + ], + "secret_scanning_push_protection": [ + {} + ] + } + ], + "template": [], + "topics": [ + false + ] + }, + "after_sensitive": { + "pages": [], + "security_and_analysis": [ + { + "advanced_security": [ + {} + ], + "secret_scanning": [ + {} + ], + "secret_scanning_push_protection": [ + {} + ] + } + ], + "template": [], + "topics": [ + false + ] + } + } + }, + { + "address": "module.repo_list[\"image-pipeline-packer\"].github_repository_collaborator.collaborators[\"gomez385\"]", + "previous_address": "module.image_pipeline_repos[\"image-pipeline-packer\"].github_repository_collaborator.collaborators[\"gomez385\"]", + "module_address": "module.repo_list[\"image-pipeline-packer\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "gomez385", + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "no-op" + ], + "before": { + "id": "image-pipeline-packer:gomez385", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "image-pipeline-packer", + "username": "gomez385" + }, + "after": { + "id": "image-pipeline-packer:gomez385", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "image-pipeline-packer", + "username": "gomez385" + }, + "after_unknown": {}, + "before_sensitive": {}, + "after_sensitive": {} + } + }, + { + "address": "module.repo_list[\"image-pipeline-packer\"].github_repository_collaborator.collaborators[\"morga471\"]", + "previous_address": "module.image_pipeline_repos[\"image-pipeline-packer\"].github_repository_collaborator.collaborators[\"morga471\"]", + "module_address": "module.repo_list[\"image-pipeline-packer\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "morga471", + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "no-op" + ], + "before": { + "id": "image-pipeline-packer:morga471", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "image-pipeline-packer", + "username": "morga471" + }, + "after": { + "id": "image-pipeline-packer:morga471", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "image-pipeline-packer", + "username": "morga471" + }, + "after_unknown": {}, + "before_sensitive": {}, + "after_sensitive": {} + } + }, + { + "address": "module.repo_list[\"image-pipeline-packer\"].github_repository_collaborator.collaborators[\"naray007\"]", + "previous_address": "module.image_pipeline_repos[\"image-pipeline-packer\"].github_repository_collaborator.collaborators[\"naray007\"]", + "module_address": "module.repo_list[\"image-pipeline-packer\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "naray007", + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "no-op" + ], + "before": { + "id": "image-pipeline-packer:naray007", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "image-pipeline-packer", + "username": "naray007" + }, + "after": { + "id": "image-pipeline-packer:naray007", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "image-pipeline-packer", + "username": "naray007" + }, + "after_unknown": {}, + "before_sensitive": {}, + "after_sensitive": {} + } + }, + { + "address": "module.repo_list[\"image-pipeline-packer\"].github_repository_file.managed_extra_files[\"s3_upload.yaml\"]", + "previous_address": "module.image_pipeline_repos[\"image-pipeline-packer\"].github_repository_file.managed_extra_files[\"s3_upload.yaml\"]", + "module_address": "module.repo_list[\"image-pipeline-packer\"]", + "mode": "managed", + "type": "github_repository_file", + "name": "managed_extra_files", + "index": "s3_upload.yaml", + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "delete" + ], + "before": { + "autocreate_branch": null, + "autocreate_branch_source_branch": null, + "autocreate_branch_source_sha": null, + "branch": "main", + "commit_author": null, + "commit_email": null, + "commit_message": "Update .github/workflows/s3_upload.yaml", + "commit_sha": "7c7de00000db4d4edf11680621326723efa82327", + "content": "# This is a basic workflow to help you get started with Actions\nname: S3 Upload\n\non:\n push:\n branches: [ \"main\" ]\n # Allows you to run this workflow manually from the Actions tab\n workflow_dispatch:\n \n# A workflow run is made up of one or more jobs that can run sequentially or in parallel\njobs:\n # This workflow contains a single job called \"build\"\n build:\n # The type of runner that the job will run on\n runs-on: [ \"229685449397\" ]\n \n # Steps represent a sequence of tasks that will be executed as part of the job\n steps:\n # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it\n - uses: CSVD/gh-actions-checkout@v4\n id: checkout\n with:\n persist-credentials: false\n\n - uses: CSVD/gh-actions-setup-node@v3\n with:\n node-version: 16\n \n - name: AWS Auth\n id: aws_auth\n uses: CSVD/aws-auth@main\n with:\n ecs: true\n\n - run: |\n zip -r image-pipeline-packer.zip *\n aws s3 cp image-pipeline-packer.zip s3://csvd-dev-ew-github-actions\n env:\n AWS_ACCESS_KEY_ID: ${{ steps.aws_auth.outputs.aws_access_key_id }}\n AWS_SECRET_ACCESS_KEY: ${{ steps.aws_auth.outputs.aws_secret_access_key }}\n AWS_SESSION_TOKEN: ${{ steps.aws_auth.outputs.aws_session_token }}\n", + "file": ".github/workflows/s3_upload.yaml", + "id": "image-pipeline-packer/.github/workflows/s3_upload.yaml", + "overwrite_on_create": true, + "ref": "main", + "repository": "image-pipeline-packer", + "sha": "e3ab58756b0eb54540f8a4b06bc43d88e86aeee7" + }, + "after": null, + "after_unknown": {}, + "before_sensitive": {}, + "after_sensitive": false + }, + "action_reason": "delete_because_each_key" + }, + { + "address": "module.repo_list[\"morpheus-clouds\"].github_repository.repo", + "previous_address": "module.morpheus_repos[\"morpheus-clouds\"].github_repository.repo", + "module_address": "module.repo_list[\"morpheus-clouds\"]", + "mode": "managed", + "type": "github_repository", + "name": "repo", + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "update" + ], + "before": { + "allow_auto_merge": false, + "allow_merge_commit": false, + "allow_rebase_merge": false, + "allow_squash_merge": true, + "allow_update_branch": false, + "archive_on_destroy": true, + "archived": false, + "auto_init": true, + "default_branch": "main", + "delete_branch_on_merge": true, + "description": "Repo for morpheus cloud", + "etag": "W/\"821214079c1450c9472028120d6a9c503f186a8f0a1b660a9745f68c96d16832\"", + "full_name": "CSVD/morpheus-clouds", + "git_clone_url": "git://github.e.it.census.gov/CSVD/morpheus-clouds.git", + "gitignore_template": "", + "has_discussions": false, + "has_downloads": false, + "has_issues": true, + "has_projects": true, + "has_wiki": true, + "homepage_url": "", + "html_url": "https://github.e.it.census.gov/CSVD/morpheus-clouds", + "http_clone_url": "https://github.e.it.census.gov/CSVD/morpheus-clouds.git", + "id": "morpheus-clouds", + "ignore_vulnerability_alerts_during_read": null, + "is_template": false, + "license_template": null, + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "name": "morpheus-clouds", + "node_id": "MDEwOlJlcG9zaXRvcnkxMDEy", + "pages": [], + "primary_language": "HCL", + "private": true, + "repo_id": 1012, + "security_and_analysis": [ + { + "advanced_security": [ + { + "status": "disabled" + } + ], + "secret_scanning": [ + { + "status": "disabled" + } + ], + "secret_scanning_push_protection": [ + { + "status": "disabled" + } + ] + } + ], + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "ssh_clone_url": "git@github.e.it.census.gov:CSVD/morpheus-clouds.git", + "svn_url": "https://github.e.it.census.gov/CSVD/morpheus-clouds", + "template": [], + "topics": [ + "morpheus", + "terraform" + ], + "visibility": "private", + "vulnerability_alerts": false, + "web_commit_signoff_required": false + }, + "after": { + "allow_auto_merge": false, + "allow_merge_commit": false, + "allow_rebase_merge": false, + "allow_squash_merge": true, + "allow_update_branch": false, + "archive_on_destroy": true, + "archived": false, + "auto_init": true, + "default_branch": "main", + "delete_branch_on_merge": true, + "description": "Repo for morpheus cloud", + "etag": "W/\"821214079c1450c9472028120d6a9c503f186a8f0a1b660a9745f68c96d16832\"", + "full_name": "CSVD/morpheus-clouds", + "git_clone_url": "git://github.e.it.census.gov/CSVD/morpheus-clouds.git", + "gitignore_template": "", + "has_discussions": false, + "has_downloads": false, + "has_issues": true, + "has_projects": true, + "has_wiki": true, + "homepage_url": "", + "html_url": "https://github.e.it.census.gov/CSVD/morpheus-clouds", + "http_clone_url": "https://github.e.it.census.gov/CSVD/morpheus-clouds.git", + "id": "morpheus-clouds", + "ignore_vulnerability_alerts_during_read": null, + "is_template": false, + "license_template": null, + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "name": "morpheus-clouds", + "node_id": "MDEwOlJlcG9zaXRvcnkxMDEy", + "pages": [], + "primary_language": "HCL", + "private": true, + "repo_id": 1012, + "security_and_analysis": [ + { + "advanced_security": [ + { + "status": "disabled" + } + ], + "secret_scanning": [ + { + "status": "disabled" + } + ], + "secret_scanning_push_protection": [ + { + "status": "disabled" + } + ] + } + ], + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "ssh_clone_url": "git@github.e.it.census.gov:CSVD/morpheus-clouds.git", + "svn_url": "https://github.e.it.census.gov/CSVD/morpheus-clouds", + "template": [], + "topics": [ + "morpheus", + "terraform" + ], + "visibility": "public", + "vulnerability_alerts": false, + "web_commit_signoff_required": false + }, + "after_unknown": {}, + "before_sensitive": { + "pages": [], + "security_and_analysis": [ + { + "advanced_security": [ + {} + ], + "secret_scanning": [ + {} + ], + "secret_scanning_push_protection": [ + {} + ] + } + ], + "template": [], + "topics": [ + false, + false + ] + }, + "after_sensitive": { + "pages": [], + "security_and_analysis": [ + { + "advanced_security": [ + {} + ], + "secret_scanning": [ + {} + ], + "secret_scanning_push_protection": [ + {} + ] + } + ], + "template": [], + "topics": [ + false, + false + ] + } + } + }, + { + "address": "module.repo_list[\"morpheus-clouds\"].github_repository_collaborator.collaborators[\"arnol377\"]", + "previous_address": "module.morpheus_repos[\"morpheus-clouds\"].github_repository_collaborator.collaborators[\"arnol377\"]", + "module_address": "module.repo_list[\"morpheus-clouds\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "arnol377", + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "delete" + ], + "before": { + "id": "morpheus-clouds:arnol377", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "morpheus-clouds", + "username": "arnol377" + }, + "after": null, + "after_unknown": {}, + "before_sensitive": {}, + "after_sensitive": false + }, + "action_reason": "delete_because_each_key" + }, + { + "address": "module.repo_list[\"morpheus-clouds\"].github_repository_collaborator.collaborators[\"gomez385\"]", + "previous_address": "module.morpheus_repos[\"morpheus-clouds\"].github_repository_collaborator.collaborators[\"gomez385\"]", + "module_address": "module.repo_list[\"morpheus-clouds\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "gomez385", + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "no-op" + ], + "before": { + "id": "morpheus-clouds:gomez385", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "morpheus-clouds", + "username": "gomez385" + }, + "after": { + "id": "morpheus-clouds:gomez385", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "morpheus-clouds", + "username": "gomez385" + }, + "after_unknown": {}, + "before_sensitive": {}, + "after_sensitive": {} + } + }, + { + "address": "module.repo_list[\"morpheus-clouds\"].github_repository_collaborator.collaborators[\"morga471\"]", + "module_address": "module.repo_list[\"morpheus-clouds\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "morga471", + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "create" + ], + "before": null, + "after": { + "permission": "admin", + "permission_diff_suppression": false, + "repository": "morpheus-clouds", + "username": "morga471" + }, + "after_unknown": { + "id": true, + "invitation_id": true + }, + "before_sensitive": false, + "after_sensitive": {} + } + }, + { + "address": "module.repo_list[\"morpheus-clouds\"].github_repository_collaborator.collaborators[\"naray007\"]", + "module_address": "module.repo_list[\"morpheus-clouds\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "naray007", + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "create" + ], + "before": null, + "after": { + "permission": "admin", + "permission_diff_suppression": false, + "repository": "morpheus-clouds", + "username": "naray007" + }, + "after_unknown": { + "id": true, + "invitation_id": true + }, + "before_sensitive": false, + "after_sensitive": {} + } + }, + { + "address": "module.repo_list[\"morpheus-clouds\"].github_repository_file.managed_extra_files[\"terraform-apply.yaml\"]", + "previous_address": "module.morpheus_repos[\"morpheus-clouds\"].github_repository_file.managed_extra_files[\"terraform-apply.yaml\"]", + "module_address": "module.repo_list[\"morpheus-clouds\"]", + "mode": "managed", + "type": "github_repository_file", + "name": "managed_extra_files", + "index": "terraform-apply.yaml", + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "delete" + ], + "before": { + "autocreate_branch": false, + "autocreate_branch_source_branch": "main", + "autocreate_branch_source_sha": null, + "branch": "main", + "commit_author": null, + "commit_email": null, + "commit_message": "Add .github/workflows/terraform-apply.yaml", + "commit_sha": "df0bc5e9b8949e856f1b91e276de446a8c5bee3f", + "content": "# This is a basic workflow to help you get started with Actions\nname: Terraform Apply\n\n# Controls when the workflow will run\non:\n # Triggers the workflow on push or pull request events but only for the \"main\" branch\n push:\n branches: [ \"main\" ]\n # Allows you to run this workflow manually from the Actions tab\n workflow_dispatch:\n\n# A workflow run is made up of one or more jobs that can run sequentially or in parallel\njobs:\n # This workflow contains a single job called \"build\"\n build:\n # The type of runner that the job will run on\n runs-on: [ morpheus-clouds ]\n env:\n AWS_SECRET_ACCESS_KEY: \"${{ secrets.AWS_SECRET_ACCESS_KEY }}\"\n AWS_ACCESS_KEY_ID: \"${{ vars.AWS_ACCESS_KEY_ID }}\"\n AWS_SESSION_TOKEN: \"${{ secrets.AWS_SESSION_TOKEN }}\"\n \n\n # Steps represent a sequence of tasks that will be executed as part of the job\n steps:\n # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it\n - uses: actions/checkout@v3\n\n\n - uses: CSVD/gh-actions-setup-node@v3\n with:\n node-version: 16\n \n - uses: CSVD/gh-actions-setup-terraform@v2\n with:\n terraform_version: ${{ vars.terraform_version }}\n \n - name: Terraform Format\n id: fmt\n \n run: |\n terraform fmt -check\n\n - name: Autoformat Halt\n if: env.auto_format == 'true'\n \n run: exit 1\n\n - name: Terraform Init\n id: init\n \n run: terraform init -upgrade\n\n - name: Terraform Validate\n id: validate\n \n run: terraform validate\n\n - name: Terraform Apply\n id: apply\n \n run: terraform apply -auto-approve\n continue-on-error: true\n", + "file": ".github/workflows/terraform-apply.yaml", + "id": "morpheus-clouds/.github/workflows/terraform-apply.yaml", + "overwrite_on_create": true, + "ref": "main", + "repository": "morpheus-clouds", + "sha": "5f982c12ec363310f48fdf45ab4ad02afb54aa51" + }, + "after": null, + "after_unknown": {}, + "before_sensitive": {}, + "after_sensitive": false + }, + "action_reason": "delete_because_each_key" + }, + { + "address": "module.repo_list[\"morpheus-clouds\"].github_repository_file.managed_extra_files[\"terraform-plan.yaml\"]", + "previous_address": "module.morpheus_repos[\"morpheus-clouds\"].github_repository_file.managed_extra_files[\"terraform-plan.yaml\"]", + "module_address": "module.repo_list[\"morpheus-clouds\"]", + "mode": "managed", + "type": "github_repository_file", + "name": "managed_extra_files", + "index": "terraform-plan.yaml", + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "delete" + ], + "before": { + "autocreate_branch": false, + "autocreate_branch_source_branch": "main", + "autocreate_branch_source_sha": null, + "branch": "main", + "commit_author": null, + "commit_email": null, + "commit_message": "Add .github/workflows/terraform-plan.yaml", + "commit_sha": "63f1a5748d00cebeca1d686ddee6a5e8118f8bba", + "content": "\n# This is a basic workflow to help you get started with Actions\n\nname: Terraform Plan\n\n\n# Controls when the workflow will run\non:\n pull_request:\n\n# A workflow run is made up of one or more jobs that can run sequentially or in parallel\njobs:\n # This workflow contains a single job called \"build\"\n build:\n # The type of runner that the job will run on\n runs-on: [ morpheus-clouds ]\n env:\n AWS_SECRET_ACCESS_KEY: \"${{ secrets.AWS_SECRET_ACCESS_KEY }}\"\n AWS_ACCESS_KEY_ID: \"${{ vars.AWS_ACCESS_KEY_ID }}\"\n AWS_SESSION_TOKEN: \"${{ secrets.AWS_SESSION_TOKEN }}\"\n \n\n # Steps represent a sequence of tasks that will be executed as part of the job\n steps:\n # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it\n - uses: actions/checkout@v3\n with:\n ref: ${{ github.head_ref }}\n token: ${{ secrets.GH_TOKEN }}\n\n - uses: CSVD/gh-actions-setup-node@v3\n with:\n node-version: 16\n \n - uses: CSVD/gh-actions-setup-terraform@v2\n with:\n terraform_version: ${{ vars.terraform_version }}\n\n - name: Terraform Format\n id: fmt\n run: |\n terraform fmt\n if ! git diff-index --quiet HEAD; then \n git config --global user.name 'gomez385'\n git config --global user.email 'james.f.gomez@census.gov'\n git commit -am \"Autoformatting TF Code\"\n git push\n echo \"auto_format=true\" >> $GITHUB_ENV \n fi\n\n - name: Autoformat Halt\n if: env.auto_format == 'true'\n run: exit 0\n\n - name: Terraform Init\n id: init\n \n run: terraform init -upgrade\n\n - name: Terraform Validate\n id: validate\n \n run: terraform validate\n\n - name: Terraform Plan\n id: plan\n \n run: terraform plan\n continue-on-error: true\n\n - name: Update Pull Request\n uses: CSVD/gh-actions-github-script@v6\n if: github.event_name == 'pull_request'\n with:\n github-token: ${{ secrets.GH_TOKEN }}\n script: |\n const output = `#### Terraform Format and Style 🖌\\`${{ steps.fmt.outcome }}\\`\n #### Terraform Initialization ⚙️\\`${{ steps.init.outcome }}\\`\n #### Terraform Validation 🤖\\`${{ steps.validate.outcome }}\\`\n #### Terraform Plan:\n ${{ steps.plan.outcome }}\n *Pushed by: @${{ github.actor }}, Action: \\`${{ github.event_name }}\\`*`;\n\n github.rest.issues.createComment({\n issue_number: context.issue.number,\n owner: context.repo.owner,\n repo: context.repo.repo,\n body: output\n })\n", + "file": ".github/workflows/terraform-plan.yaml", + "id": "morpheus-clouds/.github/workflows/terraform-plan.yaml", + "overwrite_on_create": true, + "ref": "main", + "repository": "morpheus-clouds", + "sha": "ad6457305e1d68ad20f4efa2a97fc011c289343d" + }, + "after": null, + "after_unknown": {}, + "before_sensitive": {}, + "after_sensitive": false + }, + "action_reason": "delete_because_each_key" + }, + { + "address": "module.repo_list[\"morpheus-repos\"].github_repository.repo", + "module_address": "module.repo_list[\"morpheus-repos\"]", + "mode": "managed", + "type": "github_repository", + "name": "repo", + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "no-op" + ], + "before": { + "allow_auto_merge": false, + "allow_merge_commit": false, + "allow_rebase_merge": false, + "allow_squash_merge": true, + "allow_update_branch": false, + "archive_on_destroy": true, + "archived": false, + "auto_init": true, + "default_branch": "main", + "delete_branch_on_merge": true, + "description": "morpheus-repos", + "etag": "W/\"28dd1636e9ea975361ed55223c9896be94752c7e3f6dea9cdb48c87c477a9706\"", + "full_name": "CSVD/morpheus-repos", + "git_clone_url": "git://github.e.it.census.gov/CSVD/morpheus-repos.git", + "gitignore_template": "", + "has_discussions": false, + "has_downloads": false, + "has_issues": true, + "has_projects": true, + "has_wiki": true, + "homepage_url": "", + "html_url": "https://github.e.it.census.gov/CSVD/morpheus-repos", + "http_clone_url": "https://github.e.it.census.gov/CSVD/morpheus-repos.git", + "id": "morpheus-repos", + "ignore_vulnerability_alerts_during_read": null, + "is_template": false, + "license_template": null, + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "name": "morpheus-repos", + "node_id": "MDEwOlJlcG9zaXRvcnkxMDY5", + "pages": [], + "primary_language": "HCL", + "private": false, + "repo_id": 1069, + "security_and_analysis": [ + { + "advanced_security": [ + { + "status": "disabled" + } + ], + "secret_scanning": [ + { + "status": "disabled" + } + ], + "secret_scanning_push_protection": [ + { + "status": "disabled" + } + ] + } + ], + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "ssh_clone_url": "git@github.e.it.census.gov:CSVD/morpheus-repos.git", + "svn_url": "https://github.e.it.census.gov/CSVD/morpheus-repos", + "template": [], + "topics": [ + "morpheus" + ], + "visibility": "public", + "vulnerability_alerts": false, + "web_commit_signoff_required": false + }, + "after": { + "allow_auto_merge": false, + "allow_merge_commit": false, + "allow_rebase_merge": false, + "allow_squash_merge": true, + "allow_update_branch": false, + "archive_on_destroy": true, + "archived": false, + "auto_init": true, + "default_branch": "main", + "delete_branch_on_merge": true, + "description": "morpheus-repos", + "etag": "W/\"28dd1636e9ea975361ed55223c9896be94752c7e3f6dea9cdb48c87c477a9706\"", + "full_name": "CSVD/morpheus-repos", + "git_clone_url": "git://github.e.it.census.gov/CSVD/morpheus-repos.git", + "gitignore_template": "", + "has_discussions": false, + "has_downloads": false, + "has_issues": true, + "has_projects": true, + "has_wiki": true, + "homepage_url": "", + "html_url": "https://github.e.it.census.gov/CSVD/morpheus-repos", + "http_clone_url": "https://github.e.it.census.gov/CSVD/morpheus-repos.git", + "id": "morpheus-repos", + "ignore_vulnerability_alerts_during_read": null, + "is_template": false, + "license_template": null, + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "name": "morpheus-repos", + "node_id": "MDEwOlJlcG9zaXRvcnkxMDY5", + "pages": [], + "primary_language": "HCL", + "private": false, + "repo_id": 1069, + "security_and_analysis": [ + { + "advanced_security": [ + { + "status": "disabled" + } + ], + "secret_scanning": [ + { + "status": "disabled" + } + ], + "secret_scanning_push_protection": [ + { + "status": "disabled" + } + ] + } + ], + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "ssh_clone_url": "git@github.e.it.census.gov:CSVD/morpheus-repos.git", + "svn_url": "https://github.e.it.census.gov/CSVD/morpheus-repos", + "template": [], + "topics": [ + "morpheus" + ], + "visibility": "public", + "vulnerability_alerts": false, + "web_commit_signoff_required": false + }, + "after_unknown": {}, + "before_sensitive": { + "pages": [], + "security_and_analysis": [ + { + "advanced_security": [ + {} + ], + "secret_scanning": [ + {} + ], + "secret_scanning_push_protection": [ + {} + ] + } + ], + "template": [], + "topics": [ + false + ] + }, + "after_sensitive": { + "pages": [], + "security_and_analysis": [ + { + "advanced_security": [ + {} + ], + "secret_scanning": [ + {} + ], + "secret_scanning_push_protection": [ + {} + ] + } + ], + "template": [], + "topics": [ + false + ] + } + } + }, + { + "address": "module.repo_list[\"morpheus-repos\"].github_repository_collaborator.collaborators[\"gomez385\"]", + "module_address": "module.repo_list[\"morpheus-repos\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "gomez385", + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "no-op" + ], + "before": { + "id": "morpheus-repos:gomez385", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "morpheus-repos", + "username": "gomez385" + }, + "after": { + "id": "morpheus-repos:gomez385", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "morpheus-repos", + "username": "gomez385" + }, + "after_unknown": {}, + "before_sensitive": {}, + "after_sensitive": {} + } + }, + { + "address": "module.repo_list[\"morpheus-repos\"].github_repository_collaborator.collaborators[\"morga471\"]", + "module_address": "module.repo_list[\"morpheus-repos\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "morga471", + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "no-op" + ], + "before": { + "id": "morpheus-repos:morga471", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "morpheus-repos", + "username": "morga471" + }, + "after": { + "id": "morpheus-repos:morga471", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "morpheus-repos", + "username": "morga471" + }, + "after_unknown": {}, + "before_sensitive": {}, + "after_sensitive": {} + } + }, + { + "address": "module.repo_list[\"morpheus-repos\"].github_repository_collaborator.collaborators[\"naray007\"]", + "module_address": "module.repo_list[\"morpheus-repos\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "naray007", + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "no-op" + ], + "before": { + "id": "morpheus-repos:naray007", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "morpheus-repos", + "username": "naray007" + }, + "after": { + "id": "morpheus-repos:naray007", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "morpheus-repos", + "username": "naray007" + }, + "after_unknown": {}, + "before_sensitive": {}, + "after_sensitive": {} + } + }, + { + "address": "module.repo_list[\"opensearch\"].github_repository.repo", + "previous_address": "module.opensearch.github_repository.repo", + "module_address": "module.repo_list[\"opensearch\"]", + "mode": "managed", + "type": "github_repository", + "name": "repo", + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "no-op" + ], + "before": { + "allow_auto_merge": false, + "allow_merge_commit": false, + "allow_rebase_merge": false, + "allow_squash_merge": true, + "allow_update_branch": false, + "archive_on_destroy": true, + "archived": false, + "auto_init": true, + "default_branch": "main", + "delete_branch_on_merge": true, + "description": "Terraform workspace for managing OpenSearch", + "etag": "W/\"ed0854ff73d6fcd5dfbfed8e4200a480520dae3d435c3f91cb37719d8470452c\"", + "full_name": "CSVD/opensearch", + "git_clone_url": "git://github.e.it.census.gov/CSVD/opensearch.git", + "gitignore_template": "", + "has_discussions": false, + "has_downloads": false, + "has_issues": true, + "has_projects": true, + "has_wiki": true, + "homepage_url": "", + "html_url": "https://github.e.it.census.gov/CSVD/opensearch", + "http_clone_url": "https://github.e.it.census.gov/CSVD/opensearch.git", + "id": "opensearch", + "ignore_vulnerability_alerts_during_read": null, + "is_template": false, + "license_template": null, + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "name": "opensearch", + "node_id": "MDEwOlJlcG9zaXRvcnkxMDQ4", + "pages": [], + "primary_language": "HCL", + "private": false, + "repo_id": 1048, + "security_and_analysis": [ + { + "advanced_security": [ + { + "status": "disabled" + } + ], + "secret_scanning": [ + { + "status": "disabled" + } + ], + "secret_scanning_push_protection": [ + { + "status": "disabled" + } + ] + } + ], + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "ssh_clone_url": "git@github.e.it.census.gov:CSVD/opensearch.git", + "svn_url": "https://github.e.it.census.gov/CSVD/opensearch", + "template": [], + "topics": [ + "terraform" + ], + "visibility": "public", + "vulnerability_alerts": false, + "web_commit_signoff_required": false + }, + "after": { + "allow_auto_merge": false, + "allow_merge_commit": false, + "allow_rebase_merge": false, + "allow_squash_merge": true, + "allow_update_branch": false, + "archive_on_destroy": true, + "archived": false, + "auto_init": true, + "default_branch": "main", + "delete_branch_on_merge": true, + "description": "Terraform workspace for managing OpenSearch", + "etag": "W/\"ed0854ff73d6fcd5dfbfed8e4200a480520dae3d435c3f91cb37719d8470452c\"", + "full_name": "CSVD/opensearch", + "git_clone_url": "git://github.e.it.census.gov/CSVD/opensearch.git", + "gitignore_template": "", + "has_discussions": false, + "has_downloads": false, + "has_issues": true, + "has_projects": true, + "has_wiki": true, + "homepage_url": "", + "html_url": "https://github.e.it.census.gov/CSVD/opensearch", + "http_clone_url": "https://github.e.it.census.gov/CSVD/opensearch.git", + "id": "opensearch", + "ignore_vulnerability_alerts_during_read": null, + "is_template": false, + "license_template": null, + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "name": "opensearch", + "node_id": "MDEwOlJlcG9zaXRvcnkxMDQ4", + "pages": [], + "primary_language": "HCL", + "private": false, + "repo_id": 1048, + "security_and_analysis": [ + { + "advanced_security": [ + { + "status": "disabled" + } + ], + "secret_scanning": [ + { + "status": "disabled" + } + ], + "secret_scanning_push_protection": [ + { + "status": "disabled" + } + ] + } + ], + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "ssh_clone_url": "git@github.e.it.census.gov:CSVD/opensearch.git", + "svn_url": "https://github.e.it.census.gov/CSVD/opensearch", + "template": [], + "topics": [ + "terraform" + ], + "visibility": "public", + "vulnerability_alerts": false, + "web_commit_signoff_required": false + }, + "after_unknown": {}, + "before_sensitive": { + "pages": [], + "security_and_analysis": [ + { + "advanced_security": [ + {} + ], + "secret_scanning": [ + {} + ], + "secret_scanning_push_protection": [ + {} + ] + } + ], + "template": [], + "topics": [ + false + ] + }, + "after_sensitive": { + "pages": [], + "security_and_analysis": [ + { + "advanced_security": [ + {} + ], + "secret_scanning": [ + {} + ], + "secret_scanning_push_protection": [ + {} + ] + } + ], + "template": [], + "topics": [ + false + ] + } + } + }, + { + "address": "module.repo_list[\"opensearch\"].github_repository_collaborator.collaborators[\"gomez385\"]", + "previous_address": "module.opensearch.github_repository_collaborator.collaborators[\"gomez385\"]", + "module_address": "module.repo_list[\"opensearch\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "gomez385", + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "no-op" + ], + "before": { + "id": "opensearch:gomez385", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "opensearch", + "username": "gomez385" + }, + "after": { + "id": "opensearch:gomez385", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "opensearch", + "username": "gomez385" + }, + "after_unknown": {}, + "before_sensitive": {}, + "after_sensitive": {} + } + }, + { + "address": "module.repo_list[\"opensearch\"].github_repository_collaborator.collaborators[\"morga471\"]", + "previous_address": "module.opensearch.github_repository_collaborator.collaborators[\"morga471\"]", + "module_address": "module.repo_list[\"opensearch\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "morga471", + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "no-op" + ], + "before": { + "id": "opensearch:morga471", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "opensearch", + "username": "morga471" + }, + "after": { + "id": "opensearch:morga471", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "opensearch", + "username": "morga471" + }, + "after_unknown": {}, + "before_sensitive": {}, + "after_sensitive": {} + } + }, + { + "address": "module.repo_list[\"opensearch\"].github_repository_collaborator.collaborators[\"naray007\"]", + "previous_address": "module.opensearch.github_repository_collaborator.collaborators[\"naray007\"]", + "module_address": "module.repo_list[\"opensearch\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "naray007", + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "no-op" + ], + "before": { + "id": "opensearch:naray007", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "opensearch", + "username": "naray007" + }, + "after": { + "id": "opensearch:naray007", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "opensearch", + "username": "naray007" + }, + "after_unknown": {}, + "before_sensitive": {}, + "after_sensitive": {} + } + }, + { + "address": "module.repo_list[\"pip-config\"].github_branch_protection.main[0]", + "module_address": "module.repo_list[\"pip-config\"]", + "mode": "managed", + "type": "github_branch_protection", + "name": "main", + "index": 0, + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "create" + ], + "before": null, + "after": { + "allows_deletions": false, + "allows_force_pushes": false, + "enforce_admins": true, + "force_push_bypassers": null, + "lock_branch": false, + "pattern": "main", + "repository_id": "MDEwOlJlcG9zaXRvcnkxMjc3", + "require_conversation_resolution": false, + "require_signed_commits": false, + "required_linear_history": false, + "required_pull_request_reviews": [ + { + "dismiss_stale_reviews": true, + "dismissal_restrictions": null, + "pull_request_bypassers": [ + "MDQ6VXNlcjU0OQ==", + "MDQ6VXNlcjYwMw==" + ], + "require_code_owner_reviews": true, + "require_last_push_approval": false, + "required_approving_review_count": 1, + "restrict_dismissals": null + } + ], + "required_status_checks": [], + "restrict_pushes": [] + }, + "after_unknown": { + "id": true, + "required_pull_request_reviews": [ + { + "pull_request_bypassers": [ + false, + false + ] + } + ], + "required_status_checks": [], + "restrict_pushes": [] + }, + "before_sensitive": false, + "after_sensitive": { + "required_pull_request_reviews": [ + { + "pull_request_bypassers": [ + false, + false + ] + } + ], + "required_status_checks": [], + "restrict_pushes": [] + } + } + }, + { + "address": "module.repo_list[\"pip-config\"].github_repository.repo", + "module_address": "module.repo_list[\"pip-config\"]", + "mode": "managed", + "type": "github_repository", + "name": "repo", + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "no-op" + ], + "before": { + "allow_auto_merge": false, + "allow_merge_commit": false, + "allow_rebase_merge": false, + "allow_squash_merge": true, + "allow_update_branch": false, + "archive_on_destroy": true, + "archived": false, + "auto_init": true, + "default_branch": "main", + "delete_branch_on_merge": true, + "description": "Composite Action for configuring pip", + "etag": "W/\"7e8a2a753cb91dc12e3c99dc0e6796cbf734f11a57b6eb89643b41880dac2df8\"", + "full_name": "CSVD/pip-config", + "git_clone_url": "git://github.e.it.census.gov/CSVD/pip-config.git", + "gitignore_template": null, + "has_discussions": false, + "has_downloads": false, + "has_issues": true, + "has_projects": true, + "has_wiki": true, + "homepage_url": "", + "html_url": "https://github.e.it.census.gov/CSVD/pip-config", + "http_clone_url": "https://github.e.it.census.gov/CSVD/pip-config.git", + "id": "pip-config", + "ignore_vulnerability_alerts_during_read": null, + "is_template": false, + "license_template": null, + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "name": "pip-config", + "node_id": "MDEwOlJlcG9zaXRvcnkxMjc3", + "pages": [], + "primary_language": "", + "private": false, + "repo_id": 1277, + "security_and_analysis": [ + { + "advanced_security": [ + { + "status": "disabled" + } + ], + "secret_scanning": [ + { + "status": "disabled" + } + ], + "secret_scanning_push_protection": [ + { + "status": "disabled" + } + ] + } + ], + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "ssh_clone_url": "git@github.e.it.census.gov:CSVD/pip-config.git", + "svn_url": "https://github.e.it.census.gov/CSVD/pip-config", + "template": [], + "topics": [ + "github-actions", + "pip" + ], + "visibility": "public", + "vulnerability_alerts": false, + "web_commit_signoff_required": false + }, + "after": { + "allow_auto_merge": false, + "allow_merge_commit": false, + "allow_rebase_merge": false, + "allow_squash_merge": true, + "allow_update_branch": false, + "archive_on_destroy": true, + "archived": false, + "auto_init": true, + "default_branch": "main", + "delete_branch_on_merge": true, + "description": "Composite Action for configuring pip", + "etag": "W/\"7e8a2a753cb91dc12e3c99dc0e6796cbf734f11a57b6eb89643b41880dac2df8\"", + "full_name": "CSVD/pip-config", + "git_clone_url": "git://github.e.it.census.gov/CSVD/pip-config.git", + "gitignore_template": null, + "has_discussions": false, + "has_downloads": false, + "has_issues": true, + "has_projects": true, + "has_wiki": true, + "homepage_url": "", + "html_url": "https://github.e.it.census.gov/CSVD/pip-config", + "http_clone_url": "https://github.e.it.census.gov/CSVD/pip-config.git", + "id": "pip-config", + "ignore_vulnerability_alerts_during_read": null, + "is_template": false, + "license_template": null, + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "name": "pip-config", + "node_id": "MDEwOlJlcG9zaXRvcnkxMjc3", + "pages": [], + "primary_language": "", + "private": false, + "repo_id": 1277, + "security_and_analysis": [ + { + "advanced_security": [ + { + "status": "disabled" + } + ], + "secret_scanning": [ + { + "status": "disabled" + } + ], + "secret_scanning_push_protection": [ + { + "status": "disabled" + } + ] + } + ], + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "ssh_clone_url": "git@github.e.it.census.gov:CSVD/pip-config.git", + "svn_url": "https://github.e.it.census.gov/CSVD/pip-config", + "template": [], + "topics": [ + "github-actions", + "pip" + ], + "visibility": "public", + "vulnerability_alerts": false, + "web_commit_signoff_required": false + }, + "after_unknown": {}, + "before_sensitive": { + "pages": [], + "security_and_analysis": [ + { + "advanced_security": [ + {} + ], + "secret_scanning": [ + {} + ], + "secret_scanning_push_protection": [ + {} + ] + } + ], + "template": [], + "topics": [ + false, + false + ] + }, + "after_sensitive": { + "pages": [], + "security_and_analysis": [ + { + "advanced_security": [ + {} + ], + "secret_scanning": [ + {} + ], + "secret_scanning_push_protection": [ + {} + ] + } + ], + "template": [], + "topics": [ + false, + false + ] + } + } + }, + { + "address": "module.repo_list[\"pip-config\"].github_repository_collaborator.collaborators[\"gomez385\"]", + "module_address": "module.repo_list[\"pip-config\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "gomez385", + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "no-op" + ], + "before": { + "id": "pip-config:gomez385", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "pip-config", + "username": "gomez385" + }, + "after": { + "id": "pip-config:gomez385", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "pip-config", + "username": "gomez385" + }, + "after_unknown": {}, + "before_sensitive": {}, + "after_sensitive": {} + } + }, + { + "address": "module.repo_list[\"pip-config\"].github_repository_collaborator.collaborators[\"morga471\"]", + "module_address": "module.repo_list[\"pip-config\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "morga471", + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "no-op" + ], + "before": { + "id": "pip-config:morga471", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "pip-config", + "username": "morga471" + }, + "after": { + "id": "pip-config:morga471", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "pip-config", + "username": "morga471" + }, + "after_unknown": {}, + "before_sensitive": {}, + "after_sensitive": {} + } + }, + { + "address": "module.repo_list[\"pip-config\"].github_repository_collaborator.collaborators[\"naray007\"]", + "module_address": "module.repo_list[\"pip-config\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "naray007", + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "no-op" + ], + "before": { + "id": "pip-config:naray007", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "pip-config", + "username": "naray007" + }, + "after": { + "id": "pip-config:naray007", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "pip-config", + "username": "naray007" + }, + "after_unknown": {}, + "before_sensitive": {}, + "after_sensitive": {} + } + }, + { + "address": "module.repo_list[\"service-catalog-workspace\"].github_repository.repo", + "module_address": "module.repo_list[\"service-catalog-workspace\"]", + "mode": "managed", + "type": "github_repository", + "name": "repo", + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "no-op" + ], + "before": { + "allow_auto_merge": false, + "allow_merge_commit": false, + "allow_rebase_merge": false, + "allow_squash_merge": true, + "allow_update_branch": false, + "archive_on_destroy": true, + "archived": false, + "auto_init": true, + "default_branch": "main", + "delete_branch_on_merge": true, + "description": "service-catalog-workspace", + "etag": "W/\"ac967e013bdca10de2aff82f46b136edb734ca78aa83a4bcd823a888cff86a56\"", + "full_name": "CSVD/service-catalog-workspace", + "git_clone_url": "git://github.e.it.census.gov/CSVD/service-catalog-workspace.git", + "gitignore_template": "", + "has_discussions": false, + "has_downloads": false, + "has_issues": true, + "has_projects": true, + "has_wiki": true, + "homepage_url": "", + "html_url": "https://github.e.it.census.gov/CSVD/service-catalog-workspace", + "http_clone_url": "https://github.e.it.census.gov/CSVD/service-catalog-workspace.git", + "id": "service-catalog-workspace", + "ignore_vulnerability_alerts_during_read": null, + "is_template": true, + "license_template": null, + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "name": "service-catalog-workspace", + "node_id": "MDEwOlJlcG9zaXRvcnkxMTM1", + "pages": [], + "primary_language": "", + "private": false, + "repo_id": 1135, + "security_and_analysis": [ + { + "advanced_security": [ + { + "status": "disabled" + } + ], + "secret_scanning": [ + { + "status": "disabled" + } + ], + "secret_scanning_push_protection": [ + { + "status": "disabled" + } + ] + } + ], + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "ssh_clone_url": "git@github.e.it.census.gov:CSVD/service-catalog-workspace.git", + "svn_url": "https://github.e.it.census.gov/CSVD/service-catalog-workspace", + "template": [], + "topics": [ + "terraform-tools" + ], + "visibility": "public", + "vulnerability_alerts": false, + "web_commit_signoff_required": false + }, + "after": { + "allow_auto_merge": false, + "allow_merge_commit": false, + "allow_rebase_merge": false, + "allow_squash_merge": true, + "allow_update_branch": false, + "archive_on_destroy": true, + "archived": false, + "auto_init": true, + "default_branch": "main", + "delete_branch_on_merge": true, + "description": "service-catalog-workspace", + "etag": "W/\"ac967e013bdca10de2aff82f46b136edb734ca78aa83a4bcd823a888cff86a56\"", + "full_name": "CSVD/service-catalog-workspace", + "git_clone_url": "git://github.e.it.census.gov/CSVD/service-catalog-workspace.git", + "gitignore_template": "", + "has_discussions": false, + "has_downloads": false, + "has_issues": true, + "has_projects": true, + "has_wiki": true, + "homepage_url": "", + "html_url": "https://github.e.it.census.gov/CSVD/service-catalog-workspace", + "http_clone_url": "https://github.e.it.census.gov/CSVD/service-catalog-workspace.git", + "id": "service-catalog-workspace", + "ignore_vulnerability_alerts_during_read": null, + "is_template": true, + "license_template": null, + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "name": "service-catalog-workspace", + "node_id": "MDEwOlJlcG9zaXRvcnkxMTM1", + "pages": [], + "primary_language": "", + "private": false, + "repo_id": 1135, + "security_and_analysis": [ + { + "advanced_security": [ + { + "status": "disabled" + } + ], + "secret_scanning": [ + { + "status": "disabled" + } + ], + "secret_scanning_push_protection": [ + { + "status": "disabled" + } + ] + } + ], + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "ssh_clone_url": "git@github.e.it.census.gov:CSVD/service-catalog-workspace.git", + "svn_url": "https://github.e.it.census.gov/CSVD/service-catalog-workspace", + "template": [], + "topics": [ + "terraform-tools" + ], + "visibility": "public", + "vulnerability_alerts": false, + "web_commit_signoff_required": false + }, + "after_unknown": {}, + "before_sensitive": { + "pages": [], + "security_and_analysis": [ + { + "advanced_security": [ + {} + ], + "secret_scanning": [ + {} + ], + "secret_scanning_push_protection": [ + {} + ] + } + ], + "template": [], + "topics": [ + false + ] + }, + "after_sensitive": { + "pages": [], + "security_and_analysis": [ + { + "advanced_security": [ + {} + ], + "secret_scanning": [ + {} + ], + "secret_scanning_push_protection": [ + {} + ] + } + ], + "template": [], + "topics": [ + false + ] + } + } + }, + { + "address": "module.repo_list[\"service-catalog-workspace\"].github_repository_collaborator.collaborators[\"gomez385\"]", + "module_address": "module.repo_list[\"service-catalog-workspace\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "gomez385", + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "no-op" + ], + "before": { + "id": "service-catalog-workspace:gomez385", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "service-catalog-workspace", + "username": "gomez385" + }, + "after": { + "id": "service-catalog-workspace:gomez385", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "service-catalog-workspace", + "username": "gomez385" + }, + "after_unknown": {}, + "before_sensitive": {}, + "after_sensitive": {} + } + }, + { + "address": "module.repo_list[\"service-catalog-workspace\"].github_repository_collaborator.collaborators[\"morga471\"]", + "module_address": "module.repo_list[\"service-catalog-workspace\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "morga471", + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "no-op" + ], + "before": { + "id": "service-catalog-workspace:morga471", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "service-catalog-workspace", + "username": "morga471" + }, + "after": { + "id": "service-catalog-workspace:morga471", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "service-catalog-workspace", + "username": "morga471" + }, + "after_unknown": {}, + "before_sensitive": {}, + "after_sensitive": {} + } + }, + { + "address": "module.repo_list[\"service-catalog-workspace\"].github_repository_collaborator.collaborators[\"naray007\"]", + "module_address": "module.repo_list[\"service-catalog-workspace\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "naray007", + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "no-op" + ], + "before": { + "id": "service-catalog-workspace:naray007", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "service-catalog-workspace", + "username": "naray007" + }, + "after": { + "id": "service-catalog-workspace:naray007", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "service-catalog-workspace", + "username": "naray007" + }, + "after_unknown": {}, + "before_sensitive": {}, + "after_sensitive": {} + } + }, + { + "address": "module.repo_list[\"supervisord-conf\"].github_branch_protection.main[0]", + "module_address": "module.repo_list[\"supervisord-conf\"]", + "mode": "managed", + "type": "github_branch_protection", + "name": "main", + "index": 0, + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "create" + ], + "before": null, + "after": { + "allows_deletions": false, + "allows_force_pushes": false, + "enforce_admins": true, + "force_push_bypassers": null, + "lock_branch": false, + "pattern": "main", + "repository_id": "MDEwOlJlcG9zaXRvcnkxMDc0", + "require_conversation_resolution": false, + "require_signed_commits": false, + "required_linear_history": false, + "required_pull_request_reviews": [ + { + "dismiss_stale_reviews": true, + "dismissal_restrictions": null, + "pull_request_bypassers": [ + "MDQ6VXNlcjU0OQ==", + "MDQ6VXNlcjYwMw==" + ], + "require_code_owner_reviews": true, + "require_last_push_approval": false, + "required_approving_review_count": 1, + "restrict_dismissals": null + } + ], + "required_status_checks": [], + "restrict_pushes": [] + }, + "after_unknown": { + "id": true, + "required_pull_request_reviews": [ + { + "pull_request_bypassers": [ + false, + false + ] + } + ], + "required_status_checks": [], + "restrict_pushes": [] + }, + "before_sensitive": false, + "after_sensitive": { + "required_pull_request_reviews": [ + { + "pull_request_bypassers": [ + false, + false + ] + } + ], + "required_status_checks": [], + "restrict_pushes": [] + } + } + }, + { + "address": "module.repo_list[\"supervisord-conf\"].github_repository.repo", + "module_address": "module.repo_list[\"supervisord-conf\"]", + "mode": "managed", + "type": "github_repository", + "name": "repo", + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "no-op" + ], + "before": { + "allow_auto_merge": false, + "allow_merge_commit": false, + "allow_rebase_merge": false, + "allow_squash_merge": true, + "allow_update_branch": false, + "archive_on_destroy": true, + "archived": false, + "auto_init": true, + "default_branch": "main", + "delete_branch_on_merge": true, + "description": "supervisord-conf", + "etag": "W/\"cb957dacdfa80473c969e7403c6edefe52de0ef0f01001a90bfc076dd61d3fc3\"", + "full_name": "CSVD/supervisord-conf", + "git_clone_url": "git://github.e.it.census.gov/CSVD/supervisord-conf.git", + "gitignore_template": "", + "has_discussions": false, + "has_downloads": false, + "has_issues": true, + "has_projects": true, + "has_wiki": true, + "homepage_url": "", + "html_url": "https://github.e.it.census.gov/CSVD/supervisord-conf", + "http_clone_url": "https://github.e.it.census.gov/CSVD/supervisord-conf.git", + "id": "supervisord-conf", + "ignore_vulnerability_alerts_during_read": null, + "is_template": false, + "license_template": null, + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "name": "supervisord-conf", + "node_id": "MDEwOlJlcG9zaXRvcnkxMDc0", + "pages": [], + "primary_language": "Python", + "private": false, + "repo_id": 1074, + "security_and_analysis": [ + { + "advanced_security": [ + { + "status": "disabled" + } + ], + "secret_scanning": [ + { + "status": "disabled" + } + ], + "secret_scanning_push_protection": [ + { + "status": "disabled" + } + ] + } + ], + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "ssh_clone_url": "git@github.e.it.census.gov:CSVD/supervisord-conf.git", + "svn_url": "https://github.e.it.census.gov/CSVD/supervisord-conf", + "template": [], + "topics": [ + "automation", + "supervisord" + ], + "visibility": "public", + "vulnerability_alerts": false, + "web_commit_signoff_required": false + }, + "after": { + "allow_auto_merge": false, + "allow_merge_commit": false, + "allow_rebase_merge": false, + "allow_squash_merge": true, + "allow_update_branch": false, + "archive_on_destroy": true, + "archived": false, + "auto_init": true, + "default_branch": "main", + "delete_branch_on_merge": true, + "description": "supervisord-conf", + "etag": "W/\"cb957dacdfa80473c969e7403c6edefe52de0ef0f01001a90bfc076dd61d3fc3\"", + "full_name": "CSVD/supervisord-conf", + "git_clone_url": "git://github.e.it.census.gov/CSVD/supervisord-conf.git", + "gitignore_template": "", + "has_discussions": false, + "has_downloads": false, + "has_issues": true, + "has_projects": true, + "has_wiki": true, + "homepage_url": "", + "html_url": "https://github.e.it.census.gov/CSVD/supervisord-conf", + "http_clone_url": "https://github.e.it.census.gov/CSVD/supervisord-conf.git", + "id": "supervisord-conf", + "ignore_vulnerability_alerts_during_read": null, + "is_template": false, + "license_template": null, + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "name": "supervisord-conf", + "node_id": "MDEwOlJlcG9zaXRvcnkxMDc0", + "pages": [], + "primary_language": "Python", + "private": false, + "repo_id": 1074, + "security_and_analysis": [ + { + "advanced_security": [ + { + "status": "disabled" + } + ], + "secret_scanning": [ + { + "status": "disabled" + } + ], + "secret_scanning_push_protection": [ + { + "status": "disabled" + } + ] + } + ], + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "ssh_clone_url": "git@github.e.it.census.gov:CSVD/supervisord-conf.git", + "svn_url": "https://github.e.it.census.gov/CSVD/supervisord-conf", + "template": [], + "topics": [ + "automation", + "supervisord" + ], + "visibility": "public", + "vulnerability_alerts": false, + "web_commit_signoff_required": false + }, + "after_unknown": {}, + "before_sensitive": { + "pages": [], + "security_and_analysis": [ + { + "advanced_security": [ + {} + ], + "secret_scanning": [ + {} + ], + "secret_scanning_push_protection": [ + {} + ] + } + ], + "template": [], + "topics": [ + false, + false + ] + }, + "after_sensitive": { + "pages": [], + "security_and_analysis": [ + { + "advanced_security": [ + {} + ], + "secret_scanning": [ + {} + ], + "secret_scanning_push_protection": [ + {} + ] + } + ], + "template": [], + "topics": [ + false, + false + ] + } + } + }, + { + "address": "module.repo_list[\"supervisord-conf\"].github_repository_collaborator.collaborators[\"gomez385\"]", + "module_address": "module.repo_list[\"supervisord-conf\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "gomez385", + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "no-op" + ], + "before": { + "id": "supervisord-conf:gomez385", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "supervisord-conf", + "username": "gomez385" + }, + "after": { + "id": "supervisord-conf:gomez385", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "supervisord-conf", + "username": "gomez385" + }, + "after_unknown": {}, + "before_sensitive": {}, + "after_sensitive": {} + } + }, + { + "address": "module.repo_list[\"supervisord-conf\"].github_repository_collaborator.collaborators[\"morga471\"]", + "module_address": "module.repo_list[\"supervisord-conf\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "morga471", + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "no-op" + ], + "before": { + "id": "supervisord-conf:morga471", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "supervisord-conf", + "username": "morga471" + }, + "after": { + "id": "supervisord-conf:morga471", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "supervisord-conf", + "username": "morga471" + }, + "after_unknown": {}, + "before_sensitive": {}, + "after_sensitive": {} + } + }, + { + "address": "module.repo_list[\"supervisord-conf\"].github_repository_collaborator.collaborators[\"naray007\"]", + "module_address": "module.repo_list[\"supervisord-conf\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "naray007", + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "no-op" + ], + "before": { + "id": "supervisord-conf:naray007", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "supervisord-conf", + "username": "naray007" + }, + "after": { + "id": "supervisord-conf:naray007", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "supervisord-conf", + "username": "naray007" + }, + "after_unknown": {}, + "before_sensitive": {}, + "after_sensitive": {} + } + }, + { + "address": "module.repo_list[\"supervisord-managed-runners\"].github_repository.repo", + "module_address": "module.repo_list[\"supervisord-managed-runners\"]", + "mode": "managed", + "type": "github_repository", + "name": "repo", + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "no-op" + ], + "before": { + "allow_auto_merge": false, + "allow_merge_commit": false, + "allow_rebase_merge": false, + "allow_squash_merge": true, + "allow_update_branch": false, + "archive_on_destroy": true, + "archived": false, + "auto_init": true, + "default_branch": "main", + "delete_branch_on_merge": true, + "description": "supervisord-managed-runners", + "etag": "W/\"8690be2c2933bb5fd612370514c036a5cf540b77f3fa71aebed8a5d0cb3a9e70\"", + "full_name": "CSVD/supervisord-managed-runners", + "git_clone_url": "git://github.e.it.census.gov/CSVD/supervisord-managed-runners.git", + "gitignore_template": "", + "has_discussions": false, + "has_downloads": false, + "has_issues": true, + "has_projects": true, + "has_wiki": true, + "homepage_url": "", + "html_url": "https://github.e.it.census.gov/CSVD/supervisord-managed-runners", + "http_clone_url": "https://github.e.it.census.gov/CSVD/supervisord-managed-runners.git", + "id": "supervisord-managed-runners", + "ignore_vulnerability_alerts_during_read": null, + "is_template": true, + "license_template": null, + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "name": "supervisord-managed-runners", + "node_id": "MDEwOlJlcG9zaXRvcnkxMTQy", + "pages": [], + "primary_language": "HCL", + "private": false, + "repo_id": 1142, + "security_and_analysis": [ + { + "advanced_security": [ + { + "status": "disabled" + } + ], + "secret_scanning": [ + { + "status": "disabled" + } + ], + "secret_scanning_push_protection": [ + { + "status": "disabled" + } + ] + } + ], + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "ssh_clone_url": "git@github.e.it.census.gov:CSVD/supervisord-managed-runners.git", + "svn_url": "https://github.e.it.census.gov/CSVD/supervisord-managed-runners", + "template": [], + "topics": [ + "github-actions", + "terraform-tools" + ], + "visibility": "public", + "vulnerability_alerts": false, + "web_commit_signoff_required": false + }, + "after": { + "allow_auto_merge": false, + "allow_merge_commit": false, + "allow_rebase_merge": false, + "allow_squash_merge": true, + "allow_update_branch": false, + "archive_on_destroy": true, + "archived": false, + "auto_init": true, + "default_branch": "main", + "delete_branch_on_merge": true, + "description": "supervisord-managed-runners", + "etag": "W/\"8690be2c2933bb5fd612370514c036a5cf540b77f3fa71aebed8a5d0cb3a9e70\"", + "full_name": "CSVD/supervisord-managed-runners", + "git_clone_url": "git://github.e.it.census.gov/CSVD/supervisord-managed-runners.git", + "gitignore_template": "", + "has_discussions": false, + "has_downloads": false, + "has_issues": true, + "has_projects": true, + "has_wiki": true, + "homepage_url": "", + "html_url": "https://github.e.it.census.gov/CSVD/supervisord-managed-runners", + "http_clone_url": "https://github.e.it.census.gov/CSVD/supervisord-managed-runners.git", + "id": "supervisord-managed-runners", + "ignore_vulnerability_alerts_during_read": null, + "is_template": true, + "license_template": null, + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "name": "supervisord-managed-runners", + "node_id": "MDEwOlJlcG9zaXRvcnkxMTQy", + "pages": [], + "primary_language": "HCL", + "private": false, + "repo_id": 1142, + "security_and_analysis": [ + { + "advanced_security": [ + { + "status": "disabled" + } + ], + "secret_scanning": [ + { + "status": "disabled" + } + ], + "secret_scanning_push_protection": [ + { + "status": "disabled" + } + ] + } + ], + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "ssh_clone_url": "git@github.e.it.census.gov:CSVD/supervisord-managed-runners.git", + "svn_url": "https://github.e.it.census.gov/CSVD/supervisord-managed-runners", + "template": [], + "topics": [ + "github-actions", + "terraform-tools" + ], + "visibility": "public", + "vulnerability_alerts": false, + "web_commit_signoff_required": false + }, + "after_unknown": {}, + "before_sensitive": { + "pages": [], + "security_and_analysis": [ + { + "advanced_security": [ + {} + ], + "secret_scanning": [ + {} + ], + "secret_scanning_push_protection": [ + {} + ] + } + ], + "template": [], + "topics": [ + false, + false + ] + }, + "after_sensitive": { + "pages": [], + "security_and_analysis": [ + { + "advanced_security": [ + {} + ], + "secret_scanning": [ + {} + ], + "secret_scanning_push_protection": [ + {} + ] + } + ], + "template": [], + "topics": [ + false, + false + ] + } + } + }, + { + "address": "module.repo_list[\"supervisord-managed-runners\"].github_repository_collaborator.collaborators[\"gomez385\"]", + "module_address": "module.repo_list[\"supervisord-managed-runners\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "gomez385", + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "no-op" + ], + "before": { + "id": "supervisord-managed-runners:gomez385", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "supervisord-managed-runners", + "username": "gomez385" + }, + "after": { + "id": "supervisord-managed-runners:gomez385", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "supervisord-managed-runners", + "username": "gomez385" + }, + "after_unknown": {}, + "before_sensitive": {}, + "after_sensitive": {} + } + }, + { + "address": "module.repo_list[\"supervisord-managed-runners\"].github_repository_collaborator.collaborators[\"morga471\"]", + "module_address": "module.repo_list[\"supervisord-managed-runners\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "morga471", + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "no-op" + ], + "before": { + "id": "supervisord-managed-runners:morga471", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "supervisord-managed-runners", + "username": "morga471" + }, + "after": { + "id": "supervisord-managed-runners:morga471", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "supervisord-managed-runners", + "username": "morga471" + }, + "after_unknown": {}, + "before_sensitive": {}, + "after_sensitive": {} + } + }, + { + "address": "module.repo_list[\"supervisord-managed-runners\"].github_repository_collaborator.collaborators[\"naray007\"]", + "module_address": "module.repo_list[\"supervisord-managed-runners\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "naray007", + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "no-op" + ], + "before": { + "id": "supervisord-managed-runners:naray007", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "supervisord-managed-runners", + "username": "naray007" + }, + "after": { + "id": "supervisord-managed-runners:naray007", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "supervisord-managed-runners", + "username": "naray007" + }, + "after_unknown": {}, + "before_sensitive": {}, + "after_sensitive": {} + } + }, + { + "address": "module.repo_list[\"template-aws-image-pipeline\"].github_repository.repo", + "module_address": "module.repo_list[\"template-aws-image-pipeline\"]", + "mode": "managed", + "type": "github_repository", + "name": "repo", + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "no-op" + ], + "before": { + "allow_auto_merge": false, + "allow_merge_commit": false, + "allow_rebase_merge": false, + "allow_squash_merge": true, + "allow_update_branch": false, + "archive_on_destroy": true, + "archived": false, + "auto_init": true, + "default_branch": "main", + "delete_branch_on_merge": true, + "description": "Template Repo for Image Pipeline", + "etag": "W/\"04e8a1c93b8ac53deb063a453c7983367a68c80e2a037b09589dc6e4d44ccd95\"", + "full_name": "CSVD/template-aws-image-pipeline", + "git_clone_url": "git://github.e.it.census.gov/CSVD/template-aws-image-pipeline.git", + "gitignore_template": null, + "has_discussions": false, + "has_downloads": false, + "has_issues": true, + "has_projects": true, + "has_wiki": true, + "homepage_url": "", + "html_url": "https://github.e.it.census.gov/CSVD/template-aws-image-pipeline", + "http_clone_url": "https://github.e.it.census.gov/CSVD/template-aws-image-pipeline.git", + "id": "template-aws-image-pipeline", + "ignore_vulnerability_alerts_during_read": null, + "is_template": true, + "license_template": null, + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "name": "template-aws-image-pipeline", + "node_id": "MDEwOlJlcG9zaXRvcnkxMjU1", + "pages": [], + "primary_language": "Python", + "private": false, + "repo_id": 1255, + "security_and_analysis": [ + { + "advanced_security": [ + { + "status": "disabled" + } + ], + "secret_scanning": [ + { + "status": "disabled" + } + ], + "secret_scanning_push_protection": [ + { + "status": "disabled" + } + ] + } + ], + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "ssh_clone_url": "git@github.e.it.census.gov:CSVD/template-aws-image-pipeline.git", + "svn_url": "https://github.e.it.census.gov/CSVD/template-aws-image-pipeline", + "template": [], + "topics": [ + "aws-image-pipeline", + "terraform" + ], + "visibility": "public", + "vulnerability_alerts": false, + "web_commit_signoff_required": false + }, + "after": { + "allow_auto_merge": false, + "allow_merge_commit": false, + "allow_rebase_merge": false, + "allow_squash_merge": true, + "allow_update_branch": false, + "archive_on_destroy": true, + "archived": false, + "auto_init": true, + "default_branch": "main", + "delete_branch_on_merge": true, + "description": "Template Repo for Image Pipeline", + "etag": "W/\"04e8a1c93b8ac53deb063a453c7983367a68c80e2a037b09589dc6e4d44ccd95\"", + "full_name": "CSVD/template-aws-image-pipeline", + "git_clone_url": "git://github.e.it.census.gov/CSVD/template-aws-image-pipeline.git", + "gitignore_template": null, + "has_discussions": false, + "has_downloads": false, + "has_issues": true, + "has_projects": true, + "has_wiki": true, + "homepage_url": "", + "html_url": "https://github.e.it.census.gov/CSVD/template-aws-image-pipeline", + "http_clone_url": "https://github.e.it.census.gov/CSVD/template-aws-image-pipeline.git", + "id": "template-aws-image-pipeline", + "ignore_vulnerability_alerts_during_read": null, + "is_template": true, + "license_template": null, + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "name": "template-aws-image-pipeline", + "node_id": "MDEwOlJlcG9zaXRvcnkxMjU1", + "pages": [], + "primary_language": "Python", + "private": false, + "repo_id": 1255, + "security_and_analysis": [ + { + "advanced_security": [ + { + "status": "disabled" + } + ], + "secret_scanning": [ + { + "status": "disabled" + } + ], + "secret_scanning_push_protection": [ + { + "status": "disabled" + } + ] + } + ], + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "ssh_clone_url": "git@github.e.it.census.gov:CSVD/template-aws-image-pipeline.git", + "svn_url": "https://github.e.it.census.gov/CSVD/template-aws-image-pipeline", + "template": [], + "topics": [ + "aws-image-pipeline", + "terraform" + ], + "visibility": "public", + "vulnerability_alerts": false, + "web_commit_signoff_required": false + }, + "after_unknown": {}, + "before_sensitive": { + "pages": [], + "security_and_analysis": [ + { + "advanced_security": [ + {} + ], + "secret_scanning": [ + {} + ], + "secret_scanning_push_protection": [ + {} + ] + } + ], + "template": [], + "topics": [ + false, + false + ] + }, + "after_sensitive": { + "pages": [], + "security_and_analysis": [ + { + "advanced_security": [ + {} + ], + "secret_scanning": [ + {} + ], + "secret_scanning_push_protection": [ + {} + ] + } + ], + "template": [], + "topics": [ + false, + false + ] + } + } + }, + { + "address": "module.repo_list[\"template-aws-image-pipeline\"].github_repository_collaborator.collaborators[\"gomez385\"]", + "module_address": "module.repo_list[\"template-aws-image-pipeline\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "gomez385", + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "no-op" + ], + "before": { + "id": "template-aws-image-pipeline:gomez385", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "template-aws-image-pipeline", + "username": "gomez385" + }, + "after": { + "id": "template-aws-image-pipeline:gomez385", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "template-aws-image-pipeline", + "username": "gomez385" + }, + "after_unknown": {}, + "before_sensitive": {}, + "after_sensitive": {} + } + }, + { + "address": "module.repo_list[\"template-aws-image-pipeline\"].github_repository_collaborator.collaborators[\"morga471\"]", + "module_address": "module.repo_list[\"template-aws-image-pipeline\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "morga471", + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "no-op" + ], + "before": { + "id": "template-aws-image-pipeline:morga471", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "template-aws-image-pipeline", + "username": "morga471" + }, + "after": { + "id": "template-aws-image-pipeline:morga471", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "template-aws-image-pipeline", + "username": "morga471" + }, + "after_unknown": {}, + "before_sensitive": {}, + "after_sensitive": {} + } + }, + { + "address": "module.repo_list[\"template-aws-image-pipeline\"].github_repository_collaborator.collaborators[\"naray007\"]", + "module_address": "module.repo_list[\"template-aws-image-pipeline\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "naray007", + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "no-op" + ], + "before": { + "id": "template-aws-image-pipeline:naray007", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "template-aws-image-pipeline", + "username": "naray007" + }, + "after": { + "id": "template-aws-image-pipeline:naray007", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "template-aws-image-pipeline", + "username": "naray007" + }, + "after_unknown": {}, + "before_sensitive": {}, + "after_sensitive": {} + } + }, + { + "address": "module.repo_list[\"terraform-ai-ingestion\"].github_branch_protection.main[0]", + "module_address": "module.repo_list[\"terraform-ai-ingestion\"]", + "mode": "managed", + "type": "github_branch_protection", + "name": "main", + "index": 0, + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "create" + ], + "before": null, + "after": { + "allows_deletions": false, + "allows_force_pushes": false, + "enforce_admins": true, + "force_push_bypassers": null, + "lock_branch": false, + "pattern": "main", + "repository_id": "MDEwOlJlcG9zaXRvcnkxMjM2", + "require_conversation_resolution": false, + "require_signed_commits": false, + "required_linear_history": false, + "required_pull_request_reviews": [ + { + "dismiss_stale_reviews": true, + "dismissal_restrictions": null, + "pull_request_bypassers": [ + "MDQ6VXNlcjU0OQ==", + "MDQ6VXNlcjYwMw==" + ], + "require_code_owner_reviews": true, + "require_last_push_approval": false, + "required_approving_review_count": 1, + "restrict_dismissals": null + } + ], + "required_status_checks": [], + "restrict_pushes": [] + }, + "after_unknown": { + "id": true, + "required_pull_request_reviews": [ + { + "pull_request_bypassers": [ + false, + false + ] + } + ], + "required_status_checks": [], + "restrict_pushes": [] + }, + "before_sensitive": false, + "after_sensitive": { + "required_pull_request_reviews": [ + { + "pull_request_bypassers": [ + false, + false + ] + } + ], + "required_status_checks": [], + "restrict_pushes": [] + } + } + }, + { + "address": "module.repo_list[\"terraform-ai-ingestion\"].github_repository.repo", + "module_address": "module.repo_list[\"terraform-ai-ingestion\"]", + "mode": "managed", + "type": "github_repository", + "name": "repo", + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "no-op" + ], + "before": { + "allow_auto_merge": false, + "allow_merge_commit": false, + "allow_rebase_merge": false, + "allow_squash_merge": true, + "allow_update_branch": false, + "archive_on_destroy": true, + "archived": false, + "auto_init": true, + "default_branch": "main", + "delete_branch_on_merge": true, + "description": "Project Repo for AI Ingestion", + "etag": "W/\"98f6fbaec35afee05597ae61645e0781b99d4570ce218af9c0a5cd0c65f8837a\"", + "full_name": "CSVD/terraform-ai-ingestion", + "git_clone_url": "git://github.e.it.census.gov/CSVD/terraform-ai-ingestion.git", + "gitignore_template": null, + "has_discussions": false, + "has_downloads": false, + "has_issues": true, + "has_projects": true, + "has_wiki": true, + "homepage_url": "", + "html_url": "https://github.e.it.census.gov/CSVD/terraform-ai-ingestion", + "http_clone_url": "https://github.e.it.census.gov/CSVD/terraform-ai-ingestion.git", + "id": "terraform-ai-ingestion", + "ignore_vulnerability_alerts_during_read": null, + "is_template": false, + "license_template": null, + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "name": "terraform-ai-ingestion", + "node_id": "MDEwOlJlcG9zaXRvcnkxMjM2", + "pages": [], + "primary_language": "Python", + "private": false, + "repo_id": 1236, + "security_and_analysis": [ + { + "advanced_security": [ + { + "status": "disabled" + } + ], + "secret_scanning": [ + { + "status": "disabled" + } + ], + "secret_scanning_push_protection": [ + { + "status": "disabled" + } + ] + } + ], + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "ssh_clone_url": "git@github.e.it.census.gov:CSVD/terraform-ai-ingestion.git", + "svn_url": "https://github.e.it.census.gov/CSVD/terraform-ai-ingestion", + "template": [], + "topics": [ + "ai-ingestion", + "terraform" + ], + "visibility": "public", + "vulnerability_alerts": false, + "web_commit_signoff_required": false + }, + "after": { + "allow_auto_merge": false, + "allow_merge_commit": false, + "allow_rebase_merge": false, + "allow_squash_merge": true, + "allow_update_branch": false, + "archive_on_destroy": true, + "archived": false, + "auto_init": true, + "default_branch": "main", + "delete_branch_on_merge": true, + "description": "Project Repo for AI Ingestion", + "etag": "W/\"98f6fbaec35afee05597ae61645e0781b99d4570ce218af9c0a5cd0c65f8837a\"", + "full_name": "CSVD/terraform-ai-ingestion", + "git_clone_url": "git://github.e.it.census.gov/CSVD/terraform-ai-ingestion.git", + "gitignore_template": null, + "has_discussions": false, + "has_downloads": false, + "has_issues": true, + "has_projects": true, + "has_wiki": true, + "homepage_url": "", + "html_url": "https://github.e.it.census.gov/CSVD/terraform-ai-ingestion", + "http_clone_url": "https://github.e.it.census.gov/CSVD/terraform-ai-ingestion.git", + "id": "terraform-ai-ingestion", + "ignore_vulnerability_alerts_during_read": null, + "is_template": false, + "license_template": null, + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "name": "terraform-ai-ingestion", + "node_id": "MDEwOlJlcG9zaXRvcnkxMjM2", + "pages": [], + "primary_language": "Python", + "private": false, + "repo_id": 1236, + "security_and_analysis": [ + { + "advanced_security": [ + { + "status": "disabled" + } + ], + "secret_scanning": [ + { + "status": "disabled" + } + ], + "secret_scanning_push_protection": [ + { + "status": "disabled" + } + ] + } + ], + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "ssh_clone_url": "git@github.e.it.census.gov:CSVD/terraform-ai-ingestion.git", + "svn_url": "https://github.e.it.census.gov/CSVD/terraform-ai-ingestion", + "template": [], + "topics": [ + "ai-ingestion", + "terraform" + ], + "visibility": "public", + "vulnerability_alerts": false, + "web_commit_signoff_required": false + }, + "after_unknown": {}, + "before_sensitive": { + "pages": [], + "security_and_analysis": [ + { + "advanced_security": [ + {} + ], + "secret_scanning": [ + {} + ], + "secret_scanning_push_protection": [ + {} + ] + } + ], + "template": [], + "topics": [ + false, + false + ] + }, + "after_sensitive": { + "pages": [], + "security_and_analysis": [ + { + "advanced_security": [ + {} + ], + "secret_scanning": [ + {} + ], + "secret_scanning_push_protection": [ + {} + ] + } + ], + "template": [], + "topics": [ + false, + false + ] + } + } + }, + { + "address": "module.repo_list[\"terraform-ai-ingestion\"].github_repository_collaborator.collaborators[\"gomez385\"]", + "module_address": "module.repo_list[\"terraform-ai-ingestion\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "gomez385", + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "no-op" + ], + "before": { + "id": "terraform-ai-ingestion:gomez385", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "terraform-ai-ingestion", + "username": "gomez385" + }, + "after": { + "id": "terraform-ai-ingestion:gomez385", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "terraform-ai-ingestion", + "username": "gomez385" + }, + "after_unknown": {}, + "before_sensitive": {}, + "after_sensitive": {} + } + }, + { + "address": "module.repo_list[\"terraform-ai-ingestion\"].github_repository_collaborator.collaborators[\"morga471\"]", + "module_address": "module.repo_list[\"terraform-ai-ingestion\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "morga471", + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "no-op" + ], + "before": { + "id": "terraform-ai-ingestion:morga471", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "terraform-ai-ingestion", + "username": "morga471" + }, + "after": { + "id": "terraform-ai-ingestion:morga471", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "terraform-ai-ingestion", + "username": "morga471" + }, + "after_unknown": {}, + "before_sensitive": {}, + "after_sensitive": {} + } + }, + { + "address": "module.repo_list[\"terraform-ai-ingestion\"].github_repository_collaborator.collaborators[\"naray007\"]", + "module_address": "module.repo_list[\"terraform-ai-ingestion\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "naray007", + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "no-op" + ], + "before": { + "id": "terraform-ai-ingestion:naray007", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "terraform-ai-ingestion", + "username": "naray007" + }, + "after": { + "id": "terraform-ai-ingestion:naray007", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "terraform-ai-ingestion", + "username": "naray007" + }, + "after_unknown": {}, + "before_sensitive": {}, + "after_sensitive": {} + } + }, + { + "address": "module.repo_list[\"terraform-aws-efs\"].github_branch_protection.main[0]", + "module_address": "module.repo_list[\"terraform-aws-efs\"]", + "mode": "managed", + "type": "github_branch_protection", + "name": "main", + "index": 0, + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "create" + ], + "before": null, + "after": { + "allows_deletions": false, + "allows_force_pushes": false, + "enforce_admins": true, + "force_push_bypassers": null, + "lock_branch": false, + "pattern": "main", + "repository_id": "MDEwOlJlcG9zaXRvcnkxMjUw", + "require_conversation_resolution": false, + "require_signed_commits": false, + "required_linear_history": false, + "required_pull_request_reviews": [ + { + "dismiss_stale_reviews": true, + "dismissal_restrictions": null, + "pull_request_bypassers": [ + "MDQ6VXNlcjU0OQ==", + "MDQ6VXNlcjYwMw==" + ], + "require_code_owner_reviews": true, + "require_last_push_approval": false, + "required_approving_review_count": 1, + "restrict_dismissals": null + } + ], + "required_status_checks": [], + "restrict_pushes": [] + }, + "after_unknown": { + "id": true, + "required_pull_request_reviews": [ + { + "pull_request_bypassers": [ + false, + false + ] + } + ], + "required_status_checks": [], + "restrict_pushes": [] + }, + "before_sensitive": false, + "after_sensitive": { + "required_pull_request_reviews": [ + { + "pull_request_bypassers": [ + false, + false + ] + } + ], + "required_status_checks": [], + "restrict_pushes": [] + } + } + }, + { + "address": "module.repo_list[\"terraform-aws-efs\"].github_repository.repo", + "module_address": "module.repo_list[\"terraform-aws-efs\"]", + "mode": "managed", + "type": "github_repository", + "name": "repo", + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "no-op" + ], + "before": { + "allow_auto_merge": false, + "allow_merge_commit": false, + "allow_rebase_merge": false, + "allow_squash_merge": true, + "allow_update_branch": false, + "archive_on_destroy": true, + "archived": false, + "auto_init": true, + "default_branch": "main", + "delete_branch_on_merge": true, + "description": "Module for AWS EFS", + "etag": "W/\"85e8fb48500597c491a812e040d22c9621a19340eb110ad132bdce94fcd7d934\"", + "full_name": "CSVD/terraform-aws-efs", + "git_clone_url": "git://github.e.it.census.gov/CSVD/terraform-aws-efs.git", + "gitignore_template": null, + "has_discussions": false, + "has_downloads": false, + "has_issues": true, + "has_projects": true, + "has_wiki": true, + "homepage_url": "", + "html_url": "https://github.e.it.census.gov/CSVD/terraform-aws-efs", + "http_clone_url": "https://github.e.it.census.gov/CSVD/terraform-aws-efs.git", + "id": "terraform-aws-efs", + "ignore_vulnerability_alerts_during_read": null, + "is_template": false, + "license_template": null, + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "name": "terraform-aws-efs", + "node_id": "MDEwOlJlcG9zaXRvcnkxMjUw", + "pages": [], + "primary_language": "HCL", + "private": false, + "repo_id": 1250, + "security_and_analysis": [ + { + "advanced_security": [ + { + "status": "disabled" + } + ], + "secret_scanning": [ + { + "status": "disabled" + } + ], + "secret_scanning_push_protection": [ + { + "status": "disabled" + } + ] + } + ], + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "ssh_clone_url": "git@github.e.it.census.gov:CSVD/terraform-aws-efs.git", + "svn_url": "https://github.e.it.census.gov/CSVD/terraform-aws-efs", + "template": [], + "topics": [ + "ai-demo", + "terraform" + ], + "visibility": "public", + "vulnerability_alerts": false, + "web_commit_signoff_required": false + }, + "after": { + "allow_auto_merge": false, + "allow_merge_commit": false, + "allow_rebase_merge": false, + "allow_squash_merge": true, + "allow_update_branch": false, + "archive_on_destroy": true, + "archived": false, + "auto_init": true, + "default_branch": "main", + "delete_branch_on_merge": true, + "description": "Module for AWS EFS", + "etag": "W/\"85e8fb48500597c491a812e040d22c9621a19340eb110ad132bdce94fcd7d934\"", + "full_name": "CSVD/terraform-aws-efs", + "git_clone_url": "git://github.e.it.census.gov/CSVD/terraform-aws-efs.git", + "gitignore_template": null, + "has_discussions": false, + "has_downloads": false, + "has_issues": true, + "has_projects": true, + "has_wiki": true, + "homepage_url": "", + "html_url": "https://github.e.it.census.gov/CSVD/terraform-aws-efs", + "http_clone_url": "https://github.e.it.census.gov/CSVD/terraform-aws-efs.git", + "id": "terraform-aws-efs", + "ignore_vulnerability_alerts_during_read": null, + "is_template": false, + "license_template": null, + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "name": "terraform-aws-efs", + "node_id": "MDEwOlJlcG9zaXRvcnkxMjUw", + "pages": [], + "primary_language": "HCL", + "private": false, + "repo_id": 1250, + "security_and_analysis": [ + { + "advanced_security": [ + { + "status": "disabled" + } + ], + "secret_scanning": [ + { + "status": "disabled" + } + ], + "secret_scanning_push_protection": [ + { + "status": "disabled" + } + ] + } + ], + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "ssh_clone_url": "git@github.e.it.census.gov:CSVD/terraform-aws-efs.git", + "svn_url": "https://github.e.it.census.gov/CSVD/terraform-aws-efs", + "template": [], + "topics": [ + "ai-demo", + "terraform" + ], + "visibility": "public", + "vulnerability_alerts": false, + "web_commit_signoff_required": false + }, + "after_unknown": {}, + "before_sensitive": { + "pages": [], + "security_and_analysis": [ + { + "advanced_security": [ + {} + ], + "secret_scanning": [ + {} + ], + "secret_scanning_push_protection": [ + {} + ] + } + ], + "template": [], + "topics": [ + false, + false + ] + }, + "after_sensitive": { + "pages": [], + "security_and_analysis": [ + { + "advanced_security": [ + {} + ], + "secret_scanning": [ + {} + ], + "secret_scanning_push_protection": [ + {} + ] + } + ], + "template": [], + "topics": [ + false, + false + ] + } + } + }, + { + "address": "module.repo_list[\"terraform-aws-efs\"].github_repository_collaborator.collaborators[\"gomez385\"]", + "module_address": "module.repo_list[\"terraform-aws-efs\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "gomez385", + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "no-op" + ], + "before": { + "id": "terraform-aws-efs:gomez385", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "terraform-aws-efs", + "username": "gomez385" + }, + "after": { + "id": "terraform-aws-efs:gomez385", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "terraform-aws-efs", + "username": "gomez385" + }, + "after_unknown": {}, + "before_sensitive": {}, + "after_sensitive": {} + } + }, + { + "address": "module.repo_list[\"terraform-aws-efs\"].github_repository_collaborator.collaborators[\"morga471\"]", + "module_address": "module.repo_list[\"terraform-aws-efs\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "morga471", + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "no-op" + ], + "before": { + "id": "terraform-aws-efs:morga471", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "terraform-aws-efs", + "username": "morga471" + }, + "after": { + "id": "terraform-aws-efs:morga471", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "terraform-aws-efs", + "username": "morga471" + }, + "after_unknown": {}, + "before_sensitive": {}, + "after_sensitive": {} + } + }, + { + "address": "module.repo_list[\"terraform-aws-efs\"].github_repository_collaborator.collaborators[\"naray007\"]", + "module_address": "module.repo_list[\"terraform-aws-efs\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "naray007", + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "no-op" + ], + "before": { + "id": "terraform-aws-efs:naray007", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "terraform-aws-efs", + "username": "naray007" + }, + "after": { + "id": "terraform-aws-efs:naray007", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "terraform-aws-efs", + "username": "naray007" + }, + "after_unknown": {}, + "before_sensitive": {}, + "after_sensitive": {} + } + }, + { + "address": "module.repo_list[\"terraform-aws-image-pipeline\"].github_actions_variable.variable[\"terraform_version\"]", + "previous_address": "module.terraform_aws_image_pipeline.github_actions_variable.variable[\"terraform_version\"]", + "module_address": "module.repo_list[\"terraform-aws-image-pipeline\"]", + "mode": "managed", + "type": "github_actions_variable", + "name": "variable", + "index": "terraform_version", + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "delete" + ], + "before": { + "created_at": "2024-09-05 20:33:04 +0000 UTC", + "id": "terraform-aws-image-pipeline:terraform_version", + "repository": "terraform-aws-image-pipeline", + "updated_at": "2024-09-05 20:33:04 +0000 UTC", + "value": "1.9.1", + "variable_name": "terraform_version" + }, + "after": null, + "after_unknown": {}, + "before_sensitive": {}, + "after_sensitive": false + }, + "action_reason": "delete_because_each_key" + }, + { + "address": "module.repo_list[\"terraform-aws-image-pipeline\"].github_repository.repo", + "previous_address": "module.terraform_aws_image_pipeline.github_repository.repo", + "module_address": "module.repo_list[\"terraform-aws-image-pipeline\"]", + "mode": "managed", + "type": "github_repository", + "name": "repo", + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "update" + ], + "before": { + "allow_auto_merge": false, + "allow_merge_commit": false, + "allow_rebase_merge": false, + "allow_squash_merge": true, + "allow_update_branch": false, + "archive_on_destroy": true, + "archived": false, + "auto_init": true, + "default_branch": "main", + "delete_branch_on_merge": true, + "description": "Terraform Module that creates codepipeline and codebuild jobs and other resources for building and deploying images", + "etag": "W/\"d79543e3a28ebe818e95295827c7d164b7542cf48335c6b80ba1c3d4cc1d4de4\"", + "full_name": "CSVD/terraform-aws-image-pipeline", + "git_clone_url": "git://github.e.it.census.gov/CSVD/terraform-aws-image-pipeline.git", + "gitignore_template": "", + "has_discussions": false, + "has_downloads": false, + "has_issues": true, + "has_projects": true, + "has_wiki": true, + "homepage_url": "", + "html_url": "https://github.e.it.census.gov/CSVD/terraform-aws-image-pipeline", + "http_clone_url": "https://github.e.it.census.gov/CSVD/terraform-aws-image-pipeline.git", + "id": "terraform-aws-image-pipeline", + "ignore_vulnerability_alerts_during_read": null, + "is_template": false, + "license_template": null, + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "name": "terraform-aws-image-pipeline", + "node_id": "MDEwOlJlcG9zaXRvcnkxMDA4", + "pages": [], + "primary_language": "HCL", + "private": true, + "repo_id": 1008, + "security_and_analysis": [ + { + "advanced_security": [ + { + "status": "disabled" + } + ], + "secret_scanning": [ + { + "status": "disabled" + } + ], + "secret_scanning_push_protection": [ + { + "status": "disabled" + } + ] + } + ], + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "ssh_clone_url": "git@github.e.it.census.gov:CSVD/terraform-aws-image-pipeline.git", + "svn_url": "https://github.e.it.census.gov/CSVD/terraform-aws-image-pipeline", + "template": [], + "topics": [ + "terraform" + ], + "visibility": "private", + "vulnerability_alerts": false, + "web_commit_signoff_required": false + }, + "after": { + "allow_auto_merge": false, + "allow_merge_commit": false, + "allow_rebase_merge": false, + "allow_squash_merge": true, + "allow_update_branch": false, + "archive_on_destroy": true, + "archived": false, + "auto_init": true, + "default_branch": "main", + "delete_branch_on_merge": true, + "description": "Terraform Module that creates codepipeline and codebuild jobs and other resources for building and deploying images", + "etag": "W/\"d79543e3a28ebe818e95295827c7d164b7542cf48335c6b80ba1c3d4cc1d4de4\"", + "full_name": "CSVD/terraform-aws-image-pipeline", + "git_clone_url": "git://github.e.it.census.gov/CSVD/terraform-aws-image-pipeline.git", + "gitignore_template": "", + "has_discussions": false, + "has_downloads": false, + "has_issues": true, + "has_projects": true, + "has_wiki": true, + "homepage_url": "", + "html_url": "https://github.e.it.census.gov/CSVD/terraform-aws-image-pipeline", + "http_clone_url": "https://github.e.it.census.gov/CSVD/terraform-aws-image-pipeline.git", + "id": "terraform-aws-image-pipeline", + "ignore_vulnerability_alerts_during_read": null, + "is_template": false, + "license_template": null, + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "name": "terraform-aws-image-pipeline", + "node_id": "MDEwOlJlcG9zaXRvcnkxMDA4", + "pages": [], + "primary_language": "HCL", + "private": true, + "repo_id": 1008, + "security_and_analysis": [ + { + "advanced_security": [ + { + "status": "disabled" + } + ], + "secret_scanning": [ + { + "status": "disabled" + } + ], + "secret_scanning_push_protection": [ + { + "status": "disabled" + } + ] + } + ], + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "ssh_clone_url": "git@github.e.it.census.gov:CSVD/terraform-aws-image-pipeline.git", + "svn_url": "https://github.e.it.census.gov/CSVD/terraform-aws-image-pipeline", + "template": [], + "topics": [ + "terraform" + ], + "visibility": "public", + "vulnerability_alerts": false, + "web_commit_signoff_required": false + }, + "after_unknown": {}, + "before_sensitive": { + "pages": [], + "security_and_analysis": [ + { + "advanced_security": [ + {} + ], + "secret_scanning": [ + {} + ], + "secret_scanning_push_protection": [ + {} + ] + } + ], + "template": [], + "topics": [ + false + ] + }, + "after_sensitive": { + "pages": [], + "security_and_analysis": [ + { + "advanced_security": [ + {} + ], + "secret_scanning": [ + {} + ], + "secret_scanning_push_protection": [ + {} + ] + } + ], + "template": [], + "topics": [ + false + ] + } + } + }, + { + "address": "module.repo_list[\"terraform-aws-image-pipeline\"].github_repository_collaborator.collaborators[\"gomez385\"]", + "previous_address": "module.terraform_aws_image_pipeline.github_repository_collaborator.collaborators[\"gomez385\"]", + "module_address": "module.repo_list[\"terraform-aws-image-pipeline\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "gomez385", + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "no-op" + ], + "before": { + "id": "terraform-aws-image-pipeline:gomez385", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "terraform-aws-image-pipeline", + "username": "gomez385" + }, + "after": { + "id": "terraform-aws-image-pipeline:gomez385", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "terraform-aws-image-pipeline", + "username": "gomez385" + }, + "after_unknown": {}, + "before_sensitive": {}, + "after_sensitive": {} + } + }, + { + "address": "module.repo_list[\"terraform-aws-image-pipeline\"].github_repository_collaborator.collaborators[\"morga471\"]", + "previous_address": "module.terraform_aws_image_pipeline.github_repository_collaborator.collaborators[\"morga471\"]", + "module_address": "module.repo_list[\"terraform-aws-image-pipeline\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "morga471", + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "no-op" + ], + "before": { + "id": "terraform-aws-image-pipeline:morga471", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "terraform-aws-image-pipeline", + "username": "morga471" + }, + "after": { + "id": "terraform-aws-image-pipeline:morga471", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "terraform-aws-image-pipeline", + "username": "morga471" + }, + "after_unknown": {}, + "before_sensitive": {}, + "after_sensitive": {} + } + }, + { + "address": "module.repo_list[\"terraform-aws-image-pipeline\"].github_repository_collaborator.collaborators[\"naray007\"]", + "previous_address": "module.terraform_aws_image_pipeline.github_repository_collaborator.collaborators[\"naray007\"]", + "module_address": "module.repo_list[\"terraform-aws-image-pipeline\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "naray007", + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "no-op" + ], + "before": { + "id": "terraform-aws-image-pipeline:naray007", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "terraform-aws-image-pipeline", + "username": "naray007" + }, + "after": { + "id": "terraform-aws-image-pipeline:naray007", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "terraform-aws-image-pipeline", + "username": "naray007" + }, + "after_unknown": {}, + "before_sensitive": {}, + "after_sensitive": {} + } + }, + { + "address": "module.repo_list[\"terraform-aws-image-pipeline\"].github_repository_file.managed_extra_files[\"terraform-plan.yaml\"]", + "previous_address": "module.terraform_aws_image_pipeline.github_repository_file.managed_extra_files[\"terraform-plan.yaml\"]", + "module_address": "module.repo_list[\"terraform-aws-image-pipeline\"]", + "mode": "managed", + "type": "github_repository_file", + "name": "managed_extra_files", + "index": "terraform-plan.yaml", + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "delete" + ], + "before": { + "autocreate_branch": null, + "autocreate_branch_source_branch": null, + "autocreate_branch_source_sha": null, + "branch": "main", + "commit_author": null, + "commit_email": null, + "commit_message": "Add .github/workflows/terraform-plan.yaml", + "commit_sha": "29f8f6edec039ce79f6d52a12d58da59cfeeb42c", + "content": "\n# This is a basic workflow to help you get started with Actions\n\nname: Terraform Plan\n\n\n# Controls when the workflow will run\non:\n pull_request:\n\n# A workflow run is made up of one or more jobs that can run sequentially or in parallel\njobs:\n # This workflow contains a single job called \"build\"\n build:\n # The type of runner that the job will run on\n runs-on: [ terraform-aws-image-pipeline ]\n env:\n AWS_SECRET_ACCESS_KEY: \"${{ secrets.AWS_SECRET_ACCESS_KEY }}\"\n AWS_ACCESS_KEY_ID: \"${{ vars.AWS_ACCESS_KEY_ID }}\"\n AWS_SESSION_TOKEN: \"${{ secrets.AWS_SESSION_TOKEN }}\"\n \n\n # Steps represent a sequence of tasks that will be executed as part of the job\n steps:\n # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it\n - uses: actions/checkout@v3\n with:\n ref: ${{ github.head_ref }}\n token: ${{ secrets.GH_TOKEN }}\n\n - uses: CSVD/gh-actions-setup-node@v3\n with:\n node-version: 16\n \n - uses: CSVD/gh-actions-setup-terraform@v2\n with:\n terraform_version: ${{ vars.terraform_version }}\n\n - name: Terraform Format\n id: fmt\n run: |\n terraform fmt\n if ! git diff-index --quiet HEAD; then \n git config --global user.name 'arnol377'\n git config --global user.email 'david.j.arnold.jr@census.gov'\n git commit -am \"Autoformatting TF Code\"\n git push\n echo \"auto_format=true\" >> $GITHUB_ENV \n fi\n\n - name: Autoformat Halt\n if: env.auto_format == 'true'\n run: exit 0\n\n - name: Terraform Init\n id: init\n \n working-directory: ./examples\n \n run: terraform init -upgrade\n\n - name: Terraform Validate\n id: validate\n \n working-directory: ./examples\n \n run: terraform validate\n\n - name: Terraform Plan\n id: plan\n \n working-directory: ./examples\n \n run: terraform plan\n continue-on-error: true\n\n - name: Update Pull Request\n uses: CSVD/gh-actions-github-script@v6\n if: github.event_name == 'pull_request'\n with:\n github-token: ${{ secrets.GH_TOKEN }}\n script: |\n const output = `#### Terraform Format and Style 🖌\\`${{ steps.fmt.outcome }}\\`\n #### Terraform Initialization ⚙️\\`${{ steps.init.outcome }}\\`\n #### Terraform Validation 🤖\\`${{ steps.validate.outcome }}\\`\n #### Terraform Plan:\n ${{ steps.plan.outcome }}\n *Pushed by: @${{ github.actor }}, Action: \\`${{ github.event_name }}\\`*`;\n\n github.rest.issues.createComment({\n issue_number: context.issue.number,\n owner: context.repo.owner,\n repo: context.repo.repo,\n body: output\n })\n", + "file": ".github/workflows/terraform-plan.yaml", + "id": "terraform-aws-image-pipeline/.github/workflows/terraform-plan.yaml", + "overwrite_on_create": true, + "ref": "main", + "repository": "terraform-aws-image-pipeline", + "sha": "1128c4169de1ffaa3152d8bf88746506502b6a6c" + }, + "after": null, + "after_unknown": {}, + "before_sensitive": {}, + "after_sensitive": false + }, + "action_reason": "delete_because_each_key" + }, + { + "address": "module.repo_list[\"terraform-aws-rds\"].github_branch_protection.main[0]", + "module_address": "module.repo_list[\"terraform-aws-rds\"]", + "mode": "managed", + "type": "github_branch_protection", + "name": "main", + "index": 0, + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "create" + ], + "before": null, + "after": { + "allows_deletions": false, + "allows_force_pushes": false, + "enforce_admins": true, + "force_push_bypassers": null, + "lock_branch": false, + "pattern": "main", + "repository_id": "MDEwOlJlcG9zaXRvcnkxMjQ4", + "require_conversation_resolution": false, + "require_signed_commits": false, + "required_linear_history": false, + "required_pull_request_reviews": [ + { + "dismiss_stale_reviews": true, + "dismissal_restrictions": null, + "pull_request_bypassers": [ + "MDQ6VXNlcjU0OQ==", + "MDQ6VXNlcjYwMw==" + ], + "require_code_owner_reviews": true, + "require_last_push_approval": false, + "required_approving_review_count": 1, + "restrict_dismissals": null + } + ], + "required_status_checks": [], + "restrict_pushes": [] + }, + "after_unknown": { + "id": true, + "required_pull_request_reviews": [ + { + "pull_request_bypassers": [ + false, + false + ] + } + ], + "required_status_checks": [], + "restrict_pushes": [] + }, + "before_sensitive": false, + "after_sensitive": { + "required_pull_request_reviews": [ + { + "pull_request_bypassers": [ + false, + false + ] + } + ], + "required_status_checks": [], + "restrict_pushes": [] + } + } + }, + { + "address": "module.repo_list[\"terraform-aws-rds\"].github_repository.repo", + "module_address": "module.repo_list[\"terraform-aws-rds\"]", + "mode": "managed", + "type": "github_repository", + "name": "repo", + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "no-op" + ], + "before": { + "allow_auto_merge": false, + "allow_merge_commit": false, + "allow_rebase_merge": false, + "allow_squash_merge": true, + "allow_update_branch": false, + "archive_on_destroy": true, + "archived": false, + "auto_init": true, + "default_branch": "main", + "delete_branch_on_merge": true, + "description": "Module for AWS RDS", + "etag": "W/\"0c5c6328aa9217e446dcfd04d8561338fb07dabca7d1f22065bb51db268aad05\"", + "full_name": "CSVD/terraform-aws-rds", + "git_clone_url": "git://github.e.it.census.gov/CSVD/terraform-aws-rds.git", + "gitignore_template": null, + "has_discussions": false, + "has_downloads": false, + "has_issues": true, + "has_projects": true, + "has_wiki": true, + "homepage_url": "", + "html_url": "https://github.e.it.census.gov/CSVD/terraform-aws-rds", + "http_clone_url": "https://github.e.it.census.gov/CSVD/terraform-aws-rds.git", + "id": "terraform-aws-rds", + "ignore_vulnerability_alerts_during_read": null, + "is_template": false, + "license_template": null, + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "name": "terraform-aws-rds", + "node_id": "MDEwOlJlcG9zaXRvcnkxMjQ4", + "pages": [], + "primary_language": "HCL", + "private": false, + "repo_id": 1248, + "security_and_analysis": [ + { + "advanced_security": [ + { + "status": "disabled" + } + ], + "secret_scanning": [ + { + "status": "disabled" + } + ], + "secret_scanning_push_protection": [ + { + "status": "disabled" + } + ] + } + ], + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "ssh_clone_url": "git@github.e.it.census.gov:CSVD/terraform-aws-rds.git", + "svn_url": "https://github.e.it.census.gov/CSVD/terraform-aws-rds", + "template": [], + "topics": [ + "ai-demo", + "terraform" + ], + "visibility": "public", + "vulnerability_alerts": false, + "web_commit_signoff_required": false + }, + "after": { + "allow_auto_merge": false, + "allow_merge_commit": false, + "allow_rebase_merge": false, + "allow_squash_merge": true, + "allow_update_branch": false, + "archive_on_destroy": true, + "archived": false, + "auto_init": true, + "default_branch": "main", + "delete_branch_on_merge": true, + "description": "Module for AWS RDS", + "etag": "W/\"0c5c6328aa9217e446dcfd04d8561338fb07dabca7d1f22065bb51db268aad05\"", + "full_name": "CSVD/terraform-aws-rds", + "git_clone_url": "git://github.e.it.census.gov/CSVD/terraform-aws-rds.git", + "gitignore_template": null, + "has_discussions": false, + "has_downloads": false, + "has_issues": true, + "has_projects": true, + "has_wiki": true, + "homepage_url": "", + "html_url": "https://github.e.it.census.gov/CSVD/terraform-aws-rds", + "http_clone_url": "https://github.e.it.census.gov/CSVD/terraform-aws-rds.git", + "id": "terraform-aws-rds", + "ignore_vulnerability_alerts_during_read": null, + "is_template": false, + "license_template": null, + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "name": "terraform-aws-rds", + "node_id": "MDEwOlJlcG9zaXRvcnkxMjQ4", + "pages": [], + "primary_language": "HCL", + "private": false, + "repo_id": 1248, + "security_and_analysis": [ + { + "advanced_security": [ + { + "status": "disabled" + } + ], + "secret_scanning": [ + { + "status": "disabled" + } + ], + "secret_scanning_push_protection": [ + { + "status": "disabled" + } + ] + } + ], + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "ssh_clone_url": "git@github.e.it.census.gov:CSVD/terraform-aws-rds.git", + "svn_url": "https://github.e.it.census.gov/CSVD/terraform-aws-rds", + "template": [], + "topics": [ + "ai-demo", + "terraform" + ], + "visibility": "public", + "vulnerability_alerts": false, + "web_commit_signoff_required": false + }, + "after_unknown": {}, + "before_sensitive": { + "pages": [], + "security_and_analysis": [ + { + "advanced_security": [ + {} + ], + "secret_scanning": [ + {} + ], + "secret_scanning_push_protection": [ + {} + ] + } + ], + "template": [], + "topics": [ + false, + false + ] + }, + "after_sensitive": { + "pages": [], + "security_and_analysis": [ + { + "advanced_security": [ + {} + ], + "secret_scanning": [ + {} + ], + "secret_scanning_push_protection": [ + {} + ] + } + ], + "template": [], + "topics": [ + false, + false + ] + } + } + }, + { + "address": "module.repo_list[\"terraform-aws-rds\"].github_repository_collaborator.collaborators[\"gomez385\"]", + "module_address": "module.repo_list[\"terraform-aws-rds\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "gomez385", + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "no-op" + ], + "before": { + "id": "terraform-aws-rds:gomez385", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "terraform-aws-rds", + "username": "gomez385" + }, + "after": { + "id": "terraform-aws-rds:gomez385", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "terraform-aws-rds", + "username": "gomez385" + }, + "after_unknown": {}, + "before_sensitive": {}, + "after_sensitive": {} + } + }, + { + "address": "module.repo_list[\"terraform-aws-rds\"].github_repository_collaborator.collaborators[\"morga471\"]", + "module_address": "module.repo_list[\"terraform-aws-rds\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "morga471", + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "no-op" + ], + "before": { + "id": "terraform-aws-rds:morga471", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "terraform-aws-rds", + "username": "morga471" + }, + "after": { + "id": "terraform-aws-rds:morga471", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "terraform-aws-rds", + "username": "morga471" + }, + "after_unknown": {}, + "before_sensitive": {}, + "after_sensitive": {} + } + }, + { + "address": "module.repo_list[\"terraform-aws-rds\"].github_repository_collaborator.collaborators[\"naray007\"]", + "module_address": "module.repo_list[\"terraform-aws-rds\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "naray007", + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "no-op" + ], + "before": { + "id": "terraform-aws-rds:naray007", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "terraform-aws-rds", + "username": "naray007" + }, + "after": { + "id": "terraform-aws-rds:naray007", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "terraform-aws-rds", + "username": "naray007" + }, + "after_unknown": {}, + "before_sensitive": {}, + "after_sensitive": {} + } + }, + { + "address": "module.repo_list[\"terraform-aws-ses\"].github_branch_protection.main[0]", + "module_address": "module.repo_list[\"terraform-aws-ses\"]", + "mode": "managed", + "type": "github_branch_protection", + "name": "main", + "index": 0, + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "create" + ], + "before": null, + "after": { + "allows_deletions": false, + "allows_force_pushes": false, + "enforce_admins": true, + "force_push_bypassers": null, + "lock_branch": false, + "pattern": "main", + "repository_id": "MDEwOlJlcG9zaXRvcnkxMjQ5", + "require_conversation_resolution": false, + "require_signed_commits": false, + "required_linear_history": false, + "required_pull_request_reviews": [ + { + "dismiss_stale_reviews": true, + "dismissal_restrictions": null, + "pull_request_bypassers": [ + "MDQ6VXNlcjU0OQ==", + "MDQ6VXNlcjYwMw==" + ], + "require_code_owner_reviews": true, + "require_last_push_approval": false, + "required_approving_review_count": 1, + "restrict_dismissals": null + } + ], + "required_status_checks": [], + "restrict_pushes": [] + }, + "after_unknown": { + "id": true, + "required_pull_request_reviews": [ + { + "pull_request_bypassers": [ + false, + false + ] + } + ], + "required_status_checks": [], + "restrict_pushes": [] + }, + "before_sensitive": false, + "after_sensitive": { + "required_pull_request_reviews": [ + { + "pull_request_bypassers": [ + false, + false + ] + } + ], + "required_status_checks": [], + "restrict_pushes": [] + } + } + }, + { + "address": "module.repo_list[\"terraform-aws-ses\"].github_repository.repo", + "module_address": "module.repo_list[\"terraform-aws-ses\"]", + "mode": "managed", + "type": "github_repository", + "name": "repo", + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "no-op" + ], + "before": { + "allow_auto_merge": false, + "allow_merge_commit": false, + "allow_rebase_merge": false, + "allow_squash_merge": true, + "allow_update_branch": false, + "archive_on_destroy": true, + "archived": false, + "auto_init": true, + "default_branch": "main", + "delete_branch_on_merge": true, + "description": "Module for AWS S3", + "etag": "W/\"348305d05b9d62da99eaac4dfa6680e5961068b7a15710f0c41db0f67bf44d79\"", + "full_name": "CSVD/terraform-aws-ses", + "git_clone_url": "git://github.e.it.census.gov/CSVD/terraform-aws-ses.git", + "gitignore_template": null, + "has_discussions": false, + "has_downloads": false, + "has_issues": true, + "has_projects": true, + "has_wiki": true, + "homepage_url": "", + "html_url": "https://github.e.it.census.gov/CSVD/terraform-aws-ses", + "http_clone_url": "https://github.e.it.census.gov/CSVD/terraform-aws-ses.git", + "id": "terraform-aws-ses", + "ignore_vulnerability_alerts_during_read": null, + "is_template": false, + "license_template": null, + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "name": "terraform-aws-ses", + "node_id": "MDEwOlJlcG9zaXRvcnkxMjQ5", + "pages": [], + "primary_language": "HCL", + "private": false, + "repo_id": 1249, + "security_and_analysis": [ + { + "advanced_security": [ + { + "status": "disabled" + } + ], + "secret_scanning": [ + { + "status": "disabled" + } + ], + "secret_scanning_push_protection": [ + { + "status": "disabled" + } + ] + } + ], + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "ssh_clone_url": "git@github.e.it.census.gov:CSVD/terraform-aws-ses.git", + "svn_url": "https://github.e.it.census.gov/CSVD/terraform-aws-ses", + "template": [], + "topics": [ + "ai-demo", + "terraform" + ], + "visibility": "public", + "vulnerability_alerts": false, + "web_commit_signoff_required": false + }, + "after": { + "allow_auto_merge": false, + "allow_merge_commit": false, + "allow_rebase_merge": false, + "allow_squash_merge": true, + "allow_update_branch": false, + "archive_on_destroy": true, + "archived": false, + "auto_init": true, + "default_branch": "main", + "delete_branch_on_merge": true, + "description": "Module for AWS S3", + "etag": "W/\"348305d05b9d62da99eaac4dfa6680e5961068b7a15710f0c41db0f67bf44d79\"", + "full_name": "CSVD/terraform-aws-ses", + "git_clone_url": "git://github.e.it.census.gov/CSVD/terraform-aws-ses.git", + "gitignore_template": null, + "has_discussions": false, + "has_downloads": false, + "has_issues": true, + "has_projects": true, + "has_wiki": true, + "homepage_url": "", + "html_url": "https://github.e.it.census.gov/CSVD/terraform-aws-ses", + "http_clone_url": "https://github.e.it.census.gov/CSVD/terraform-aws-ses.git", + "id": "terraform-aws-ses", + "ignore_vulnerability_alerts_during_read": null, + "is_template": false, + "license_template": null, + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "name": "terraform-aws-ses", + "node_id": "MDEwOlJlcG9zaXRvcnkxMjQ5", + "pages": [], + "primary_language": "HCL", + "private": false, + "repo_id": 1249, + "security_and_analysis": [ + { + "advanced_security": [ + { + "status": "disabled" + } + ], + "secret_scanning": [ + { + "status": "disabled" + } + ], + "secret_scanning_push_protection": [ + { + "status": "disabled" + } + ] + } + ], + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "ssh_clone_url": "git@github.e.it.census.gov:CSVD/terraform-aws-ses.git", + "svn_url": "https://github.e.it.census.gov/CSVD/terraform-aws-ses", + "template": [], + "topics": [ + "ai-demo", + "terraform" + ], + "visibility": "public", + "vulnerability_alerts": false, + "web_commit_signoff_required": false + }, + "after_unknown": {}, + "before_sensitive": { + "pages": [], + "security_and_analysis": [ + { + "advanced_security": [ + {} + ], + "secret_scanning": [ + {} + ], + "secret_scanning_push_protection": [ + {} + ] + } + ], + "template": [], + "topics": [ + false, + false + ] + }, + "after_sensitive": { + "pages": [], + "security_and_analysis": [ + { + "advanced_security": [ + {} + ], + "secret_scanning": [ + {} + ], + "secret_scanning_push_protection": [ + {} + ] + } + ], + "template": [], + "topics": [ + false, + false + ] + } + } + }, + { + "address": "module.repo_list[\"terraform-aws-ses\"].github_repository_collaborator.collaborators[\"gomez385\"]", + "module_address": "module.repo_list[\"terraform-aws-ses\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "gomez385", + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "no-op" + ], + "before": { + "id": "terraform-aws-ses:gomez385", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "terraform-aws-ses", + "username": "gomez385" + }, + "after": { + "id": "terraform-aws-ses:gomez385", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "terraform-aws-ses", + "username": "gomez385" + }, + "after_unknown": {}, + "before_sensitive": {}, + "after_sensitive": {} + } + }, + { + "address": "module.repo_list[\"terraform-aws-ses\"].github_repository_collaborator.collaborators[\"morga471\"]", + "module_address": "module.repo_list[\"terraform-aws-ses\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "morga471", + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "no-op" + ], + "before": { + "id": "terraform-aws-ses:morga471", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "terraform-aws-ses", + "username": "morga471" + }, + "after": { + "id": "terraform-aws-ses:morga471", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "terraform-aws-ses", + "username": "morga471" + }, + "after_unknown": {}, + "before_sensitive": {}, + "after_sensitive": {} + } + }, + { + "address": "module.repo_list[\"terraform-aws-ses\"].github_repository_collaborator.collaborators[\"naray007\"]", + "module_address": "module.repo_list[\"terraform-aws-ses\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "naray007", + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "no-op" + ], + "before": { + "id": "terraform-aws-ses:naray007", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "terraform-aws-ses", + "username": "naray007" + }, + "after": { + "id": "terraform-aws-ses:naray007", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "terraform-aws-ses", + "username": "naray007" + }, + "after_unknown": {}, + "before_sensitive": {}, + "after_sensitive": {} + } + }, + { + "address": "module.repo_list[\"terraform-git-workspace\"].github_repository.repo", + "module_address": "module.repo_list[\"terraform-git-workspace\"]", + "mode": "managed", + "type": "github_repository", + "name": "repo", + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "no-op" + ], + "before": { + "allow_auto_merge": false, + "allow_merge_commit": false, + "allow_rebase_merge": false, + "allow_squash_merge": true, + "allow_update_branch": false, + "archive_on_destroy": true, + "archived": false, + "auto_init": true, + "default_branch": "main", + "delete_branch_on_merge": true, + "description": "Module for attaching Actions and Environments to target repos", + "etag": "W/\"dfe72e764a5d07c3b0ebf3273c8c06363b1d9fd7dcaaff53472653ff4773c79c\"", + "full_name": "CSVD/terraform-git-workspace", + "git_clone_url": "git://github.e.it.census.gov/CSVD/terraform-git-workspace.git", + "gitignore_template": "", + "has_discussions": false, + "has_downloads": false, + "has_issues": true, + "has_projects": true, + "has_wiki": true, + "homepage_url": "", + "html_url": "https://github.e.it.census.gov/CSVD/terraform-git-workspace", + "http_clone_url": "https://github.e.it.census.gov/CSVD/terraform-git-workspace.git", + "id": "terraform-git-workspace", + "ignore_vulnerability_alerts_during_read": null, + "is_template": false, + "license_template": null, + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "name": "terraform-git-workspace", + "node_id": "MDEwOlJlcG9zaXRvcnkxMDg5", + "pages": [], + "primary_language": "", + "private": false, + "repo_id": 1089, + "security_and_analysis": [ + { + "advanced_security": [ + { + "status": "disabled" + } + ], + "secret_scanning": [ + { + "status": "disabled" + } + ], + "secret_scanning_push_protection": [ + { + "status": "disabled" + } + ] + } + ], + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "ssh_clone_url": "git@github.e.it.census.gov:CSVD/terraform-git-workspace.git", + "svn_url": "https://github.e.it.census.gov/CSVD/terraform-git-workspace", + "template": [], + "topics": [ + "github-actions", + "terraform-tools" + ], + "visibility": "public", + "vulnerability_alerts": false, + "web_commit_signoff_required": false + }, + "after": { + "allow_auto_merge": false, + "allow_merge_commit": false, + "allow_rebase_merge": false, + "allow_squash_merge": true, + "allow_update_branch": false, + "archive_on_destroy": true, + "archived": false, + "auto_init": true, + "default_branch": "main", + "delete_branch_on_merge": true, + "description": "Module for attaching Actions and Environments to target repos", + "etag": "W/\"dfe72e764a5d07c3b0ebf3273c8c06363b1d9fd7dcaaff53472653ff4773c79c\"", + "full_name": "CSVD/terraform-git-workspace", + "git_clone_url": "git://github.e.it.census.gov/CSVD/terraform-git-workspace.git", + "gitignore_template": "", + "has_discussions": false, + "has_downloads": false, + "has_issues": true, + "has_projects": true, + "has_wiki": true, + "homepage_url": "", + "html_url": "https://github.e.it.census.gov/CSVD/terraform-git-workspace", + "http_clone_url": "https://github.e.it.census.gov/CSVD/terraform-git-workspace.git", + "id": "terraform-git-workspace", + "ignore_vulnerability_alerts_during_read": null, + "is_template": false, + "license_template": null, + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "name": "terraform-git-workspace", + "node_id": "MDEwOlJlcG9zaXRvcnkxMDg5", + "pages": [], + "primary_language": "", + "private": false, + "repo_id": 1089, + "security_and_analysis": [ + { + "advanced_security": [ + { + "status": "disabled" + } + ], + "secret_scanning": [ + { + "status": "disabled" + } + ], + "secret_scanning_push_protection": [ + { + "status": "disabled" + } + ] + } + ], + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "ssh_clone_url": "git@github.e.it.census.gov:CSVD/terraform-git-workspace.git", + "svn_url": "https://github.e.it.census.gov/CSVD/terraform-git-workspace", + "template": [], + "topics": [ + "github-actions", + "terraform-tools" + ], + "visibility": "public", + "vulnerability_alerts": false, + "web_commit_signoff_required": false + }, + "after_unknown": {}, + "before_sensitive": { + "pages": [], + "security_and_analysis": [ + { + "advanced_security": [ + {} + ], + "secret_scanning": [ + {} + ], + "secret_scanning_push_protection": [ + {} + ] + } + ], + "template": [], + "topics": [ + false, + false + ] + }, + "after_sensitive": { + "pages": [], + "security_and_analysis": [ + { + "advanced_security": [ + {} + ], + "secret_scanning": [ + {} + ], + "secret_scanning_push_protection": [ + {} + ] + } + ], + "template": [], + "topics": [ + false, + false + ] + } + } + }, + { + "address": "module.repo_list[\"terraform-git-workspace\"].github_repository_collaborator.collaborators[\"gomez385\"]", + "module_address": "module.repo_list[\"terraform-git-workspace\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "gomez385", + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "no-op" + ], + "before": { + "id": "terraform-git-workspace:gomez385", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "terraform-git-workspace", + "username": "gomez385" + }, + "after": { + "id": "terraform-git-workspace:gomez385", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "terraform-git-workspace", + "username": "gomez385" + }, + "after_unknown": {}, + "before_sensitive": {}, + "after_sensitive": {} + } + }, + { + "address": "module.repo_list[\"terraform-git-workspace\"].github_repository_collaborator.collaborators[\"morga471\"]", + "module_address": "module.repo_list[\"terraform-git-workspace\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "morga471", + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "no-op" + ], + "before": { + "id": "terraform-git-workspace:morga471", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "terraform-git-workspace", + "username": "morga471" + }, + "after": { + "id": "terraform-git-workspace:morga471", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "terraform-git-workspace", + "username": "morga471" + }, + "after_unknown": {}, + "before_sensitive": {}, + "after_sensitive": {} + } + }, + { + "address": "module.repo_list[\"terraform-git-workspace\"].github_repository_collaborator.collaborators[\"naray007\"]", + "module_address": "module.repo_list[\"terraform-git-workspace\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "naray007", + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "no-op" + ], + "before": { + "id": "terraform-git-workspace:naray007", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "terraform-git-workspace", + "username": "naray007" + }, + "after": { + "id": "terraform-git-workspace:naray007", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "terraform-git-workspace", + "username": "naray007" + }, + "after_unknown": {}, + "before_sensitive": {}, + "after_sensitive": {} + } + }, + { + "address": "module.repo_list[\"terraform-github-repo\"].github_repository.repo", + "previous_address": "module.terraform-github-repo.github_repository.repo", + "module_address": "module.repo_list[\"terraform-github-repo\"]", + "mode": "managed", + "type": "github_repository", + "name": "repo", + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "update" + ], + "before": { + "allow_auto_merge": false, + "allow_merge_commit": false, + "allow_rebase_merge": false, + "allow_squash_merge": true, + "allow_update_branch": false, + "archive_on_destroy": true, + "archived": false, + "auto_init": true, + "default_branch": "main", + "delete_branch_on_merge": true, + "description": "Terraform Module for managing github repos", + "etag": "W/\"b59ca23ac93011042ccdc97599b7b04e1574c44cde667aedce680a8f9124082c\"", + "full_name": "CSVD/terraform-github-repo", + "git_clone_url": "git://github.e.it.census.gov/CSVD/terraform-github-repo.git", + "gitignore_template": "", + "has_discussions": false, + "has_downloads": false, + "has_issues": true, + "has_projects": true, + "has_wiki": true, + "homepage_url": "", + "html_url": "https://github.e.it.census.gov/CSVD/terraform-github-repo", + "http_clone_url": "https://github.e.it.census.gov/CSVD/terraform-github-repo.git", + "id": "terraform-github-repo", + "ignore_vulnerability_alerts_during_read": null, + "is_template": false, + "license_template": null, + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "name": "terraform-github-repo", + "node_id": "MDEwOlJlcG9zaXRvcnk5ODI=", + "pages": [], + "primary_language": "HCL", + "private": true, + "repo_id": 982, + "security_and_analysis": [ + { + "advanced_security": [ + { + "status": "disabled" + } + ], + "secret_scanning": [ + { + "status": "disabled" + } + ], + "secret_scanning_push_protection": [ + { + "status": "disabled" + } + ] + } + ], + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "ssh_clone_url": "git@github.e.it.census.gov:CSVD/terraform-github-repo.git", + "svn_url": "https://github.e.it.census.gov/CSVD/terraform-github-repo", + "template": [], + "topics": [ + "terraform" + ], + "visibility": "private", + "vulnerability_alerts": false, + "web_commit_signoff_required": false + }, + "after": { + "allow_auto_merge": false, + "allow_merge_commit": false, + "allow_rebase_merge": false, + "allow_squash_merge": true, + "allow_update_branch": false, + "archive_on_destroy": true, + "archived": false, + "auto_init": true, + "default_branch": "main", + "delete_branch_on_merge": true, + "description": "Terraform Module for managing github repos", + "etag": "W/\"b59ca23ac93011042ccdc97599b7b04e1574c44cde667aedce680a8f9124082c\"", + "full_name": "CSVD/terraform-github-repo", + "git_clone_url": "git://github.e.it.census.gov/CSVD/terraform-github-repo.git", + "gitignore_template": "", + "has_discussions": false, + "has_downloads": false, + "has_issues": true, + "has_projects": true, + "has_wiki": true, + "homepage_url": "", + "html_url": "https://github.e.it.census.gov/CSVD/terraform-github-repo", + "http_clone_url": "https://github.e.it.census.gov/CSVD/terraform-github-repo.git", + "id": "terraform-github-repo", + "ignore_vulnerability_alerts_during_read": null, + "is_template": false, + "license_template": null, + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "name": "terraform-github-repo", + "node_id": "MDEwOlJlcG9zaXRvcnk5ODI=", + "pages": [], + "primary_language": "HCL", + "private": true, + "repo_id": 982, + "security_and_analysis": [ + { + "advanced_security": [ + { + "status": "disabled" + } + ], + "secret_scanning": [ + { + "status": "disabled" + } + ], + "secret_scanning_push_protection": [ + { + "status": "disabled" + } + ] + } + ], + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "ssh_clone_url": "git@github.e.it.census.gov:CSVD/terraform-github-repo.git", + "svn_url": "https://github.e.it.census.gov/CSVD/terraform-github-repo", + "template": [], + "topics": [ + "terraform" + ], + "visibility": "public", + "vulnerability_alerts": false, + "web_commit_signoff_required": false + }, + "after_unknown": {}, + "before_sensitive": { + "pages": [], + "security_and_analysis": [ + { + "advanced_security": [ + {} + ], + "secret_scanning": [ + {} + ], + "secret_scanning_push_protection": [ + {} + ] + } + ], + "template": [], + "topics": [ + false + ] + }, + "after_sensitive": { + "pages": [], + "security_and_analysis": [ + { + "advanced_security": [ + {} + ], + "secret_scanning": [ + {} + ], + "secret_scanning_push_protection": [ + {} + ] + } + ], + "template": [], + "topics": [ + false + ] + } + } + }, + { + "address": "module.repo_list[\"terraform-github-repo\"].github_repository_collaborator.collaborators[\"gomez385\"]", + "previous_address": "module.terraform-github-repo.github_repository_collaborator.collaborators[\"gomez385\"]", + "module_address": "module.repo_list[\"terraform-github-repo\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "gomez385", + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "no-op" + ], + "before": { + "id": "terraform-github-repo:gomez385", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "terraform-github-repo", + "username": "gomez385" + }, + "after": { + "id": "terraform-github-repo:gomez385", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "terraform-github-repo", + "username": "gomez385" + }, + "after_unknown": {}, + "before_sensitive": {}, + "after_sensitive": {} + } + }, + { + "address": "module.repo_list[\"terraform-github-repo\"].github_repository_collaborator.collaborators[\"morga471\"]", + "previous_address": "module.terraform-github-repo.github_repository_collaborator.collaborators[\"morga471\"]", + "module_address": "module.repo_list[\"terraform-github-repo\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "morga471", + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "no-op" + ], + "before": { + "id": "terraform-github-repo:morga471", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "terraform-github-repo", + "username": "morga471" + }, + "after": { + "id": "terraform-github-repo:morga471", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "terraform-github-repo", + "username": "morga471" + }, + "after_unknown": {}, + "before_sensitive": {}, + "after_sensitive": {} + } + }, + { + "address": "module.repo_list[\"terraform-github-repo\"].github_repository_collaborator.collaborators[\"naray007\"]", + "previous_address": "module.terraform-github-repo.github_repository_collaborator.collaborators[\"naray007\"]", + "module_address": "module.repo_list[\"terraform-github-repo\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "naray007", + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "no-op" + ], + "before": { + "id": "terraform-github-repo:naray007", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "terraform-github-repo", + "username": "naray007" + }, + "after": { + "id": "terraform-github-repo:naray007", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "terraform-github-repo", + "username": "naray007" + }, + "after_unknown": {}, + "before_sensitive": {}, + "after_sensitive": {} + } + }, + { + "address": "module.repo_list[\"terraform-morpheus-alb\"].github_branch_protection.main[0]", + "module_address": "module.repo_list[\"terraform-morpheus-alb\"]", + "mode": "managed", + "type": "github_branch_protection", + "name": "main", + "index": 0, + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "create" + ], + "before": null, + "after": { + "allows_deletions": false, + "allows_force_pushes": false, + "enforce_admins": true, + "force_push_bypassers": null, + "lock_branch": false, + "pattern": "main", + "repository_id": "MDEwOlJlcG9zaXRvcnkxMTQz", + "require_conversation_resolution": false, + "require_signed_commits": false, + "required_linear_history": false, + "required_pull_request_reviews": [ + { + "dismiss_stale_reviews": true, + "dismissal_restrictions": null, + "pull_request_bypassers": [ + "MDQ6VXNlcjU0OQ==", + "MDQ6VXNlcjYwMw==" + ], + "require_code_owner_reviews": true, + "require_last_push_approval": false, + "required_approving_review_count": 1, + "restrict_dismissals": null + } + ], + "required_status_checks": [], + "restrict_pushes": [] + }, + "after_unknown": { + "id": true, + "required_pull_request_reviews": [ + { + "pull_request_bypassers": [ + false, + false + ] + } + ], + "required_status_checks": [], + "restrict_pushes": [] + }, + "before_sensitive": false, + "after_sensitive": { + "required_pull_request_reviews": [ + { + "pull_request_bypassers": [ + false, + false + ] + } + ], + "required_status_checks": [], + "restrict_pushes": [] + } + } + }, + { + "address": "module.repo_list[\"terraform-morpheus-alb\"].github_repository.repo", + "module_address": "module.repo_list[\"terraform-morpheus-alb\"]", + "mode": "managed", + "type": "github_repository", + "name": "repo", + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "no-op" + ], + "before": { + "allow_auto_merge": false, + "allow_merge_commit": false, + "allow_rebase_merge": false, + "allow_squash_merge": true, + "allow_update_branch": false, + "archive_on_destroy": true, + "archived": false, + "auto_init": true, + "default_branch": "main", + "delete_branch_on_merge": true, + "description": "Terraform module repo for terraform-morpheus-loadbalancer", + "etag": "W/\"5ac40458ec174f1e17c850368df7158b96f6227660684dbe5a70d788a848e1ba\"", + "full_name": "CSVD/terraform-morpheus-alb", + "git_clone_url": "git://github.e.it.census.gov/CSVD/terraform-morpheus-alb.git", + "gitignore_template": "", + "has_discussions": false, + "has_downloads": false, + "has_issues": true, + "has_projects": true, + "has_wiki": true, + "homepage_url": "", + "html_url": "https://github.e.it.census.gov/CSVD/terraform-morpheus-alb", + "http_clone_url": "https://github.e.it.census.gov/CSVD/terraform-morpheus-alb.git", + "id": "terraform-morpheus-alb", + "ignore_vulnerability_alerts_during_read": null, + "is_template": false, + "license_template": null, + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "name": "terraform-morpheus-alb", + "node_id": "MDEwOlJlcG9zaXRvcnkxMTQz", + "pages": [], + "primary_language": "HCL", + "private": false, + "repo_id": 1143, + "security_and_analysis": [ + { + "advanced_security": [ + { + "status": "disabled" + } + ], + "secret_scanning": [ + { + "status": "disabled" + } + ], + "secret_scanning_push_protection": [ + { + "status": "disabled" + } + ] + } + ], + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "ssh_clone_url": "git@github.e.it.census.gov:CSVD/terraform-morpheus-alb.git", + "svn_url": "https://github.e.it.census.gov/CSVD/terraform-morpheus-alb", + "template": [], + "topics": [ + "morpheus-infra" + ], + "visibility": "public", + "vulnerability_alerts": false, + "web_commit_signoff_required": false + }, + "after": { + "allow_auto_merge": false, + "allow_merge_commit": false, + "allow_rebase_merge": false, + "allow_squash_merge": true, + "allow_update_branch": false, + "archive_on_destroy": true, + "archived": false, + "auto_init": true, + "default_branch": "main", + "delete_branch_on_merge": true, + "description": "Terraform module repo for terraform-morpheus-loadbalancer", + "etag": "W/\"5ac40458ec174f1e17c850368df7158b96f6227660684dbe5a70d788a848e1ba\"", + "full_name": "CSVD/terraform-morpheus-alb", + "git_clone_url": "git://github.e.it.census.gov/CSVD/terraform-morpheus-alb.git", + "gitignore_template": "", + "has_discussions": false, + "has_downloads": false, + "has_issues": true, + "has_projects": true, + "has_wiki": true, + "homepage_url": "", + "html_url": "https://github.e.it.census.gov/CSVD/terraform-morpheus-alb", + "http_clone_url": "https://github.e.it.census.gov/CSVD/terraform-morpheus-alb.git", + "id": "terraform-morpheus-alb", + "ignore_vulnerability_alerts_during_read": null, + "is_template": false, + "license_template": null, + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "name": "terraform-morpheus-alb", + "node_id": "MDEwOlJlcG9zaXRvcnkxMTQz", + "pages": [], + "primary_language": "HCL", + "private": false, + "repo_id": 1143, + "security_and_analysis": [ + { + "advanced_security": [ + { + "status": "disabled" + } + ], + "secret_scanning": [ + { + "status": "disabled" + } + ], + "secret_scanning_push_protection": [ + { + "status": "disabled" + } + ] + } + ], + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "ssh_clone_url": "git@github.e.it.census.gov:CSVD/terraform-morpheus-alb.git", + "svn_url": "https://github.e.it.census.gov/CSVD/terraform-morpheus-alb", + "template": [], + "topics": [ + "morpheus-infra" + ], + "visibility": "public", + "vulnerability_alerts": false, + "web_commit_signoff_required": false + }, + "after_unknown": {}, + "before_sensitive": { + "pages": [], + "security_and_analysis": [ + { + "advanced_security": [ + {} + ], + "secret_scanning": [ + {} + ], + "secret_scanning_push_protection": [ + {} + ] + } + ], + "template": [], + "topics": [ + false + ] + }, + "after_sensitive": { + "pages": [], + "security_and_analysis": [ + { + "advanced_security": [ + {} + ], + "secret_scanning": [ + {} + ], + "secret_scanning_push_protection": [ + {} + ] + } + ], + "template": [], + "topics": [ + false + ] + } + } + }, + { + "address": "module.repo_list[\"terraform-morpheus-alb\"].github_repository_collaborator.collaborators[\"gomez385\"]", + "module_address": "module.repo_list[\"terraform-morpheus-alb\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "gomez385", + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "no-op" + ], + "before": { + "id": "terraform-morpheus-alb:gomez385", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "terraform-morpheus-alb", + "username": "gomez385" + }, + "after": { + "id": "terraform-morpheus-alb:gomez385", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "terraform-morpheus-alb", + "username": "gomez385" + }, + "after_unknown": {}, + "before_sensitive": {}, + "after_sensitive": {} + } + }, + { + "address": "module.repo_list[\"terraform-morpheus-alb\"].github_repository_collaborator.collaborators[\"morga471\"]", + "module_address": "module.repo_list[\"terraform-morpheus-alb\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "morga471", + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "no-op" + ], + "before": { + "id": "terraform-morpheus-alb:morga471", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "terraform-morpheus-alb", + "username": "morga471" + }, + "after": { + "id": "terraform-morpheus-alb:morga471", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "terraform-morpheus-alb", + "username": "morga471" + }, + "after_unknown": {}, + "before_sensitive": {}, + "after_sensitive": {} + } + }, + { + "address": "module.repo_list[\"terraform-morpheus-alb\"].github_repository_collaborator.collaborators[\"naray007\"]", + "module_address": "module.repo_list[\"terraform-morpheus-alb\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "naray007", + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "no-op" + ], + "before": { + "id": "terraform-morpheus-alb:naray007", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "terraform-morpheus-alb", + "username": "naray007" + }, + "after": { + "id": "terraform-morpheus-alb:naray007", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "terraform-morpheus-alb", + "username": "naray007" + }, + "after_unknown": {}, + "before_sensitive": {}, + "after_sensitive": {} + } + }, + { + "address": "module.repo_list[\"terraform-morpheus-cluster\"].github_branch_protection.main[0]", + "module_address": "module.repo_list[\"terraform-morpheus-cluster\"]", + "mode": "managed", + "type": "github_branch_protection", + "name": "main", + "index": 0, + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "create" + ], + "before": null, + "after": { + "allows_deletions": false, + "allows_force_pushes": false, + "enforce_admins": true, + "force_push_bypassers": null, + "lock_branch": false, + "pattern": "main", + "repository_id": "MDEwOlJlcG9zaXRvcnkxMTQ0", + "require_conversation_resolution": false, + "require_signed_commits": false, + "required_linear_history": false, + "required_pull_request_reviews": [ + { + "dismiss_stale_reviews": true, + "dismissal_restrictions": null, + "pull_request_bypassers": [ + "MDQ6VXNlcjU0OQ==", + "MDQ6VXNlcjYwMw==" + ], + "require_code_owner_reviews": true, + "require_last_push_approval": false, + "required_approving_review_count": 1, + "restrict_dismissals": null + } + ], + "required_status_checks": [], + "restrict_pushes": [] + }, + "after_unknown": { + "id": true, + "required_pull_request_reviews": [ + { + "pull_request_bypassers": [ + false, + false + ] + } + ], + "required_status_checks": [], + "restrict_pushes": [] + }, + "before_sensitive": false, + "after_sensitive": { + "required_pull_request_reviews": [ + { + "pull_request_bypassers": [ + false, + false + ] + } + ], + "required_status_checks": [], + "restrict_pushes": [] + } + } + }, + { + "address": "module.repo_list[\"terraform-morpheus-cluster\"].github_repository.repo", + "module_address": "module.repo_list[\"terraform-morpheus-cluster\"]", + "mode": "managed", + "type": "github_repository", + "name": "repo", + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "no-op" + ], + "before": { + "allow_auto_merge": false, + "allow_merge_commit": false, + "allow_rebase_merge": false, + "allow_squash_merge": true, + "allow_update_branch": false, + "archive_on_destroy": true, + "archived": false, + "auto_init": true, + "default_branch": "main", + "delete_branch_on_merge": true, + "description": "Terraform module repo for terraform-morpheus-cluster", + "etag": "W/\"696f54fedd72fcf4d0e3879a434b34728c5bd11021f43ca734cb5c81d43379a1\"", + "full_name": "CSVD/terraform-morpheus-cluster", + "git_clone_url": "git://github.e.it.census.gov/CSVD/terraform-morpheus-cluster.git", + "gitignore_template": "", + "has_discussions": false, + "has_downloads": false, + "has_issues": true, + "has_projects": true, + "has_wiki": true, + "homepage_url": "", + "html_url": "https://github.e.it.census.gov/CSVD/terraform-morpheus-cluster", + "http_clone_url": "https://github.e.it.census.gov/CSVD/terraform-morpheus-cluster.git", + "id": "terraform-morpheus-cluster", + "ignore_vulnerability_alerts_during_read": null, + "is_template": false, + "license_template": null, + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "name": "terraform-morpheus-cluster", + "node_id": "MDEwOlJlcG9zaXRvcnkxMTQ0", + "pages": [], + "primary_language": "", + "private": false, + "repo_id": 1144, + "security_and_analysis": [ + { + "advanced_security": [ + { + "status": "disabled" + } + ], + "secret_scanning": [ + { + "status": "disabled" + } + ], + "secret_scanning_push_protection": [ + { + "status": "disabled" + } + ] + } + ], + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "ssh_clone_url": "git@github.e.it.census.gov:CSVD/terraform-morpheus-cluster.git", + "svn_url": "https://github.e.it.census.gov/CSVD/terraform-morpheus-cluster", + "template": [], + "topics": [ + "morpheus-infra" + ], + "visibility": "public", + "vulnerability_alerts": false, + "web_commit_signoff_required": false + }, + "after": { + "allow_auto_merge": false, + "allow_merge_commit": false, + "allow_rebase_merge": false, + "allow_squash_merge": true, + "allow_update_branch": false, + "archive_on_destroy": true, + "archived": false, + "auto_init": true, + "default_branch": "main", + "delete_branch_on_merge": true, + "description": "Terraform module repo for terraform-morpheus-cluster", + "etag": "W/\"696f54fedd72fcf4d0e3879a434b34728c5bd11021f43ca734cb5c81d43379a1\"", + "full_name": "CSVD/terraform-morpheus-cluster", + "git_clone_url": "git://github.e.it.census.gov/CSVD/terraform-morpheus-cluster.git", + "gitignore_template": "", + "has_discussions": false, + "has_downloads": false, + "has_issues": true, + "has_projects": true, + "has_wiki": true, + "homepage_url": "", + "html_url": "https://github.e.it.census.gov/CSVD/terraform-morpheus-cluster", + "http_clone_url": "https://github.e.it.census.gov/CSVD/terraform-morpheus-cluster.git", + "id": "terraform-morpheus-cluster", + "ignore_vulnerability_alerts_during_read": null, + "is_template": false, + "license_template": null, + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "name": "terraform-morpheus-cluster", + "node_id": "MDEwOlJlcG9zaXRvcnkxMTQ0", + "pages": [], + "primary_language": "", + "private": false, + "repo_id": 1144, + "security_and_analysis": [ + { + "advanced_security": [ + { + "status": "disabled" + } + ], + "secret_scanning": [ + { + "status": "disabled" + } + ], + "secret_scanning_push_protection": [ + { + "status": "disabled" + } + ] + } + ], + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "ssh_clone_url": "git@github.e.it.census.gov:CSVD/terraform-morpheus-cluster.git", + "svn_url": "https://github.e.it.census.gov/CSVD/terraform-morpheus-cluster", + "template": [], + "topics": [ + "morpheus-infra" + ], + "visibility": "public", + "vulnerability_alerts": false, + "web_commit_signoff_required": false + }, + "after_unknown": {}, + "before_sensitive": { + "pages": [], + "security_and_analysis": [ + { + "advanced_security": [ + {} + ], + "secret_scanning": [ + {} + ], + "secret_scanning_push_protection": [ + {} + ] + } + ], + "template": [], + "topics": [ + false + ] + }, + "after_sensitive": { + "pages": [], + "security_and_analysis": [ + { + "advanced_security": [ + {} + ], + "secret_scanning": [ + {} + ], + "secret_scanning_push_protection": [ + {} + ] + } + ], + "template": [], + "topics": [ + false + ] + } + } + }, + { + "address": "module.repo_list[\"terraform-morpheus-cluster\"].github_repository_collaborator.collaborators[\"gomez385\"]", + "module_address": "module.repo_list[\"terraform-morpheus-cluster\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "gomez385", + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "no-op" + ], + "before": { + "id": "terraform-morpheus-cluster:gomez385", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "terraform-morpheus-cluster", + "username": "gomez385" + }, + "after": { + "id": "terraform-morpheus-cluster:gomez385", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "terraform-morpheus-cluster", + "username": "gomez385" + }, + "after_unknown": {}, + "before_sensitive": {}, + "after_sensitive": {} + } + }, + { + "address": "module.repo_list[\"terraform-morpheus-cluster\"].github_repository_collaborator.collaborators[\"morga471\"]", + "module_address": "module.repo_list[\"terraform-morpheus-cluster\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "morga471", + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "no-op" + ], + "before": { + "id": "terraform-morpheus-cluster:morga471", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "terraform-morpheus-cluster", + "username": "morga471" + }, + "after": { + "id": "terraform-morpheus-cluster:morga471", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "terraform-morpheus-cluster", + "username": "morga471" + }, + "after_unknown": {}, + "before_sensitive": {}, + "after_sensitive": {} + } + }, + { + "address": "module.repo_list[\"terraform-morpheus-cluster\"].github_repository_collaborator.collaborators[\"naray007\"]", + "module_address": "module.repo_list[\"terraform-morpheus-cluster\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "naray007", + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "no-op" + ], + "before": { + "id": "terraform-morpheus-cluster:naray007", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "terraform-morpheus-cluster", + "username": "naray007" + }, + "after": { + "id": "terraform-morpheus-cluster:naray007", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "terraform-morpheus-cluster", + "username": "naray007" + }, + "after_unknown": {}, + "before_sensitive": {}, + "after_sensitive": {} + } + }, + { + "address": "module.repo_list[\"terraform-morpheus-database\"].github_branch_protection.main[0]", + "module_address": "module.repo_list[\"terraform-morpheus-database\"]", + "mode": "managed", + "type": "github_branch_protection", + "name": "main", + "index": 0, + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "create" + ], + "before": null, + "after": { + "allows_deletions": false, + "allows_force_pushes": false, + "enforce_admins": true, + "force_push_bypassers": null, + "lock_branch": false, + "pattern": "main", + "repository_id": "MDEwOlJlcG9zaXRvcnkxMTM5", + "require_conversation_resolution": false, + "require_signed_commits": false, + "required_linear_history": false, + "required_pull_request_reviews": [ + { + "dismiss_stale_reviews": true, + "dismissal_restrictions": null, + "pull_request_bypassers": [ + "MDQ6VXNlcjU0OQ==", + "MDQ6VXNlcjYwMw==" + ], + "require_code_owner_reviews": true, + "require_last_push_approval": false, + "required_approving_review_count": 1, + "restrict_dismissals": null + } + ], + "required_status_checks": [], + "restrict_pushes": [] + }, + "after_unknown": { + "id": true, + "required_pull_request_reviews": [ + { + "pull_request_bypassers": [ + false, + false + ] + } + ], + "required_status_checks": [], + "restrict_pushes": [] + }, + "before_sensitive": false, + "after_sensitive": { + "required_pull_request_reviews": [ + { + "pull_request_bypassers": [ + false, + false + ] + } + ], + "required_status_checks": [], + "restrict_pushes": [] + } + } + }, + { + "address": "module.repo_list[\"terraform-morpheus-database\"].github_repository.repo", + "module_address": "module.repo_list[\"terraform-morpheus-database\"]", + "mode": "managed", + "type": "github_repository", + "name": "repo", + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "no-op" + ], + "before": { + "allow_auto_merge": false, + "allow_merge_commit": false, + "allow_rebase_merge": false, + "allow_squash_merge": true, + "allow_update_branch": false, + "archive_on_destroy": true, + "archived": false, + "auto_init": true, + "default_branch": "main", + "delete_branch_on_merge": true, + "description": "Terraform module repo for terraform-morpheus-database", + "etag": "W/\"269d3d0fee90a1fabc292de936e831a794b4fd58606866ac6896951033af3737\"", + "full_name": "CSVD/terraform-morpheus-database", + "git_clone_url": "git://github.e.it.census.gov/CSVD/terraform-morpheus-database.git", + "gitignore_template": "", + "has_discussions": false, + "has_downloads": false, + "has_issues": true, + "has_projects": true, + "has_wiki": true, + "homepage_url": "", + "html_url": "https://github.e.it.census.gov/CSVD/terraform-morpheus-database", + "http_clone_url": "https://github.e.it.census.gov/CSVD/terraform-morpheus-database.git", + "id": "terraform-morpheus-database", + "ignore_vulnerability_alerts_during_read": null, + "is_template": false, + "license_template": null, + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "name": "terraform-morpheus-database", + "node_id": "MDEwOlJlcG9zaXRvcnkxMTM5", + "pages": [], + "primary_language": "", + "private": false, + "repo_id": 1139, + "security_and_analysis": [ + { + "advanced_security": [ + { + "status": "disabled" + } + ], + "secret_scanning": [ + { + "status": "disabled" + } + ], + "secret_scanning_push_protection": [ + { + "status": "disabled" + } + ] + } + ], + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "ssh_clone_url": "git@github.e.it.census.gov:CSVD/terraform-morpheus-database.git", + "svn_url": "https://github.e.it.census.gov/CSVD/terraform-morpheus-database", + "template": [], + "topics": [ + "morpheus-infra" + ], + "visibility": "public", + "vulnerability_alerts": false, + "web_commit_signoff_required": false + }, + "after": { + "allow_auto_merge": false, + "allow_merge_commit": false, + "allow_rebase_merge": false, + "allow_squash_merge": true, + "allow_update_branch": false, + "archive_on_destroy": true, + "archived": false, + "auto_init": true, + "default_branch": "main", + "delete_branch_on_merge": true, + "description": "Terraform module repo for terraform-morpheus-database", + "etag": "W/\"269d3d0fee90a1fabc292de936e831a794b4fd58606866ac6896951033af3737\"", + "full_name": "CSVD/terraform-morpheus-database", + "git_clone_url": "git://github.e.it.census.gov/CSVD/terraform-morpheus-database.git", + "gitignore_template": "", + "has_discussions": false, + "has_downloads": false, + "has_issues": true, + "has_projects": true, + "has_wiki": true, + "homepage_url": "", + "html_url": "https://github.e.it.census.gov/CSVD/terraform-morpheus-database", + "http_clone_url": "https://github.e.it.census.gov/CSVD/terraform-morpheus-database.git", + "id": "terraform-morpheus-database", + "ignore_vulnerability_alerts_during_read": null, + "is_template": false, + "license_template": null, + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "name": "terraform-morpheus-database", + "node_id": "MDEwOlJlcG9zaXRvcnkxMTM5", + "pages": [], + "primary_language": "", + "private": false, + "repo_id": 1139, + "security_and_analysis": [ + { + "advanced_security": [ + { + "status": "disabled" + } + ], + "secret_scanning": [ + { + "status": "disabled" + } + ], + "secret_scanning_push_protection": [ + { + "status": "disabled" + } + ] + } + ], + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "ssh_clone_url": "git@github.e.it.census.gov:CSVD/terraform-morpheus-database.git", + "svn_url": "https://github.e.it.census.gov/CSVD/terraform-morpheus-database", + "template": [], + "topics": [ + "morpheus-infra" + ], + "visibility": "public", + "vulnerability_alerts": false, + "web_commit_signoff_required": false + }, + "after_unknown": {}, + "before_sensitive": { + "pages": [], + "security_and_analysis": [ + { + "advanced_security": [ + {} + ], + "secret_scanning": [ + {} + ], + "secret_scanning_push_protection": [ + {} + ] + } + ], + "template": [], + "topics": [ + false + ] + }, + "after_sensitive": { + "pages": [], + "security_and_analysis": [ + { + "advanced_security": [ + {} + ], + "secret_scanning": [ + {} + ], + "secret_scanning_push_protection": [ + {} + ] + } + ], + "template": [], + "topics": [ + false + ] + } + } + }, + { + "address": "module.repo_list[\"terraform-morpheus-database\"].github_repository_collaborator.collaborators[\"gomez385\"]", + "module_address": "module.repo_list[\"terraform-morpheus-database\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "gomez385", + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "no-op" + ], + "before": { + "id": "terraform-morpheus-database:gomez385", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "terraform-morpheus-database", + "username": "gomez385" + }, + "after": { + "id": "terraform-morpheus-database:gomez385", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "terraform-morpheus-database", + "username": "gomez385" + }, + "after_unknown": {}, + "before_sensitive": {}, + "after_sensitive": {} + } + }, + { + "address": "module.repo_list[\"terraform-morpheus-database\"].github_repository_collaborator.collaborators[\"morga471\"]", + "module_address": "module.repo_list[\"terraform-morpheus-database\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "morga471", + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "no-op" + ], + "before": { + "id": "terraform-morpheus-database:morga471", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "terraform-morpheus-database", + "username": "morga471" + }, + "after": { + "id": "terraform-morpheus-database:morga471", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "terraform-morpheus-database", + "username": "morga471" + }, + "after_unknown": {}, + "before_sensitive": {}, + "after_sensitive": {} + } + }, + { + "address": "module.repo_list[\"terraform-morpheus-database\"].github_repository_collaborator.collaborators[\"naray007\"]", + "module_address": "module.repo_list[\"terraform-morpheus-database\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "naray007", + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "no-op" + ], + "before": { + "id": "terraform-morpheus-database:naray007", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "terraform-morpheus-database", + "username": "naray007" + }, + "after": { + "id": "terraform-morpheus-database:naray007", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "terraform-morpheus-database", + "username": "naray007" + }, + "after_unknown": {}, + "before_sensitive": {}, + "after_sensitive": {} + } + }, + { + "address": "module.repo_list[\"terraform-morpheus-efs\"].github_branch_protection.main[0]", + "module_address": "module.repo_list[\"terraform-morpheus-efs\"]", + "mode": "managed", + "type": "github_branch_protection", + "name": "main", + "index": 0, + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "create" + ], + "before": null, + "after": { + "allows_deletions": false, + "allows_force_pushes": false, + "enforce_admins": true, + "force_push_bypassers": null, + "lock_branch": false, + "pattern": "main", + "repository_id": "MDEwOlJlcG9zaXRvcnkxMTQ1", + "require_conversation_resolution": false, + "require_signed_commits": false, + "required_linear_history": false, + "required_pull_request_reviews": [ + { + "dismiss_stale_reviews": true, + "dismissal_restrictions": null, + "pull_request_bypassers": [ + "MDQ6VXNlcjU0OQ==", + "MDQ6VXNlcjYwMw==" + ], + "require_code_owner_reviews": true, + "require_last_push_approval": false, + "required_approving_review_count": 1, + "restrict_dismissals": null + } + ], + "required_status_checks": [], + "restrict_pushes": [] + }, + "after_unknown": { + "id": true, + "required_pull_request_reviews": [ + { + "pull_request_bypassers": [ + false, + false + ] + } + ], + "required_status_checks": [], + "restrict_pushes": [] + }, + "before_sensitive": false, + "after_sensitive": { + "required_pull_request_reviews": [ + { + "pull_request_bypassers": [ + false, + false + ] + } + ], + "required_status_checks": [], + "restrict_pushes": [] + } + } + }, + { + "address": "module.repo_list[\"terraform-morpheus-efs\"].github_repository.repo", + "module_address": "module.repo_list[\"terraform-morpheus-efs\"]", + "mode": "managed", + "type": "github_repository", + "name": "repo", + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "no-op" + ], + "before": { + "allow_auto_merge": false, + "allow_merge_commit": false, + "allow_rebase_merge": false, + "allow_squash_merge": true, + "allow_update_branch": false, + "archive_on_destroy": true, + "archived": false, + "auto_init": true, + "default_branch": "main", + "delete_branch_on_merge": true, + "description": "Terraform module repo for terraform-morpheus-efs", + "etag": "W/\"dc3c9f15d960b142b0a0fb60bd0dedabcb32553ca8bcf6de1f86f2f1d0e6b025\"", + "full_name": "CSVD/terraform-morpheus-efs", + "git_clone_url": "git://github.e.it.census.gov/CSVD/terraform-morpheus-efs.git", + "gitignore_template": "", + "has_discussions": false, + "has_downloads": false, + "has_issues": true, + "has_projects": true, + "has_wiki": true, + "homepage_url": "", + "html_url": "https://github.e.it.census.gov/CSVD/terraform-morpheus-efs", + "http_clone_url": "https://github.e.it.census.gov/CSVD/terraform-morpheus-efs.git", + "id": "terraform-morpheus-efs", + "ignore_vulnerability_alerts_during_read": null, + "is_template": false, + "license_template": null, + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "name": "terraform-morpheus-efs", + "node_id": "MDEwOlJlcG9zaXRvcnkxMTQ1", + "pages": [], + "primary_language": "", + "private": false, + "repo_id": 1145, + "security_and_analysis": [ + { + "advanced_security": [ + { + "status": "disabled" + } + ], + "secret_scanning": [ + { + "status": "disabled" + } + ], + "secret_scanning_push_protection": [ + { + "status": "disabled" + } + ] + } + ], + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "ssh_clone_url": "git@github.e.it.census.gov:CSVD/terraform-morpheus-efs.git", + "svn_url": "https://github.e.it.census.gov/CSVD/terraform-morpheus-efs", + "template": [], + "topics": [ + "morpheus-infra" + ], + "visibility": "public", + "vulnerability_alerts": false, + "web_commit_signoff_required": false + }, + "after": { + "allow_auto_merge": false, + "allow_merge_commit": false, + "allow_rebase_merge": false, + "allow_squash_merge": true, + "allow_update_branch": false, + "archive_on_destroy": true, + "archived": false, + "auto_init": true, + "default_branch": "main", + "delete_branch_on_merge": true, + "description": "Terraform module repo for terraform-morpheus-efs", + "etag": "W/\"dc3c9f15d960b142b0a0fb60bd0dedabcb32553ca8bcf6de1f86f2f1d0e6b025\"", + "full_name": "CSVD/terraform-morpheus-efs", + "git_clone_url": "git://github.e.it.census.gov/CSVD/terraform-morpheus-efs.git", + "gitignore_template": "", + "has_discussions": false, + "has_downloads": false, + "has_issues": true, + "has_projects": true, + "has_wiki": true, + "homepage_url": "", + "html_url": "https://github.e.it.census.gov/CSVD/terraform-morpheus-efs", + "http_clone_url": "https://github.e.it.census.gov/CSVD/terraform-morpheus-efs.git", + "id": "terraform-morpheus-efs", + "ignore_vulnerability_alerts_during_read": null, + "is_template": false, + "license_template": null, + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "name": "terraform-morpheus-efs", + "node_id": "MDEwOlJlcG9zaXRvcnkxMTQ1", + "pages": [], + "primary_language": "", + "private": false, + "repo_id": 1145, + "security_and_analysis": [ + { + "advanced_security": [ + { + "status": "disabled" + } + ], + "secret_scanning": [ + { + "status": "disabled" + } + ], + "secret_scanning_push_protection": [ + { + "status": "disabled" + } + ] + } + ], + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "ssh_clone_url": "git@github.e.it.census.gov:CSVD/terraform-morpheus-efs.git", + "svn_url": "https://github.e.it.census.gov/CSVD/terraform-morpheus-efs", + "template": [], + "topics": [ + "morpheus-infra" + ], + "visibility": "public", + "vulnerability_alerts": false, + "web_commit_signoff_required": false + }, + "after_unknown": {}, + "before_sensitive": { + "pages": [], + "security_and_analysis": [ + { + "advanced_security": [ + {} + ], + "secret_scanning": [ + {} + ], + "secret_scanning_push_protection": [ + {} + ] + } + ], + "template": [], + "topics": [ + false + ] + }, + "after_sensitive": { + "pages": [], + "security_and_analysis": [ + { + "advanced_security": [ + {} + ], + "secret_scanning": [ + {} + ], + "secret_scanning_push_protection": [ + {} + ] + } + ], + "template": [], + "topics": [ + false + ] + } + } + }, + { + "address": "module.repo_list[\"terraform-morpheus-efs\"].github_repository_collaborator.collaborators[\"gomez385\"]", + "module_address": "module.repo_list[\"terraform-morpheus-efs\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "gomez385", + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "no-op" + ], + "before": { + "id": "terraform-morpheus-efs:gomez385", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "terraform-morpheus-efs", + "username": "gomez385" + }, + "after": { + "id": "terraform-morpheus-efs:gomez385", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "terraform-morpheus-efs", + "username": "gomez385" + }, + "after_unknown": {}, + "before_sensitive": {}, + "after_sensitive": {} + } + }, + { + "address": "module.repo_list[\"terraform-morpheus-efs\"].github_repository_collaborator.collaborators[\"morga471\"]", + "module_address": "module.repo_list[\"terraform-morpheus-efs\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "morga471", + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "no-op" + ], + "before": { + "id": "terraform-morpheus-efs:morga471", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "terraform-morpheus-efs", + "username": "morga471" + }, + "after": { + "id": "terraform-morpheus-efs:morga471", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "terraform-morpheus-efs", + "username": "morga471" + }, + "after_unknown": {}, + "before_sensitive": {}, + "after_sensitive": {} + } + }, + { + "address": "module.repo_list[\"terraform-morpheus-efs\"].github_repository_collaborator.collaborators[\"naray007\"]", + "module_address": "module.repo_list[\"terraform-morpheus-efs\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "naray007", + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "no-op" + ], + "before": { + "id": "terraform-morpheus-efs:naray007", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "terraform-morpheus-efs", + "username": "naray007" + }, + "after": { + "id": "terraform-morpheus-efs:naray007", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "terraform-morpheus-efs", + "username": "naray007" + }, + "after_unknown": {}, + "before_sensitive": {}, + "after_sensitive": {} + } + }, + { + "address": "module.repo_list[\"terraform-morpheus-queue\"].github_branch_protection.main[0]", + "module_address": "module.repo_list[\"terraform-morpheus-queue\"]", + "mode": "managed", + "type": "github_branch_protection", + "name": "main", + "index": 0, + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "create" + ], + "before": null, + "after": { + "allows_deletions": false, + "allows_force_pushes": false, + "enforce_admins": true, + "force_push_bypassers": null, + "lock_branch": false, + "pattern": "main", + "repository_id": "MDEwOlJlcG9zaXRvcnkxMTM4", + "require_conversation_resolution": false, + "require_signed_commits": false, + "required_linear_history": false, + "required_pull_request_reviews": [ + { + "dismiss_stale_reviews": true, + "dismissal_restrictions": null, + "pull_request_bypassers": [ + "MDQ6VXNlcjU0OQ==", + "MDQ6VXNlcjYwMw==" + ], + "require_code_owner_reviews": true, + "require_last_push_approval": false, + "required_approving_review_count": 1, + "restrict_dismissals": null + } + ], + "required_status_checks": [], + "restrict_pushes": [] + }, + "after_unknown": { + "id": true, + "required_pull_request_reviews": [ + { + "pull_request_bypassers": [ + false, + false + ] + } + ], + "required_status_checks": [], + "restrict_pushes": [] + }, + "before_sensitive": false, + "after_sensitive": { + "required_pull_request_reviews": [ + { + "pull_request_bypassers": [ + false, + false + ] + } + ], + "required_status_checks": [], + "restrict_pushes": [] + } + } + }, + { + "address": "module.repo_list[\"terraform-morpheus-queue\"].github_repository.repo", + "module_address": "module.repo_list[\"terraform-morpheus-queue\"]", + "mode": "managed", + "type": "github_repository", + "name": "repo", + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "no-op" + ], + "before": { + "allow_auto_merge": false, + "allow_merge_commit": false, + "allow_rebase_merge": false, + "allow_squash_merge": true, + "allow_update_branch": false, + "archive_on_destroy": true, + "archived": false, + "auto_init": true, + "default_branch": "main", + "delete_branch_on_merge": true, + "description": "Terraform module repo for terraform-morpheus-queue", + "etag": "W/\"e4bd91a09e8cbd03ee4a92bf1a00e87c4419bfe4eb3e04e88e40e8ecd5e8919f\"", + "full_name": "CSVD/terraform-morpheus-queue", + "git_clone_url": "git://github.e.it.census.gov/CSVD/terraform-morpheus-queue.git", + "gitignore_template": "", + "has_discussions": false, + "has_downloads": false, + "has_issues": true, + "has_projects": true, + "has_wiki": true, + "homepage_url": "", + "html_url": "https://github.e.it.census.gov/CSVD/terraform-morpheus-queue", + "http_clone_url": "https://github.e.it.census.gov/CSVD/terraform-morpheus-queue.git", + "id": "terraform-morpheus-queue", + "ignore_vulnerability_alerts_during_read": null, + "is_template": false, + "license_template": null, + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "name": "terraform-morpheus-queue", + "node_id": "MDEwOlJlcG9zaXRvcnkxMTM4", + "pages": [], + "primary_language": "HCL", + "private": false, + "repo_id": 1138, + "security_and_analysis": [ + { + "advanced_security": [ + { + "status": "disabled" + } + ], + "secret_scanning": [ + { + "status": "disabled" + } + ], + "secret_scanning_push_protection": [ + { + "status": "disabled" + } + ] + } + ], + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "ssh_clone_url": "git@github.e.it.census.gov:CSVD/terraform-morpheus-queue.git", + "svn_url": "https://github.e.it.census.gov/CSVD/terraform-morpheus-queue", + "template": [], + "topics": [ + "morpheus-infra" + ], + "visibility": "public", + "vulnerability_alerts": false, + "web_commit_signoff_required": false + }, + "after": { + "allow_auto_merge": false, + "allow_merge_commit": false, + "allow_rebase_merge": false, + "allow_squash_merge": true, + "allow_update_branch": false, + "archive_on_destroy": true, + "archived": false, + "auto_init": true, + "default_branch": "main", + "delete_branch_on_merge": true, + "description": "Terraform module repo for terraform-morpheus-queue", + "etag": "W/\"e4bd91a09e8cbd03ee4a92bf1a00e87c4419bfe4eb3e04e88e40e8ecd5e8919f\"", + "full_name": "CSVD/terraform-morpheus-queue", + "git_clone_url": "git://github.e.it.census.gov/CSVD/terraform-morpheus-queue.git", + "gitignore_template": "", + "has_discussions": false, + "has_downloads": false, + "has_issues": true, + "has_projects": true, + "has_wiki": true, + "homepage_url": "", + "html_url": "https://github.e.it.census.gov/CSVD/terraform-morpheus-queue", + "http_clone_url": "https://github.e.it.census.gov/CSVD/terraform-morpheus-queue.git", + "id": "terraform-morpheus-queue", + "ignore_vulnerability_alerts_during_read": null, + "is_template": false, + "license_template": null, + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "name": "terraform-morpheus-queue", + "node_id": "MDEwOlJlcG9zaXRvcnkxMTM4", + "pages": [], + "primary_language": "HCL", + "private": false, + "repo_id": 1138, + "security_and_analysis": [ + { + "advanced_security": [ + { + "status": "disabled" + } + ], + "secret_scanning": [ + { + "status": "disabled" + } + ], + "secret_scanning_push_protection": [ + { + "status": "disabled" + } + ] + } + ], + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "ssh_clone_url": "git@github.e.it.census.gov:CSVD/terraform-morpheus-queue.git", + "svn_url": "https://github.e.it.census.gov/CSVD/terraform-morpheus-queue", + "template": [], + "topics": [ + "morpheus-infra" + ], + "visibility": "public", + "vulnerability_alerts": false, + "web_commit_signoff_required": false + }, + "after_unknown": {}, + "before_sensitive": { + "pages": [], + "security_and_analysis": [ + { + "advanced_security": [ + {} + ], + "secret_scanning": [ + {} + ], + "secret_scanning_push_protection": [ + {} + ] + } + ], + "template": [], + "topics": [ + false + ] + }, + "after_sensitive": { + "pages": [], + "security_and_analysis": [ + { + "advanced_security": [ + {} + ], + "secret_scanning": [ + {} + ], + "secret_scanning_push_protection": [ + {} + ] + } + ], + "template": [], + "topics": [ + false + ] + } + } + }, + { + "address": "module.repo_list[\"terraform-morpheus-queue\"].github_repository_collaborator.collaborators[\"gomez385\"]", + "module_address": "module.repo_list[\"terraform-morpheus-queue\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "gomez385", + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "no-op" + ], + "before": { + "id": "terraform-morpheus-queue:gomez385", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "terraform-morpheus-queue", + "username": "gomez385" + }, + "after": { + "id": "terraform-morpheus-queue:gomez385", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "terraform-morpheus-queue", + "username": "gomez385" + }, + "after_unknown": {}, + "before_sensitive": {}, + "after_sensitive": {} + } + }, + { + "address": "module.repo_list[\"terraform-morpheus-queue\"].github_repository_collaborator.collaborators[\"morga471\"]", + "module_address": "module.repo_list[\"terraform-morpheus-queue\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "morga471", + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "no-op" + ], + "before": { + "id": "terraform-morpheus-queue:morga471", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "terraform-morpheus-queue", + "username": "morga471" + }, + "after": { + "id": "terraform-morpheus-queue:morga471", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "terraform-morpheus-queue", + "username": "morga471" + }, + "after_unknown": {}, + "before_sensitive": {}, + "after_sensitive": {} + } + }, + { + "address": "module.repo_list[\"terraform-morpheus-queue\"].github_repository_collaborator.collaborators[\"naray007\"]", + "module_address": "module.repo_list[\"terraform-morpheus-queue\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "naray007", + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "no-op" + ], + "before": { + "id": "terraform-morpheus-queue:naray007", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "terraform-morpheus-queue", + "username": "naray007" + }, + "after": { + "id": "terraform-morpheus-queue:naray007", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "terraform-morpheus-queue", + "username": "naray007" + }, + "after_unknown": {}, + "before_sensitive": {}, + "after_sensitive": {} + } + }, + { + "address": "module.repo_list[\"terraform-morpheus-search\"].github_branch_protection.main[0]", + "module_address": "module.repo_list[\"terraform-morpheus-search\"]", + "mode": "managed", + "type": "github_branch_protection", + "name": "main", + "index": 0, + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "create" + ], + "before": null, + "after": { + "allows_deletions": false, + "allows_force_pushes": false, + "enforce_admins": true, + "force_push_bypassers": null, + "lock_branch": false, + "pattern": "main", + "repository_id": "MDEwOlJlcG9zaXRvcnkxMTQw", + "require_conversation_resolution": false, + "require_signed_commits": false, + "required_linear_history": false, + "required_pull_request_reviews": [ + { + "dismiss_stale_reviews": true, + "dismissal_restrictions": null, + "pull_request_bypassers": [ + "MDQ6VXNlcjU0OQ==", + "MDQ6VXNlcjYwMw==" + ], + "require_code_owner_reviews": true, + "require_last_push_approval": false, + "required_approving_review_count": 1, + "restrict_dismissals": null + } + ], + "required_status_checks": [], + "restrict_pushes": [] + }, + "after_unknown": { + "id": true, + "required_pull_request_reviews": [ + { + "pull_request_bypassers": [ + false, + false + ] + } + ], + "required_status_checks": [], + "restrict_pushes": [] + }, + "before_sensitive": false, + "after_sensitive": { + "required_pull_request_reviews": [ + { + "pull_request_bypassers": [ + false, + false + ] + } + ], + "required_status_checks": [], + "restrict_pushes": [] + } + } + }, + { + "address": "module.repo_list[\"terraform-morpheus-search\"].github_repository.repo", + "module_address": "module.repo_list[\"terraform-morpheus-search\"]", + "mode": "managed", + "type": "github_repository", + "name": "repo", + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "no-op" + ], + "before": { + "allow_auto_merge": false, + "allow_merge_commit": false, + "allow_rebase_merge": false, + "allow_squash_merge": true, + "allow_update_branch": false, + "archive_on_destroy": true, + "archived": false, + "auto_init": true, + "default_branch": "main", + "delete_branch_on_merge": true, + "description": "Terraform module repo for terraform-morpheus-search", + "etag": "W/\"8cb7ea94eb2507e506f9e00f1b11e0ac253c20001ed277f7a39f198c58d8edfb\"", + "full_name": "CSVD/terraform-morpheus-search", + "git_clone_url": "git://github.e.it.census.gov/CSVD/terraform-morpheus-search.git", + "gitignore_template": "", + "has_discussions": false, + "has_downloads": false, + "has_issues": true, + "has_projects": true, + "has_wiki": true, + "homepage_url": "", + "html_url": "https://github.e.it.census.gov/CSVD/terraform-morpheus-search", + "http_clone_url": "https://github.e.it.census.gov/CSVD/terraform-morpheus-search.git", + "id": "terraform-morpheus-search", + "ignore_vulnerability_alerts_during_read": null, + "is_template": false, + "license_template": null, + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "name": "terraform-morpheus-search", + "node_id": "MDEwOlJlcG9zaXRvcnkxMTQw", + "pages": [], + "primary_language": "", + "private": false, + "repo_id": 1140, + "security_and_analysis": [ + { + "advanced_security": [ + { + "status": "disabled" + } + ], + "secret_scanning": [ + { + "status": "disabled" + } + ], + "secret_scanning_push_protection": [ + { + "status": "disabled" + } + ] + } + ], + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "ssh_clone_url": "git@github.e.it.census.gov:CSVD/terraform-morpheus-search.git", + "svn_url": "https://github.e.it.census.gov/CSVD/terraform-morpheus-search", + "template": [], + "topics": [ + "morpheus-infra" + ], + "visibility": "public", + "vulnerability_alerts": false, + "web_commit_signoff_required": false + }, + "after": { + "allow_auto_merge": false, + "allow_merge_commit": false, + "allow_rebase_merge": false, + "allow_squash_merge": true, + "allow_update_branch": false, + "archive_on_destroy": true, + "archived": false, + "auto_init": true, + "default_branch": "main", + "delete_branch_on_merge": true, + "description": "Terraform module repo for terraform-morpheus-search", + "etag": "W/\"8cb7ea94eb2507e506f9e00f1b11e0ac253c20001ed277f7a39f198c58d8edfb\"", + "full_name": "CSVD/terraform-morpheus-search", + "git_clone_url": "git://github.e.it.census.gov/CSVD/terraform-morpheus-search.git", + "gitignore_template": "", + "has_discussions": false, + "has_downloads": false, + "has_issues": true, + "has_projects": true, + "has_wiki": true, + "homepage_url": "", + "html_url": "https://github.e.it.census.gov/CSVD/terraform-morpheus-search", + "http_clone_url": "https://github.e.it.census.gov/CSVD/terraform-morpheus-search.git", + "id": "terraform-morpheus-search", + "ignore_vulnerability_alerts_during_read": null, + "is_template": false, + "license_template": null, + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "name": "terraform-morpheus-search", + "node_id": "MDEwOlJlcG9zaXRvcnkxMTQw", + "pages": [], + "primary_language": "", + "private": false, + "repo_id": 1140, + "security_and_analysis": [ + { + "advanced_security": [ + { + "status": "disabled" + } + ], + "secret_scanning": [ + { + "status": "disabled" + } + ], + "secret_scanning_push_protection": [ + { + "status": "disabled" + } + ] + } + ], + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "ssh_clone_url": "git@github.e.it.census.gov:CSVD/terraform-morpheus-search.git", + "svn_url": "https://github.e.it.census.gov/CSVD/terraform-morpheus-search", + "template": [], + "topics": [ + "morpheus-infra" + ], + "visibility": "public", + "vulnerability_alerts": false, + "web_commit_signoff_required": false + }, + "after_unknown": {}, + "before_sensitive": { + "pages": [], + "security_and_analysis": [ + { + "advanced_security": [ + {} + ], + "secret_scanning": [ + {} + ], + "secret_scanning_push_protection": [ + {} + ] + } + ], + "template": [], + "topics": [ + false + ] + }, + "after_sensitive": { + "pages": [], + "security_and_analysis": [ + { + "advanced_security": [ + {} + ], + "secret_scanning": [ + {} + ], + "secret_scanning_push_protection": [ + {} + ] + } + ], + "template": [], + "topics": [ + false + ] + } + } + }, + { + "address": "module.repo_list[\"terraform-morpheus-search\"].github_repository_collaborator.collaborators[\"gomez385\"]", + "module_address": "module.repo_list[\"terraform-morpheus-search\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "gomez385", + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "no-op" + ], + "before": { + "id": "terraform-morpheus-search:gomez385", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "terraform-morpheus-search", + "username": "gomez385" + }, + "after": { + "id": "terraform-morpheus-search:gomez385", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "terraform-morpheus-search", + "username": "gomez385" + }, + "after_unknown": {}, + "before_sensitive": {}, + "after_sensitive": {} + } + }, + { + "address": "module.repo_list[\"terraform-morpheus-search\"].github_repository_collaborator.collaborators[\"morga471\"]", + "module_address": "module.repo_list[\"terraform-morpheus-search\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "morga471", + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "no-op" + ], + "before": { + "id": "terraform-morpheus-search:morga471", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "terraform-morpheus-search", + "username": "morga471" + }, + "after": { + "id": "terraform-morpheus-search:morga471", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "terraform-morpheus-search", + "username": "morga471" + }, + "after_unknown": {}, + "before_sensitive": {}, + "after_sensitive": {} + } + }, + { + "address": "module.repo_list[\"terraform-morpheus-search\"].github_repository_collaborator.collaborators[\"naray007\"]", + "module_address": "module.repo_list[\"terraform-morpheus-search\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "naray007", + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "no-op" + ], + "before": { + "id": "terraform-morpheus-search:naray007", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "terraform-morpheus-search", + "username": "naray007" + }, + "after": { + "id": "terraform-morpheus-search:naray007", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "terraform-morpheus-search", + "username": "naray007" + }, + "after_unknown": {}, + "before_sensitive": {}, + "after_sensitive": {} + } + }, + { + "address": "module.repo_list[\"terraform-morpheus-storage\"].github_branch_protection.main[0]", + "module_address": "module.repo_list[\"terraform-morpheus-storage\"]", + "mode": "managed", + "type": "github_branch_protection", + "name": "main", + "index": 0, + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "create" + ], + "before": null, + "after": { + "allows_deletions": false, + "allows_force_pushes": false, + "enforce_admins": true, + "force_push_bypassers": null, + "lock_branch": false, + "pattern": "main", + "repository_id": "MDEwOlJlcG9zaXRvcnkxMTQx", + "require_conversation_resolution": false, + "require_signed_commits": false, + "required_linear_history": false, + "required_pull_request_reviews": [ + { + "dismiss_stale_reviews": true, + "dismissal_restrictions": null, + "pull_request_bypassers": [ + "MDQ6VXNlcjU0OQ==", + "MDQ6VXNlcjYwMw==" + ], + "require_code_owner_reviews": true, + "require_last_push_approval": false, + "required_approving_review_count": 1, + "restrict_dismissals": null + } + ], + "required_status_checks": [], + "restrict_pushes": [] + }, + "after_unknown": { + "id": true, + "required_pull_request_reviews": [ + { + "pull_request_bypassers": [ + false, + false + ] + } + ], + "required_status_checks": [], + "restrict_pushes": [] + }, + "before_sensitive": false, + "after_sensitive": { + "required_pull_request_reviews": [ + { + "pull_request_bypassers": [ + false, + false + ] + } + ], + "required_status_checks": [], + "restrict_pushes": [] + } + } + }, + { + "address": "module.repo_list[\"terraform-morpheus-storage\"].github_repository.repo", + "module_address": "module.repo_list[\"terraform-morpheus-storage\"]", + "mode": "managed", + "type": "github_repository", + "name": "repo", + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "no-op" + ], + "before": { + "allow_auto_merge": false, + "allow_merge_commit": false, + "allow_rebase_merge": false, + "allow_squash_merge": true, + "allow_update_branch": false, + "archive_on_destroy": true, + "archived": false, + "auto_init": true, + "default_branch": "main", + "delete_branch_on_merge": true, + "description": "Terraform module repo for terraform-morpheus-storage", + "etag": "W/\"51245141e6ea8cc96e5b15673bc1da6a606761a6028d890b25a2f12333b1417e\"", + "full_name": "CSVD/terraform-morpheus-storage", + "git_clone_url": "git://github.e.it.census.gov/CSVD/terraform-morpheus-storage.git", + "gitignore_template": "", + "has_discussions": false, + "has_downloads": false, + "has_issues": true, + "has_projects": true, + "has_wiki": true, + "homepage_url": "", + "html_url": "https://github.e.it.census.gov/CSVD/terraform-morpheus-storage", + "http_clone_url": "https://github.e.it.census.gov/CSVD/terraform-morpheus-storage.git", + "id": "terraform-morpheus-storage", + "ignore_vulnerability_alerts_during_read": null, + "is_template": false, + "license_template": null, + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "name": "terraform-morpheus-storage", + "node_id": "MDEwOlJlcG9zaXRvcnkxMTQx", + "pages": [], + "primary_language": "", + "private": false, + "repo_id": 1141, + "security_and_analysis": [ + { + "advanced_security": [ + { + "status": "disabled" + } + ], + "secret_scanning": [ + { + "status": "disabled" + } + ], + "secret_scanning_push_protection": [ + { + "status": "disabled" + } + ] + } + ], + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "ssh_clone_url": "git@github.e.it.census.gov:CSVD/terraform-morpheus-storage.git", + "svn_url": "https://github.e.it.census.gov/CSVD/terraform-morpheus-storage", + "template": [], + "topics": [ + "morpheus-infra" + ], + "visibility": "public", + "vulnerability_alerts": false, + "web_commit_signoff_required": false + }, + "after": { + "allow_auto_merge": false, + "allow_merge_commit": false, + "allow_rebase_merge": false, + "allow_squash_merge": true, + "allow_update_branch": false, + "archive_on_destroy": true, + "archived": false, + "auto_init": true, + "default_branch": "main", + "delete_branch_on_merge": true, + "description": "Terraform module repo for terraform-morpheus-storage", + "etag": "W/\"51245141e6ea8cc96e5b15673bc1da6a606761a6028d890b25a2f12333b1417e\"", + "full_name": "CSVD/terraform-morpheus-storage", + "git_clone_url": "git://github.e.it.census.gov/CSVD/terraform-morpheus-storage.git", + "gitignore_template": "", + "has_discussions": false, + "has_downloads": false, + "has_issues": true, + "has_projects": true, + "has_wiki": true, + "homepage_url": "", + "html_url": "https://github.e.it.census.gov/CSVD/terraform-morpheus-storage", + "http_clone_url": "https://github.e.it.census.gov/CSVD/terraform-morpheus-storage.git", + "id": "terraform-morpheus-storage", + "ignore_vulnerability_alerts_during_read": null, + "is_template": false, + "license_template": null, + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "name": "terraform-morpheus-storage", + "node_id": "MDEwOlJlcG9zaXRvcnkxMTQx", + "pages": [], + "primary_language": "", + "private": false, + "repo_id": 1141, + "security_and_analysis": [ + { + "advanced_security": [ + { + "status": "disabled" + } + ], + "secret_scanning": [ + { + "status": "disabled" + } + ], + "secret_scanning_push_protection": [ + { + "status": "disabled" + } + ] + } + ], + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "ssh_clone_url": "git@github.e.it.census.gov:CSVD/terraform-morpheus-storage.git", + "svn_url": "https://github.e.it.census.gov/CSVD/terraform-morpheus-storage", + "template": [], + "topics": [ + "morpheus-infra" + ], + "visibility": "public", + "vulnerability_alerts": false, + "web_commit_signoff_required": false + }, + "after_unknown": {}, + "before_sensitive": { + "pages": [], + "security_and_analysis": [ + { + "advanced_security": [ + {} + ], + "secret_scanning": [ + {} + ], + "secret_scanning_push_protection": [ + {} + ] + } + ], + "template": [], + "topics": [ + false + ] + }, + "after_sensitive": { + "pages": [], + "security_and_analysis": [ + { + "advanced_security": [ + {} + ], + "secret_scanning": [ + {} + ], + "secret_scanning_push_protection": [ + {} + ] + } + ], + "template": [], + "topics": [ + false + ] + } + } + }, + { + "address": "module.repo_list[\"terraform-morpheus-storage\"].github_repository_collaborator.collaborators[\"gomez385\"]", + "module_address": "module.repo_list[\"terraform-morpheus-storage\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "gomez385", + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "no-op" + ], + "before": { + "id": "terraform-morpheus-storage:gomez385", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "terraform-morpheus-storage", + "username": "gomez385" + }, + "after": { + "id": "terraform-morpheus-storage:gomez385", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "terraform-morpheus-storage", + "username": "gomez385" + }, + "after_unknown": {}, + "before_sensitive": {}, + "after_sensitive": {} + } + }, + { + "address": "module.repo_list[\"terraform-morpheus-storage\"].github_repository_collaborator.collaborators[\"morga471\"]", + "module_address": "module.repo_list[\"terraform-morpheus-storage\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "morga471", + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "no-op" + ], + "before": { + "id": "terraform-morpheus-storage:morga471", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "terraform-morpheus-storage", + "username": "morga471" + }, + "after": { + "id": "terraform-morpheus-storage:morga471", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "terraform-morpheus-storage", + "username": "morga471" + }, + "after_unknown": {}, + "before_sensitive": {}, + "after_sensitive": {} + } + }, + { + "address": "module.repo_list[\"terraform-morpheus-storage\"].github_repository_collaborator.collaborators[\"naray007\"]", + "module_address": "module.repo_list[\"terraform-morpheus-storage\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "naray007", + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "no-op" + ], + "before": { + "id": "terraform-morpheus-storage:naray007", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "terraform-morpheus-storage", + "username": "naray007" + }, + "after": { + "id": "terraform-morpheus-storage:naray007", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "terraform-morpheus-storage", + "username": "naray007" + }, + "after_unknown": {}, + "before_sensitive": {}, + "after_sensitive": {} + } + }, + { + "address": "module.repo_list[\"tf-caching\"].github_branch_protection.main[0]", + "module_address": "module.repo_list[\"tf-caching\"]", + "mode": "managed", + "type": "github_branch_protection", + "name": "main", + "index": 0, + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "create" + ], + "before": null, + "after": { + "allows_deletions": false, + "allows_force_pushes": false, + "enforce_admins": true, + "force_push_bypassers": null, + "lock_branch": false, + "pattern": "main", + "repository_id": "MDEwOlJlcG9zaXRvcnkxMTAw", + "require_conversation_resolution": false, + "require_signed_commits": false, + "required_linear_history": false, + "required_pull_request_reviews": [ + { + "dismiss_stale_reviews": true, + "dismissal_restrictions": null, + "pull_request_bypassers": [ + "MDQ6VXNlcjU0OQ==", + "MDQ6VXNlcjYwMw==" + ], + "require_code_owner_reviews": true, + "require_last_push_approval": false, + "required_approving_review_count": 1, + "restrict_dismissals": null + } + ], + "required_status_checks": [], + "restrict_pushes": [] + }, + "after_unknown": { + "id": true, + "required_pull_request_reviews": [ + { + "pull_request_bypassers": [ + false, + false + ] + } + ], + "required_status_checks": [], + "restrict_pushes": [] + }, + "before_sensitive": false, + "after_sensitive": { + "required_pull_request_reviews": [ + { + "pull_request_bypassers": [ + false, + false + ] + } + ], + "required_status_checks": [], + "restrict_pushes": [] + } + } + }, + { + "address": "module.repo_list[\"tf-caching\"].github_repository.repo", + "module_address": "module.repo_list[\"tf-caching\"]", + "mode": "managed", + "type": "github_repository", + "name": "repo", + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "no-op" + ], + "before": { + "allow_auto_merge": false, + "allow_merge_commit": false, + "allow_rebase_merge": false, + "allow_squash_merge": true, + "allow_update_branch": false, + "archive_on_destroy": true, + "archived": false, + "auto_init": true, + "default_branch": "main", + "delete_branch_on_merge": true, + "description": "Terraform Caching service", + "etag": "W/\"5ee9fd5731599f36499bd171abf061ba0433be3abed89a7b88e9f51a44c79e8d\"", + "full_name": "CSVD/tf-caching", + "git_clone_url": "git://github.e.it.census.gov/CSVD/tf-caching.git", + "gitignore_template": "", + "has_discussions": false, + "has_downloads": false, + "has_issues": true, + "has_projects": true, + "has_wiki": true, + "homepage_url": "", + "html_url": "https://github.e.it.census.gov/CSVD/tf-caching", + "http_clone_url": "https://github.e.it.census.gov/CSVD/tf-caching.git", + "id": "tf-caching", + "ignore_vulnerability_alerts_during_read": null, + "is_template": false, + "license_template": null, + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "name": "tf-caching", + "node_id": "MDEwOlJlcG9zaXRvcnkxMTAw", + "pages": [], + "primary_language": "HCL", + "private": false, + "repo_id": 1100, + "security_and_analysis": [ + { + "advanced_security": [ + { + "status": "disabled" + } + ], + "secret_scanning": [ + { + "status": "disabled" + } + ], + "secret_scanning_push_protection": [ + { + "status": "disabled" + } + ] + } + ], + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "ssh_clone_url": "git@github.e.it.census.gov:CSVD/tf-caching.git", + "svn_url": "https://github.e.it.census.gov/CSVD/tf-caching", + "template": [], + "topics": [ + "terraform-tools" + ], + "visibility": "public", + "vulnerability_alerts": false, + "web_commit_signoff_required": false + }, + "after": { + "allow_auto_merge": false, + "allow_merge_commit": false, + "allow_rebase_merge": false, + "allow_squash_merge": true, + "allow_update_branch": false, + "archive_on_destroy": true, + "archived": false, + "auto_init": true, + "default_branch": "main", + "delete_branch_on_merge": true, + "description": "Terraform Caching service", + "etag": "W/\"5ee9fd5731599f36499bd171abf061ba0433be3abed89a7b88e9f51a44c79e8d\"", + "full_name": "CSVD/tf-caching", + "git_clone_url": "git://github.e.it.census.gov/CSVD/tf-caching.git", + "gitignore_template": "", + "has_discussions": false, + "has_downloads": false, + "has_issues": true, + "has_projects": true, + "has_wiki": true, + "homepage_url": "", + "html_url": "https://github.e.it.census.gov/CSVD/tf-caching", + "http_clone_url": "https://github.e.it.census.gov/CSVD/tf-caching.git", + "id": "tf-caching", + "ignore_vulnerability_alerts_during_read": null, + "is_template": false, + "license_template": null, + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "name": "tf-caching", + "node_id": "MDEwOlJlcG9zaXRvcnkxMTAw", + "pages": [], + "primary_language": "HCL", + "private": false, + "repo_id": 1100, + "security_and_analysis": [ + { + "advanced_security": [ + { + "status": "disabled" + } + ], + "secret_scanning": [ + { + "status": "disabled" + } + ], + "secret_scanning_push_protection": [ + { + "status": "disabled" + } + ] + } + ], + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "ssh_clone_url": "git@github.e.it.census.gov:CSVD/tf-caching.git", + "svn_url": "https://github.e.it.census.gov/CSVD/tf-caching", + "template": [], + "topics": [ + "terraform-tools" + ], + "visibility": "public", + "vulnerability_alerts": false, + "web_commit_signoff_required": false + }, + "after_unknown": {}, + "before_sensitive": { + "pages": [], + "security_and_analysis": [ + { + "advanced_security": [ + {} + ], + "secret_scanning": [ + {} + ], + "secret_scanning_push_protection": [ + {} + ] + } + ], + "template": [], + "topics": [ + false + ] + }, + "after_sensitive": { + "pages": [], + "security_and_analysis": [ + { + "advanced_security": [ + {} + ], + "secret_scanning": [ + {} + ], + "secret_scanning_push_protection": [ + {} + ] + } + ], + "template": [], + "topics": [ + false + ] + } + } + }, + { + "address": "module.repo_list[\"tf-caching\"].github_repository_collaborator.collaborators[\"gomez385\"]", + "module_address": "module.repo_list[\"tf-caching\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "gomez385", + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "no-op" + ], + "before": { + "id": "tf-caching:gomez385", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "tf-caching", + "username": "gomez385" + }, + "after": { + "id": "tf-caching:gomez385", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "tf-caching", + "username": "gomez385" + }, + "after_unknown": {}, + "before_sensitive": {}, + "after_sensitive": {} + } + }, + { + "address": "module.repo_list[\"tf-caching\"].github_repository_collaborator.collaborators[\"morga471\"]", + "module_address": "module.repo_list[\"tf-caching\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "morga471", + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "no-op" + ], + "before": { + "id": "tf-caching:morga471", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "tf-caching", + "username": "morga471" + }, + "after": { + "id": "tf-caching:morga471", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "tf-caching", + "username": "morga471" + }, + "after_unknown": {}, + "before_sensitive": {}, + "after_sensitive": {} + } + }, + { + "address": "module.repo_list[\"tf-caching\"].github_repository_collaborator.collaborators[\"naray007\"]", + "module_address": "module.repo_list[\"tf-caching\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "naray007", + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "no-op" + ], + "before": { + "id": "tf-caching:naray007", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "tf-caching", + "username": "naray007" + }, + "after": { + "id": "tf-caching:naray007", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "tf-caching", + "username": "naray007" + }, + "after_unknown": {}, + "before_sensitive": {}, + "after_sensitive": {} + } + }, + { + "address": "module.repo_list[\"tf-tools\"].github_branch_protection.main[0]", + "module_address": "module.repo_list[\"tf-tools\"]", + "mode": "managed", + "type": "github_branch_protection", + "name": "main", + "index": 0, + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "create" + ], + "before": null, + "after": { + "allows_deletions": false, + "allows_force_pushes": false, + "enforce_admins": true, + "force_push_bypassers": null, + "lock_branch": false, + "pattern": "main", + "repository_id": "MDEwOlJlcG9zaXRvcnkxMDU2", + "require_conversation_resolution": false, + "require_signed_commits": false, + "required_linear_history": false, + "required_pull_request_reviews": [ + { + "dismiss_stale_reviews": true, + "dismissal_restrictions": null, + "pull_request_bypassers": [ + "MDQ6VXNlcjU0OQ==", + "MDQ6VXNlcjYwMw==" + ], + "require_code_owner_reviews": true, + "require_last_push_approval": false, + "required_approving_review_count": 1, + "restrict_dismissals": null + } + ], + "required_status_checks": [], + "restrict_pushes": [] + }, + "after_unknown": { + "id": true, + "required_pull_request_reviews": [ + { + "pull_request_bypassers": [ + false, + false + ] + } + ], + "required_status_checks": [], + "restrict_pushes": [] + }, + "before_sensitive": false, + "after_sensitive": { + "required_pull_request_reviews": [ + { + "pull_request_bypassers": [ + false, + false + ] + } + ], + "required_status_checks": [], + "restrict_pushes": [] + } + } + }, + { + "address": "module.repo_list[\"tf-tools\"].github_repository.repo", + "module_address": "module.repo_list[\"tf-tools\"]", + "mode": "managed", + "type": "github_repository", + "name": "repo", + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "no-op" + ], + "before": { + "allow_auto_merge": false, + "allow_merge_commit": false, + "allow_rebase_merge": false, + "allow_squash_merge": true, + "allow_update_branch": false, + "archive_on_destroy": true, + "archived": false, + "auto_init": true, + "default_branch": "main", + "delete_branch_on_merge": true, + "description": "Tools for managing Terraform", + "etag": "W/\"d1710d2138a2f53f9531ba47fcc1aedfba1c84fb09fd10113527aba58c749e49\"", + "full_name": "CSVD/tf-tools", + "git_clone_url": "git://github.e.it.census.gov/CSVD/tf-tools.git", + "gitignore_template": "", + "has_discussions": false, + "has_downloads": false, + "has_issues": true, + "has_projects": true, + "has_wiki": true, + "homepage_url": "", + "html_url": "https://github.e.it.census.gov/CSVD/tf-tools", + "http_clone_url": "https://github.e.it.census.gov/CSVD/tf-tools.git", + "id": "tf-tools", + "ignore_vulnerability_alerts_during_read": null, + "is_template": false, + "license_template": null, + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "name": "tf-tools", + "node_id": "MDEwOlJlcG9zaXRvcnkxMDU2", + "pages": [], + "primary_language": "", + "private": false, + "repo_id": 1056, + "security_and_analysis": [ + { + "advanced_security": [ + { + "status": "disabled" + } + ], + "secret_scanning": [ + { + "status": "disabled" + } + ], + "secret_scanning_push_protection": [ + { + "status": "disabled" + } + ] + } + ], + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "ssh_clone_url": "git@github.e.it.census.gov:CSVD/tf-tools.git", + "svn_url": "https://github.e.it.census.gov/CSVD/tf-tools", + "template": [], + "topics": [ + "terraform-tools" + ], + "visibility": "public", + "vulnerability_alerts": false, + "web_commit_signoff_required": false + }, + "after": { + "allow_auto_merge": false, + "allow_merge_commit": false, + "allow_rebase_merge": false, + "allow_squash_merge": true, + "allow_update_branch": false, + "archive_on_destroy": true, + "archived": false, + "auto_init": true, + "default_branch": "main", + "delete_branch_on_merge": true, + "description": "Tools for managing Terraform", + "etag": "W/\"d1710d2138a2f53f9531ba47fcc1aedfba1c84fb09fd10113527aba58c749e49\"", + "full_name": "CSVD/tf-tools", + "git_clone_url": "git://github.e.it.census.gov/CSVD/tf-tools.git", + "gitignore_template": "", + "has_discussions": false, + "has_downloads": false, + "has_issues": true, + "has_projects": true, + "has_wiki": true, + "homepage_url": "", + "html_url": "https://github.e.it.census.gov/CSVD/tf-tools", + "http_clone_url": "https://github.e.it.census.gov/CSVD/tf-tools.git", + "id": "tf-tools", + "ignore_vulnerability_alerts_during_read": null, + "is_template": false, + "license_template": null, + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "name": "tf-tools", + "node_id": "MDEwOlJlcG9zaXRvcnkxMDU2", + "pages": [], + "primary_language": "", + "private": false, + "repo_id": 1056, + "security_and_analysis": [ + { + "advanced_security": [ + { + "status": "disabled" + } + ], + "secret_scanning": [ + { + "status": "disabled" + } + ], + "secret_scanning_push_protection": [ + { + "status": "disabled" + } + ] + } + ], + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "ssh_clone_url": "git@github.e.it.census.gov:CSVD/tf-tools.git", + "svn_url": "https://github.e.it.census.gov/CSVD/tf-tools", + "template": [], + "topics": [ + "terraform-tools" + ], + "visibility": "public", + "vulnerability_alerts": false, + "web_commit_signoff_required": false + }, + "after_unknown": {}, + "before_sensitive": { + "pages": [], + "security_and_analysis": [ + { + "advanced_security": [ + {} + ], + "secret_scanning": [ + {} + ], + "secret_scanning_push_protection": [ + {} + ] + } + ], + "template": [], + "topics": [ + false + ] + }, + "after_sensitive": { + "pages": [], + "security_and_analysis": [ + { + "advanced_security": [ + {} + ], + "secret_scanning": [ + {} + ], + "secret_scanning_push_protection": [ + {} + ] + } + ], + "template": [], + "topics": [ + false + ] + } + } + }, + { + "address": "module.repo_list[\"tf-tools\"].github_repository_collaborator.collaborators[\"gomez385\"]", + "module_address": "module.repo_list[\"tf-tools\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "gomez385", + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "no-op" + ], + "before": { + "id": "tf-tools:gomez385", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "tf-tools", + "username": "gomez385" + }, + "after": { + "id": "tf-tools:gomez385", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "tf-tools", + "username": "gomez385" + }, + "after_unknown": {}, + "before_sensitive": {}, + "after_sensitive": {} + } + }, + { + "address": "module.repo_list[\"tf-tools\"].github_repository_collaborator.collaborators[\"morga471\"]", + "module_address": "module.repo_list[\"tf-tools\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "morga471", + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "no-op" + ], + "before": { + "id": "tf-tools:morga471", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "tf-tools", + "username": "morga471" + }, + "after": { + "id": "tf-tools:morga471", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "tf-tools", + "username": "morga471" + }, + "after_unknown": {}, + "before_sensitive": {}, + "after_sensitive": {} + } + }, + { + "address": "module.repo_list[\"tf-tools\"].github_repository_collaborator.collaborators[\"naray007\"]", + "module_address": "module.repo_list[\"tf-tools\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "naray007", + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "no-op" + ], + "before": { + "id": "tf-tools:naray007", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "tf-tools", + "username": "naray007" + }, + "after": { + "id": "tf-tools:naray007", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "tf-tools", + "username": "naray007" + }, + "after_unknown": {}, + "before_sensitive": {}, + "after_sensitive": {} + } + }, + { + "address": "module.repo_list[\"vpc-services\"].github_repository.repo", + "previous_address": "module.vpc_services.github_repository.repo", + "module_address": "module.repo_list[\"vpc-services\"]", + "mode": "managed", + "type": "github_repository", + "name": "repo", + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "no-op" + ], + "before": { + "allow_auto_merge": false, + "allow_merge_commit": false, + "allow_rebase_merge": false, + "allow_squash_merge": true, + "allow_update_branch": false, + "archive_on_destroy": true, + "archived": false, + "auto_init": true, + "default_branch": "main", + "delete_branch_on_merge": true, + "description": "Add VPC Endpoints for Supported Services to given Subnet", + "etag": "W/\"8969d0ce7e0936f79fadaff73fe21b8c6f5ca99794c37d0ed1a53ad9457f4cc4\"", + "full_name": "CSVD/vpc-services", + "git_clone_url": "git://github.e.it.census.gov/CSVD/vpc-services.git", + "gitignore_template": "", + "has_discussions": false, + "has_downloads": false, + "has_issues": true, + "has_projects": true, + "has_wiki": true, + "homepage_url": "", + "html_url": "https://github.e.it.census.gov/CSVD/vpc-services", + "http_clone_url": "https://github.e.it.census.gov/CSVD/vpc-services.git", + "id": "vpc-services", + "ignore_vulnerability_alerts_during_read": null, + "is_template": false, + "license_template": null, + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "name": "vpc-services", + "node_id": "MDEwOlJlcG9zaXRvcnkxMDQz", + "pages": [], + "primary_language": "Python", + "private": false, + "repo_id": 1043, + "security_and_analysis": [ + { + "advanced_security": [ + { + "status": "disabled" + } + ], + "secret_scanning": [ + { + "status": "disabled" + } + ], + "secret_scanning_push_protection": [ + { + "status": "disabled" + } + ] + } + ], + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "ssh_clone_url": "git@github.e.it.census.gov:CSVD/vpc-services.git", + "svn_url": "https://github.e.it.census.gov/CSVD/vpc-services", + "template": [], + "topics": [ + "terraform" + ], + "visibility": "public", + "vulnerability_alerts": false, + "web_commit_signoff_required": false + }, + "after": { + "allow_auto_merge": false, + "allow_merge_commit": false, + "allow_rebase_merge": false, + "allow_squash_merge": true, + "allow_update_branch": false, + "archive_on_destroy": true, + "archived": false, + "auto_init": true, + "default_branch": "main", + "delete_branch_on_merge": true, + "description": "Add VPC Endpoints for Supported Services to given Subnet", + "etag": "W/\"8969d0ce7e0936f79fadaff73fe21b8c6f5ca99794c37d0ed1a53ad9457f4cc4\"", + "full_name": "CSVD/vpc-services", + "git_clone_url": "git://github.e.it.census.gov/CSVD/vpc-services.git", + "gitignore_template": "", + "has_discussions": false, + "has_downloads": false, + "has_issues": true, + "has_projects": true, + "has_wiki": true, + "homepage_url": "", + "html_url": "https://github.e.it.census.gov/CSVD/vpc-services", + "http_clone_url": "https://github.e.it.census.gov/CSVD/vpc-services.git", + "id": "vpc-services", + "ignore_vulnerability_alerts_during_read": null, + "is_template": false, + "license_template": null, + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "name": "vpc-services", + "node_id": "MDEwOlJlcG9zaXRvcnkxMDQz", + "pages": [], + "primary_language": "Python", + "private": false, + "repo_id": 1043, + "security_and_analysis": [ + { + "advanced_security": [ + { + "status": "disabled" + } + ], + "secret_scanning": [ + { + "status": "disabled" + } + ], + "secret_scanning_push_protection": [ + { + "status": "disabled" + } + ] + } + ], + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "ssh_clone_url": "git@github.e.it.census.gov:CSVD/vpc-services.git", + "svn_url": "https://github.e.it.census.gov/CSVD/vpc-services", + "template": [], + "topics": [ + "terraform" + ], + "visibility": "public", + "vulnerability_alerts": false, + "web_commit_signoff_required": false + }, + "after_unknown": {}, + "before_sensitive": { + "pages": [], + "security_and_analysis": [ + { + "advanced_security": [ + {} + ], + "secret_scanning": [ + {} + ], + "secret_scanning_push_protection": [ + {} + ] + } + ], + "template": [], + "topics": [ + false + ] + }, + "after_sensitive": { + "pages": [], + "security_and_analysis": [ + { + "advanced_security": [ + {} + ], + "secret_scanning": [ + {} + ], + "secret_scanning_push_protection": [ + {} + ] + } + ], + "template": [], + "topics": [ + false + ] + } + } + }, + { + "address": "module.repo_list[\"vpc-services\"].github_repository_collaborator.collaborators[\"gomez385\"]", + "previous_address": "module.vpc_services.github_repository_collaborator.collaborators[\"gomez385\"]", + "module_address": "module.repo_list[\"vpc-services\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "gomez385", + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "no-op" + ], + "before": { + "id": "vpc-services:gomez385", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "vpc-services", + "username": "gomez385" + }, + "after": { + "id": "vpc-services:gomez385", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "vpc-services", + "username": "gomez385" + }, + "after_unknown": {}, + "before_sensitive": {}, + "after_sensitive": {} + } + }, + { + "address": "module.repo_list[\"vpc-services\"].github_repository_collaborator.collaborators[\"morga471\"]", + "previous_address": "module.vpc_services.github_repository_collaborator.collaborators[\"morga471\"]", + "module_address": "module.repo_list[\"vpc-services\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "morga471", + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "no-op" + ], + "before": { + "id": "vpc-services:morga471", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "vpc-services", + "username": "morga471" + }, + "after": { + "id": "vpc-services:morga471", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "vpc-services", + "username": "morga471" + }, + "after_unknown": {}, + "before_sensitive": {}, + "after_sensitive": {} + } + }, + { + "address": "module.repo_list[\"vpc-services\"].github_repository_collaborator.collaborators[\"naray007\"]", + "previous_address": "module.vpc_services.github_repository_collaborator.collaborators[\"naray007\"]", + "module_address": "module.repo_list[\"vpc-services\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "naray007", + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "no-op" + ], + "before": { + "id": "vpc-services:naray007", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "vpc-services", + "username": "naray007" + }, + "after": { + "id": "vpc-services:naray007", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "vpc-services", + "username": "naray007" + }, + "after_unknown": {}, + "before_sensitive": {}, + "after_sensitive": {} + } + }, + { + "address": "module.repo_list[\"windows-image-pipeline\"].github_repository.repo", + "previous_address": "module.image_pipeline_repos[\"windows-image-pipeline\"].github_repository.repo", + "module_address": "module.repo_list[\"windows-image-pipeline\"]", + "mode": "managed", + "type": "github_repository", + "name": "repo", + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "update" + ], + "before": { + "allow_auto_merge": false, + "allow_merge_commit": false, + "allow_rebase_merge": false, + "allow_squash_merge": true, + "allow_update_branch": false, + "archive_on_destroy": true, + "archived": false, + "auto_init": true, + "default_branch": "main", + "delete_branch_on_merge": true, + "description": "Template repo for windows image pipelines", + "etag": "W/\"fc963d8c556c73f42ddddb1b4f9d81d4f5fdd9c84aa49e56469aac6094ababc7\"", + "full_name": "CSVD/windows-image-pipeline", + "git_clone_url": "git://github.e.it.census.gov/CSVD/windows-image-pipeline.git", + "gitignore_template": "", + "has_discussions": false, + "has_downloads": false, + "has_issues": true, + "has_projects": true, + "has_wiki": true, + "homepage_url": "", + "html_url": "https://github.e.it.census.gov/CSVD/windows-image-pipeline", + "http_clone_url": "https://github.e.it.census.gov/CSVD/windows-image-pipeline.git", + "id": "windows-image-pipeline", + "ignore_vulnerability_alerts_during_read": null, + "is_template": false, + "license_template": null, + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "name": "windows-image-pipeline", + "node_id": "MDEwOlJlcG9zaXRvcnk5NzY=", + "pages": [], + "primary_language": "PowerShell", + "private": true, + "repo_id": 976, + "security_and_analysis": [ + { + "advanced_security": [ + { + "status": "disabled" + } + ], + "secret_scanning": [ + { + "status": "disabled" + } + ], + "secret_scanning_push_protection": [ + { + "status": "disabled" + } + ] + } + ], + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "ssh_clone_url": "git@github.e.it.census.gov:CSVD/windows-image-pipeline.git", + "svn_url": "https://github.e.it.census.gov/CSVD/windows-image-pipeline", + "template": [], + "topics": [ + "terraform" + ], + "visibility": "private", + "vulnerability_alerts": false, + "web_commit_signoff_required": false + }, + "after": { + "allow_auto_merge": false, + "allow_merge_commit": false, + "allow_rebase_merge": false, + "allow_squash_merge": true, + "allow_update_branch": false, + "archive_on_destroy": true, + "archived": false, + "auto_init": true, + "default_branch": "main", + "delete_branch_on_merge": true, + "description": "Template repo for windows image pipelines", + "etag": "W/\"fc963d8c556c73f42ddddb1b4f9d81d4f5fdd9c84aa49e56469aac6094ababc7\"", + "full_name": "CSVD/windows-image-pipeline", + "git_clone_url": "git://github.e.it.census.gov/CSVD/windows-image-pipeline.git", + "gitignore_template": "", + "has_discussions": false, + "has_downloads": false, + "has_issues": true, + "has_projects": true, + "has_wiki": true, + "homepage_url": "", + "html_url": "https://github.e.it.census.gov/CSVD/windows-image-pipeline", + "http_clone_url": "https://github.e.it.census.gov/CSVD/windows-image-pipeline.git", + "id": "windows-image-pipeline", + "ignore_vulnerability_alerts_during_read": null, + "is_template": false, + "license_template": null, + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "name": "windows-image-pipeline", + "node_id": "MDEwOlJlcG9zaXRvcnk5NzY=", + "pages": [], + "primary_language": "PowerShell", + "private": true, + "repo_id": 976, + "security_and_analysis": [ + { + "advanced_security": [ + { + "status": "disabled" + } + ], + "secret_scanning": [ + { + "status": "disabled" + } + ], + "secret_scanning_push_protection": [ + { + "status": "disabled" + } + ] + } + ], + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "ssh_clone_url": "git@github.e.it.census.gov:CSVD/windows-image-pipeline.git", + "svn_url": "https://github.e.it.census.gov/CSVD/windows-image-pipeline", + "template": [], + "topics": [ + "terraform" + ], + "visibility": "public", + "vulnerability_alerts": false, + "web_commit_signoff_required": false + }, + "after_unknown": {}, + "before_sensitive": { + "pages": [], + "security_and_analysis": [ + { + "advanced_security": [ + {} + ], + "secret_scanning": [ + {} + ], + "secret_scanning_push_protection": [ + {} + ] + } + ], + "template": [], + "topics": [ + false + ] + }, + "after_sensitive": { + "pages": [], + "security_and_analysis": [ + { + "advanced_security": [ + {} + ], + "secret_scanning": [ + {} + ], + "secret_scanning_push_protection": [ + {} + ] + } + ], + "template": [], + "topics": [ + false + ] + } + } + }, + { + "address": "module.repo_list[\"windows-image-pipeline\"].github_repository_collaborator.collaborators[\"gomez385\"]", + "previous_address": "module.image_pipeline_repos[\"windows-image-pipeline\"].github_repository_collaborator.collaborators[\"gomez385\"]", + "module_address": "module.repo_list[\"windows-image-pipeline\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "gomez385", + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "no-op" + ], + "before": { + "id": "windows-image-pipeline:gomez385", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "windows-image-pipeline", + "username": "gomez385" + }, + "after": { + "id": "windows-image-pipeline:gomez385", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "windows-image-pipeline", + "username": "gomez385" + }, + "after_unknown": {}, + "before_sensitive": {}, + "after_sensitive": {} + } + }, + { + "address": "module.repo_list[\"windows-image-pipeline\"].github_repository_collaborator.collaborators[\"morga471\"]", + "previous_address": "module.image_pipeline_repos[\"windows-image-pipeline\"].github_repository_collaborator.collaborators[\"morga471\"]", + "module_address": "module.repo_list[\"windows-image-pipeline\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "morga471", + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "no-op" + ], + "before": { + "id": "windows-image-pipeline:morga471", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "windows-image-pipeline", + "username": "morga471" + }, + "after": { + "id": "windows-image-pipeline:morga471", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "windows-image-pipeline", + "username": "morga471" + }, + "after_unknown": {}, + "before_sensitive": {}, + "after_sensitive": {} + } + }, + { + "address": "module.repo_list[\"windows-image-pipeline\"].github_repository_collaborator.collaborators[\"naray007\"]", + "previous_address": "module.image_pipeline_repos[\"windows-image-pipeline\"].github_repository_collaborator.collaborators[\"naray007\"]", + "module_address": "module.repo_list[\"windows-image-pipeline\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "naray007", + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "no-op" + ], + "before": { + "id": "windows-image-pipeline:naray007", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "windows-image-pipeline", + "username": "naray007" + }, + "after": { + "id": "windows-image-pipeline:naray007", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "windows-image-pipeline", + "username": "naray007" + }, + "after_unknown": {}, + "before_sensitive": {}, + "after_sensitive": {} + } + }, + { + "address": "module.repo_list[\"windows-image-pipeline\"].github_repository_file.managed_extra_files[\"s3_upload.yaml\"]", + "previous_address": "module.image_pipeline_repos[\"windows-image-pipeline\"].github_repository_file.managed_extra_files[\"s3_upload.yaml\"]", + "module_address": "module.repo_list[\"windows-image-pipeline\"]", + "mode": "managed", + "type": "github_repository_file", + "name": "managed_extra_files", + "index": "s3_upload.yaml", + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "delete" + ], + "before": { + "autocreate_branch": false, + "autocreate_branch_source_branch": "main", + "autocreate_branch_source_sha": null, + "branch": "main", + "commit_author": null, + "commit_email": null, + "commit_message": "Update .github/workflows/s3_upload.yaml", + "commit_sha": "1baa59fb5fd836bc27589385c4c19f0ebc3cd472", + "content": "# This is a basic workflow to help you get started with Actions\nname: S3 Upload\n\non:\n push:\n branches: [ \"main\" ]\n # Allows you to run this workflow manually from the Actions tab\n workflow_dispatch:\n \n# A workflow run is made up of one or more jobs that can run sequentially or in parallel\njobs:\n # This workflow contains a single job called \"build\"\n build:\n # The type of runner that the job will run on\n runs-on: [ \"229685449397\" ]\n \n # Steps represent a sequence of tasks that will be executed as part of the job\n steps:\n # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it\n - uses: CSVD/gh-actions-checkout@v4\n id: checkout\n with:\n persist-credentials: false\n\n - uses: CSVD/gh-actions-setup-node@v3\n with:\n node-version: 16\n \n - name: AWS Auth\n id: aws_auth\n uses: CSVD/aws-auth@main\n with:\n ecs: true\n\n - run: |\n zip -r windows-image-pipeline.zip *\n aws s3 cp windows-image-pipeline.zip s3://csvd-dev-ew-github-actions\n env:\n AWS_ACCESS_KEY_ID: ${{ steps.aws_auth.outputs.aws_access_key_id }}\n AWS_SECRET_ACCESS_KEY: ${{ steps.aws_auth.outputs.aws_secret_access_key }}\n AWS_SESSION_TOKEN: ${{ steps.aws_auth.outputs.aws_session_token }}\n", + "file": ".github/workflows/s3_upload.yaml", + "id": "windows-image-pipeline/.github/workflows/s3_upload.yaml", + "overwrite_on_create": true, + "ref": "main", + "repository": "windows-image-pipeline", + "sha": "5e9f4796f2b0984ab197852e12b20978270981a3" + }, + "after": null, + "after_unknown": {}, + "before_sensitive": {}, + "after_sensitive": false + }, + "action_reason": "delete_because_each_key" + }, + { + "address": "module.imported_repos[\"netbackup-automation-platform\"].module.internal_github_actions.github_repository.repo[0]", + "module_address": "module.imported_repos[\"netbackup-automation-platform\"].module.internal_github_actions", + "mode": "managed", + "type": "github_repository", + "name": "repo", + "index": 0, + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "create" + ], + "before": null, + "after": { + "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": true, + "delete_branch_on_merge": true, + "description": "netbackup-automation-platform", + "gitignore_template": null, + "has_discussions": false, + "has_downloads": false, + "has_issues": false, + "has_projects": true, + "has_wiki": true, + "homepage_url": null, + "ignore_vulnerability_alerts_during_read": null, + "is_template": false, + "license_template": null, + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "name": "netbackup-automation-platform", + "pages": [], + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "template": [], + "topics": [ + "automation-platform" + ], + "visibility": "public", + "vulnerability_alerts": false, + "web_commit_signoff_required": false + }, + "after_unknown": { + "default_branch": true, + "etag": true, + "full_name": true, + "git_clone_url": true, + "html_url": true, + "http_clone_url": true, + "id": true, + "node_id": true, + "pages": [], + "primary_language": true, + "private": true, + "repo_id": true, + "security_and_analysis": true, + "ssh_clone_url": true, + "svn_url": true, + "template": [], + "topics": [ + false + ] + }, + "before_sensitive": false, + "after_sensitive": { + "pages": [], + "security_and_analysis": [], + "template": [], + "topics": [ + false + ] + } + } + }, + { + "address": "module.imported_repos[\"netbackup-automation-platform\"].module.internal_github_actions.github_repository_collaborator.collaborators[\"arnol377\"]", + "module_address": "module.imported_repos[\"netbackup-automation-platform\"].module.internal_github_actions", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "arnol377", + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "create" + ], + "before": null, + "after": { + "permission": "admin", + "permission_diff_suppression": false, + "repository": "netbackup-automation-platform", + "username": "arnol377" + }, + "after_unknown": { + "id": true, + "invitation_id": true + }, + "before_sensitive": false, + "after_sensitive": {} + } + }, + { + "address": "module.imported_repos[\"netbackup-automation-platform\"].module.internal_github_actions.github_repository_collaborator.collaborators[\"littl381\"]", + "module_address": "module.imported_repos[\"netbackup-automation-platform\"].module.internal_github_actions", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "littl381", + "provider_name": "registry.terraform.io/integrations/github", + "change": { + "actions": [ + "create" + ], + "before": null, + "after": { + "permission": "admin", + "permission_diff_suppression": false, + "repository": "netbackup-automation-platform", + "username": "littl381" + }, + "after_unknown": { + "id": true, + "invitation_id": true + }, + "before_sensitive": false, + "after_sensitive": {} + } + } + ], + "prior_state": { + "format_version": "1.0", + "terraform_version": "1.9.1", + "values": { + "root_module": { + "resources": [ + { + "address": "data.aws_caller_identity.current", + "mode": "data", + "type": "aws_caller_identity", + "name": "current", + "provider_name": "registry.terraform.io/hashicorp/aws", + "schema_version": 0, + "values": { + "account_id": "229685449397", + "arn": "arn:aws-us-gov:sts::229685449397:assumed-role/AWSReservedSSO_inf-admin-t2_4e0c6446aecbe4a0/david.j.arnold.jr@census.gov", + "id": "229685449397", + "user_id": "AROATK6SR2K22ZVVMKHBO:david.j.arnold.jr@census.gov" + }, + "sensitive_values": {} + }, + { + "address": "data.aws_partition.current", + "mode": "data", + "type": "aws_partition", + "name": "current", + "provider_name": "registry.terraform.io/hashicorp/aws", + "schema_version": 0, + "values": { + "dns_suffix": "amazonaws.com", + "id": "aws-us-gov", + "partition": "aws-us-gov", + "reverse_dns_prefix": "com.amazonaws" + }, + "sensitive_values": {} + }, + { + "address": "data.github_organization_teams.teams", + "mode": "data", + "type": "github_organization_teams", + "name": "teams", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "MDEyOk9yZ2FuaXphdGlvbjM1", + "results_per_page": 100, + "root_teams_only": false, + "summary_only": false, + "teams": [ + { + "description": "", + "id": 716, + "members": [], + "name": "csvd-automation", + "node_id": "MDQ6VGVhbTcxNg==", + "parent": { + "id": "", + "name": "", + "slug": "" + }, + "privacy": "VISIBLE", + "repositories": [], + "slug": "csvd-automation" + }, + { + "description": "", + "id": 2, + "members": [ + "winge001", + "pinto005", + "garri325", + "andra315", + "morga471", + "arnol377", + "sivil001", + "gomez385" + ], + "name": "CSVD_Admins", + "node_id": "MDQ6VGVhbTI=", + "parent": { + "id": "", + "name": "", + "slug": "" + }, + "privacy": "VISIBLE", + "repositories": [], + "slug": "csvd_admins" + }, + { + "description": "Best Team Ever!", + "id": 4, + "members": [ + "youss001", + "pavul001", + "rainw303", + "winge001", + "pinto005", + "gogel001", + "lange309", + "dodd0306", + "onyek002", + "raybi001", + "garri325", + "vidab001", + "conte015", + "cymer001", + "ullah302", + "owens397", + "basil307" + ], + "name": "csvd_test_team", + "node_id": "MDQ6VGVhbTQ=", + "parent": { + "id": "", + "name": "", + "slug": "" + }, + "privacy": "VISIBLE", + "repositories": [], + "slug": "csvd_test_team" + }, + { + "description": "", + "id": 3, + "members": [ + "gogel001", + "lange309", + "dodd0306", + "onyek002", + "raybi001", + "cf-user", + "csvd-openshift", + "svc-ansible", + "badra001", + "garre343", + "schic001", + "garri325", + "carro356", + "davis323", + "mille441", + "harpe341", + "quatt008", + "akapo001", + "bell0402", + "agbo0001", + "zunig011", + "bouvi301", + "aravi001", + "niang001", + "shaik005", + "pazou001", + "dwara001", + "kalat002", + "garla019", + "zulfi001", + "nform001", + "cymer001", + "jacks404", + "ullah302", + "kalep001", + "andra315", + "lawso358", + "owens397", + "jezes001", + "brow0041", + "alade001", + "rehma003", + "yang0352", + "McCoy371", + "arnol377", + "sivil001", + "naray007", + "lolli001", + "roger367", + "oboh0001", + "claes001", + "njinj001" + ], + "name": "CSVD_Users", + "node_id": "MDQ6VGVhbTM=", + "parent": { + "id": "", + "name": "", + "slug": "" + }, + "privacy": "VISIBLE", + "repositories": [ + "Legacy-Ansible-Applications", + "Legacy-Ansible-Operations", + "Legacy-Ansible-SAS", + "Configuration-Novell-LDAP-CSVD", + "Legacy-tools-for-tools", + "Operation-Redhat-RHEL-CSVD-sudo", + "Operation-AWS-CSVD-instance_tagging", + "Operation-VMware-CSVD-custom_attributes", + "Application-ClamAV-ClamAV-CSVD", + "Operation-Amazon-CSVD-provision_ec2", + "Operation-Ansible-CSVD-build_vars", + "Operation-Ansible-CSVD-workflow-application_catalog", + "Operation-Ansible-CSVD-workflow-checks", + "Operation-Ansible-CSVD-workflow-convergence-check", + "Operation-Ansible-CSVD-workflow-notification", + "Operation-BMC-Atrium_Core-CSVD", + "Operation-Cloudforms-CSVD-workflow-callbacks", + "Operation-Redhat-CloudForms-CSVD-CICD-order", + "Operation-Redhat-RHEL7-aws-mount-ephemeral", + "Operation-Redhat-RHEL7-CSVD-audit", + "Operation-Redhat-RHEL-CSVD-chrony", + "Operation-Redhat-RHEL-CSVD-mount_disk", + "Operation-VMware-CSVD-provision_vm", + "Operation-Windows-OS-CSVD-mount_disk", + "Report-Tenable-SecurityCenter-CSVD", + "Legacy-atx-win-applications", + "Legacy-atx-win-build", + "Operation-Cisco-UCS-Profiles", + "Application-Veritas-NetBackup-CSVD", + "Legacy-atx-win-playbooks", + "Splunk-SC4S-gomplate", + "Operation-Red_Hat-RHEL8-CSVD-Baseline", + "Collection-Red_Hat-RHEL_Baseline-CSVD-LAB", + "product-test-s3-bucket" + ], + "slug": "csvd_users" + }, + { + "description": "IEB Automation team is under IEB Org", + "id": 5, + "members": [ + "winge001", + "dodd0306", + "onyek002", + "raybi001", + "garri325", + "gomez385" + ], + "name": "IEB Automation", + "node_id": "MDQ6VGVhbTU=", + "parent": { + "id": "", + "name": "", + "slug": "" + }, + "privacy": "VISIBLE", + "repositories": [ + "Operation-Windows-OS-AD-Actions", + "Operation-Ansible-CSVD-workflow-winbuild-vmw", + "CloudForms-SERVICE_DIALOGS", + "CloudForms-REPORTS", + "CloudForms-ROLES", + "CloudForms-Email", + "CloudForms-CSVD", + "CloudForms-CSVD_Variables", + "CloudForms-BUTTONS", + "CloudForms-TAGS", + "Operation-Redhat-RHEL7-CSVD-banners", + "Ansible-Windows-Build-AZR", + "Ansible-Windows-Build-Ops", + "Ansible-Windows-Build-VMW", + "Ansible-Windows-Image-Ops", + "Ansible-Windows-Retirement-Ops", + "Operation-Redhat-RHEL7-CSVD-logrotate", + "Operation-Red_Hat-Satellite-CSVD", + "Ansible-Windows-Development", + "Ansible_Inventory_Setup", + "Operation-Redhat-RHEL7-CSVD-sshd", + "Operation-Redhat-RHEL7-CSVD-grub2", + "Operation-CSVD-podman", + "Operation-Redhat-RHEL7-CSVD-sendmail", + "Operation-Red_Hat-Ansible_Tower-CSVD", + "Operation-Redhat-RHEL7-CSVD-svc_account", + "Operations_RHEL_OS_Configurations", + "Operations-RHEL-Ansible", + "Collection-Red_Hat-RHEL_Baseline-CSVD", + "Application-Red_Hat-Ansible_Automation_Platform-CSVD", + "Operation-Redhat-RHEL7-CSVD-systemctl", + "Application-Splunk-Splunk_Universal_Forwarder-CSVD", + "Operation-Amazon-CSVD-provision_services", + "Operation-Amazon-AWS-CSVD-RHEL_AMI", + "Operation-Red_Hat-Insights-CSVD", + "Operation-GitHub-GitHub_Enterprise-CSVD", + "Ansible-Windows-Build-AZR-LAB", + "SAT6_cert_renew_PROD", + "Application-Redhat-Satellite-CSVD-certificate-renew", + "Operation-Microsoft-MDE_Linux", + "Operation-Microsoft-Azure_Connected_Machine_agent", + "Ansible-Windows-Build-AWS", + "Application-HCL-BigFix-CSVD", + "Application-Morpheus_Data-Morpheus-CSVD", + "AAP-Windows-Build-AWS", + "Ansible-Windows-Build-AWS-LAB", + "Operation-RedHat-RHEL8-CSVD-multipath", + "Ansible-Windows-Build-VMW-LAB" + ], + "slug": "ieb-automation" + }, + { + "description": "", + "id": 756, + "members": [ + "shaik005", + "kalat002", + "andra315", + "brow0041", + "njinj001" + ], + "name": "Lab_Ansible_Team", + "node_id": "MDQ6VGVhbTc1Ng==", + "parent": { + "id": "", + "name": "", + "slug": "" + }, + "privacy": "VISIBLE", + "repositories": [ + "Operation-Microsoft-MDE_Linux-LAB", + "Legacy-Ansible-Operations-LAB", + "Operation-Red_Hat-RHEL8-CSVD-Baseline-LAB", + "Operation-Microsoft-Azure_Connected_Machine_agent-LAB", + "Operation-Ansible-CSVD-build_vars-LAB", + "Operation-Amazon-CSVD-provision_ec2-LAB", + "Operation-Ansible-CSVD-workflow-notification-LAB", + "Application-HCL-BigFix-CSVD-LAB", + "Legacy-Tools-LAB", + "Operation-Ansible-CSVD-workflow-checks-LAB", + "Operation-Amazon-CSVD-provision_ec2-LAB-GOV", + "Operation-Red_Hat-Ansible_Tower-CSVD-LAB", + "Operation-Redhat-RHEL-CSVD-sudo-LAB", + "Application-Morpheus_Data-Morpheus-CSVD-LAB", + "Operation-Amazon-CSVD-provision_services-LAB", + "Operation-Redhat-RHEL-CSVD-mount_disk-LAB", + "Operation-Red_Hat-RHEL9-CSVD-Baseline-LAB", + "Collection-Red_Hat-RHEL_Baseline-CSVD-LAB" + ], + "slug": "lab_ansible_team" + }, + { + "description": "Morpheus Admin", + "id": 735, + "members": [ + "arnol377", + "naray007", + "gomez385" + ], + "name": "morpheus-admin", + "node_id": "MDQ6VGVhbTczNQ==", + "parent": { + "id": "", + "name": "", + "slug": "" + }, + "privacy": "SECRET", + "repositories": [ + "morpheus-beanstalk-catalog" + ], + "slug": "morpheus-admin" + }, + { + "description": "Morpheus Developers", + "id": 734, + "members": [ + "morga471", + "arnol377", + "gomez385" + ], + "name": "morpheus-developers", + "node_id": "MDQ6VGVhbTczNA==", + "parent": { + "id": "", + "name": "", + "slug": "" + }, + "privacy": "SECRET", + "repositories": [], + "slug": "morpheus-developers" + }, + { + "description": "", + "id": 62, + "members": [ + "ojimi001", + "short343" + ], + "name": "Spunk Admin", + "node_id": "MDQ6VGVhbTYy", + "parent": { + "id": "", + "name": "", + "slug": "" + }, + "privacy": "VISIBLE", + "repositories": [ + "splunk-connect-for-syslog", + "Splunk-SC4S-gomplate" + ], + "slug": "spunk-admin" + }, + { + "description": "Reviewers for changes in Terraform", + "id": 737, + "members": [ + "morga471", + "naray007", + "gomez385" + ], + "name": "terraform-reviewers", + "node_id": "MDQ6VGVhbTczNw==", + "parent": { + "id": "", + "name": "", + "slug": "" + }, + "privacy": "VISIBLE", + "repositories": [], + "slug": "terraform-reviewers" + } + ] + }, + "sensitive_values": { + "teams": [ + { + "members": [], + "parent": {}, + "repositories": [] + }, + { + "members": [ + false, + false, + false, + false, + false, + false, + false, + false + ], + "parent": {}, + "repositories": [] + }, + { + "members": [ + false, + false, + false, + false, + false, + false, + false, + false, + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "parent": {}, + "repositories": [] + }, + { + "members": [ + false, + false, + false, + false, + false, + false, + false, + false, + false, + false, + false, + false, + false, + false, + false, + false, + false, + false, + false, + false, + false, + false, + false, + false, + false, + false, + false, + false, + false, + false, + false, + false, + false, + false, + false, + false, + false, + false, + false, + false, + false, + false, + false, + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "parent": {}, + "repositories": [ + false, + false, + false, + false, + false, + false, + false, + false, + false, + false, + false, + false, + false, + false, + false, + false, + false, + false, + false, + false, + false, + false, + false, + false, + false, + false, + false, + false, + false, + false, + false, + false, + false, + false + ] + }, + { + "members": [ + false, + false, + false, + false, + false, + false + ], + "parent": {}, + "repositories": [ + false, + false, + false, + false, + false, + false, + false, + false, + false, + false, + false, + false, + false, + false, + false, + false, + false, + false, + false, + false, + false, + false, + false, + false, + false, + false, + false, + false, + false, + false, + false, + false, + false, + false, + false, + false, + false, + false, + false, + false, + false, + false, + false, + false, + false, + false, + false, + false + ] + }, + { + "members": [ + false, + false, + false, + false, + false + ], + "parent": {}, + "repositories": [ + false, + false, + false, + false, + false, + false, + false, + false, + false, + false, + false, + false, + false, + false, + false, + false, + false, + false + ] + }, + { + "members": [ + false, + false, + false + ], + "parent": {}, + "repositories": [ + false + ] + }, + { + "members": [ + false, + false, + false + ], + "parent": {}, + "repositories": [] + }, + { + "members": [ + false, + false + ], + "parent": {}, + "repositories": [ + false, + false + ] + }, + { + "members": [ + false, + false, + false + ], + "parent": {}, + "repositories": [] + } + ] + } + }, + { + "address": "aws_kms_alias.actions_bucket_east", + "mode": "managed", + "type": "aws_kms_alias", + "name": "actions_bucket_east", + "provider_name": "registry.terraform.io/hashicorp/aws", + "schema_version": 0, + "values": { + "arn": "arn:aws-us-gov:kms:us-gov-east-1:229685449397:alias/csvd-dev-ew-github-actions-east", + "id": "alias/csvd-dev-ew-github-actions-east", + "name": "alias/csvd-dev-ew-github-actions-east", + "name_prefix": "", + "target_key_arn": "arn:aws-us-gov:kms:us-gov-east-1:229685449397:key/985d3603-ef1f-434d-b6c7-de67a3b9533f", + "target_key_id": "985d3603-ef1f-434d-b6c7-de67a3b9533f" + }, + "sensitive_values": {}, + "depends_on": [ + "aws_kms_key.actions_bucket_east", + "data.aws_caller_identity.current", + "data.aws_partition.current" + ] + }, + { + "address": "aws_kms_alias.actions_bucket_west", + "mode": "managed", + "type": "aws_kms_alias", + "name": "actions_bucket_west", + "provider_name": "registry.terraform.io/hashicorp/aws", + "schema_version": 0, + "values": { + "arn": "arn:aws-us-gov:kms:us-gov-west-1:229685449397:alias/csvd-dev-ew-github-actions", + "id": "alias/csvd-dev-ew-github-actions", + "name": "alias/csvd-dev-ew-github-actions", + "name_prefix": "", + "target_key_arn": "arn:aws-us-gov:kms:us-gov-west-1:229685449397:key/77f3d319-2557-494c-b0c6-1c453048574c", + "target_key_id": "77f3d319-2557-494c-b0c6-1c453048574c" + }, + "sensitive_values": {}, + "depends_on": [ + "aws_kms_key.actions_bucket_west", + "data.aws_caller_identity.current", + "data.aws_partition.current" + ] + }, + { + "address": "aws_kms_key.actions_bucket_east", + "mode": "managed", + "type": "aws_kms_key", + "name": "actions_bucket_east", + "provider_name": "registry.terraform.io/hashicorp/aws", + "schema_version": 0, + "values": { + "arn": "arn:aws-us-gov:kms:us-gov-east-1:229685449397:key/985d3603-ef1f-434d-b6c7-de67a3b9533f", + "bypass_policy_lockout_safety_check": false, + "custom_key_store_id": "", + "customer_master_key_spec": "SYMMETRIC_DEFAULT", + "deletion_window_in_days": 30, + "description": "KMS key for actions bucket encryption (East)", + "enable_key_rotation": true, + "id": "985d3603-ef1f-434d-b6c7-de67a3b9533f", + "is_enabled": true, + "key_id": "985d3603-ef1f-434d-b6c7-de67a3b9533f", + "key_usage": "ENCRYPT_DECRYPT", + "multi_region": false, + "policy": "{\"Statement\":[{\"Action\":\"kms:*\",\"Effect\":\"Allow\",\"Principal\":{\"AWS\":\"arn:aws-us-gov:iam::229685449397:root\"},\"Resource\":\"*\",\"Sid\":\"Enable IAM User Permissions\"}],\"Version\":\"2012-10-17\"}", + "rotation_period_in_days": 365, + "tags": {}, + "tags_all": {}, + "timeouts": null, + "xks_key_id": "" + }, + "sensitive_values": { + "tags": {}, + "tags_all": {} + }, + "depends_on": [ + "data.aws_caller_identity.current", + "data.aws_partition.current" + ] + }, + { + "address": "aws_kms_key.actions_bucket_west", + "mode": "managed", + "type": "aws_kms_key", + "name": "actions_bucket_west", + "provider_name": "registry.terraform.io/hashicorp/aws", + "schema_version": 0, + "values": { + "arn": "arn:aws-us-gov:kms:us-gov-west-1:229685449397:key/77f3d319-2557-494c-b0c6-1c453048574c", + "bypass_policy_lockout_safety_check": false, + "custom_key_store_id": "", + "customer_master_key_spec": "SYMMETRIC_DEFAULT", + "deletion_window_in_days": 30, + "description": "KMS key for actions bucket encryption (West)", + "enable_key_rotation": true, + "id": "77f3d319-2557-494c-b0c6-1c453048574c", + "is_enabled": true, + "key_id": "77f3d319-2557-494c-b0c6-1c453048574c", + "key_usage": "ENCRYPT_DECRYPT", + "multi_region": false, + "policy": "{\"Statement\":[{\"Action\":\"kms:*\",\"Effect\":\"Allow\",\"Principal\":{\"AWS\":\"arn:aws-us-gov:iam::229685449397:root\"},\"Resource\":\"*\",\"Sid\":\"Enable IAM User Permissions\"}],\"Version\":\"2012-10-17\"}", + "rotation_period_in_days": 365, + "tags": {}, + "tags_all": {}, + "timeouts": null, + "xks_key_id": "" + }, + "sensitive_values": { + "tags": {}, + "tags_all": {} + }, + "depends_on": [ + "data.aws_caller_identity.current", + "data.aws_partition.current" + ] + }, + { + "address": "aws_s3_bucket.actions_east", + "mode": "managed", + "type": "aws_s3_bucket", + "name": "actions_east", + "provider_name": "registry.terraform.io/hashicorp/aws", + "schema_version": 0, + "values": { + "acceleration_status": "", + "acl": null, + "arn": "arn:aws-us-gov:s3:::csvd-dev-ew-github-actions-east", + "bucket": "csvd-dev-ew-github-actions-east", + "bucket_domain_name": "csvd-dev-ew-github-actions-east.s3.amazonaws.com", + "bucket_prefix": "", + "bucket_regional_domain_name": "csvd-dev-ew-github-actions-east.s3.us-gov-east-1.amazonaws.com", + "cors_rule": [], + "force_destroy": false, + "grant": [ + { + "id": "1cdbccee29c5305ac377a789c6f924db69ec7da804ad7d8303a495cf5eef9084", + "permissions": [ + "FULL_CONTROL" + ], + "type": "CanonicalUser", + "uri": "" + } + ], + "hosted_zone_id": "Z2NIFVYYW2VKV1", + "id": "csvd-dev-ew-github-actions-east", + "lifecycle_rule": [], + "logging": [], + "object_lock_configuration": [], + "object_lock_enabled": false, + "policy": "{\"Statement\":[{\"Action\":[\"s3:GetObject*\",\"s3:PutObject*\",\"s3:DeleteObject*\",\"s3:ListBucket\"],\"Effect\":\"Allow\",\"Principal\":{\"AWS\":\"arn:aws-us-gov:iam::229685449397:role/aws-service-role/ecs.amazonaws.com/AWSServiceRoleForECS\"},\"Resource\":[\"arn:aws-us-gov:s3:::csvd-dev-ew-github-actions-east\",\"arn:aws-us-gov:s3:::csvd-dev-ew-github-actions-east/*\"],\"Sid\":\"AllowECSServiceRole\"}],\"Version\":\"2012-10-17\"}", + "region": "us-gov-east-1", + "replication_configuration": [], + "request_payer": "BucketOwner", + "server_side_encryption_configuration": [ + { + "rule": [ + { + "apply_server_side_encryption_by_default": [ + { + "kms_master_key_id": "arn:aws-us-gov:kms:us-gov-east-1:229685449397:key/985d3603-ef1f-434d-b6c7-de67a3b9533f", + "sse_algorithm": "aws:kms" + } + ], + "bucket_key_enabled": false + } + ] + } + ], + "tags": {}, + "tags_all": {}, + "timeouts": null, + "versioning": [ + { + "enabled": true, + "mfa_delete": false + } + ], + "website": [], + "website_domain": null, + "website_endpoint": null + }, + "sensitive_values": { + "cors_rule": [], + "grant": [ + { + "permissions": [ + false + ] + } + ], + "lifecycle_rule": [], + "logging": [], + "object_lock_configuration": [], + "replication_configuration": [], + "server_side_encryption_configuration": [ + { + "rule": [ + { + "apply_server_side_encryption_by_default": [ + {} + ] + } + ] + } + ], + "tags": {}, + "tags_all": {}, + "versioning": [ + {} + ], + "website": [] + } + }, + { + "address": "aws_s3_bucket.actions_west", + "mode": "managed", + "type": "aws_s3_bucket", + "name": "actions_west", + "provider_name": "registry.terraform.io/hashicorp/aws", + "schema_version": 0, + "values": { + "acceleration_status": "", + "acl": null, + "arn": "arn:aws-us-gov:s3:::csvd-dev-ew-github-actions", + "bucket": "csvd-dev-ew-github-actions", + "bucket_domain_name": "csvd-dev-ew-github-actions.s3.amazonaws.com", + "bucket_prefix": "", + "bucket_regional_domain_name": "csvd-dev-ew-github-actions.s3.us-gov-west-1.amazonaws.com", + "cors_rule": [], + "force_destroy": false, + "grant": [ + { + "id": "1cdbccee29c5305ac377a789c6f924db69ec7da804ad7d8303a495cf5eef9084", + "permissions": [ + "FULL_CONTROL" + ], + "type": "CanonicalUser", + "uri": "" + } + ], + "hosted_zone_id": "Z31GFT0UA1I2HV", + "id": "csvd-dev-ew-github-actions", + "lifecycle_rule": [], + "logging": [], + "object_lock_configuration": [], + "object_lock_enabled": false, + "policy": "{\"Statement\":[{\"Action\":[\"s3:GetObject*\",\"s3:PutObject*\",\"s3:DeleteObject*\",\"s3:ListBucket\"],\"Effect\":\"Allow\",\"Principal\":{\"AWS\":\"arn:aws-us-gov:iam::229685449397:role/aws-service-role/ecs.amazonaws.com/AWSServiceRoleForECS\"},\"Resource\":[\"arn:aws-us-gov:s3:::csvd-dev-ew-github-actions\",\"arn:aws-us-gov:s3:::csvd-dev-ew-github-actions/*\"],\"Sid\":\"AllowECSServiceRole\"}],\"Version\":\"2012-10-17\"}", + "region": "us-gov-west-1", + "replication_configuration": [], + "request_payer": "BucketOwner", + "server_side_encryption_configuration": [ + { + "rule": [ + { + "apply_server_side_encryption_by_default": [ + { + "kms_master_key_id": "arn:aws-us-gov:kms:us-gov-west-1:229685449397:key/77f3d319-2557-494c-b0c6-1c453048574c", + "sse_algorithm": "aws:kms" + } + ], + "bucket_key_enabled": false + } + ] + } + ], + "tags": {}, + "tags_all": {}, + "timeouts": null, + "versioning": [ + { + "enabled": true, + "mfa_delete": false + } + ], + "website": [], + "website_domain": null, + "website_endpoint": null + }, + "sensitive_values": { + "cors_rule": [], + "grant": [ + { + "permissions": [ + false + ] + } + ], + "lifecycle_rule": [], + "logging": [], + "object_lock_configuration": [], + "replication_configuration": [], + "server_side_encryption_configuration": [ + { + "rule": [ + { + "apply_server_side_encryption_by_default": [ + {} + ] + } + ] + } + ], + "tags": {}, + "tags_all": {}, + "versioning": [ + {} + ], + "website": [] + } + }, + { + "address": "aws_s3_bucket_policy.actions_east", + "mode": "managed", + "type": "aws_s3_bucket_policy", + "name": "actions_east", + "provider_name": "registry.terraform.io/hashicorp/aws", + "schema_version": 0, + "values": { + "bucket": "csvd-dev-ew-github-actions-east", + "id": "csvd-dev-ew-github-actions-east", + "policy": "{\"Statement\":[{\"Action\":[\"s3:GetObject*\",\"s3:PutObject*\",\"s3:DeleteObject*\",\"s3:ListBucket\"],\"Effect\":\"Allow\",\"Principal\":{\"AWS\":\"arn:aws-us-gov:iam::229685449397:role/aws-service-role/ecs.amazonaws.com/AWSServiceRoleForECS\"},\"Resource\":[\"arn:aws-us-gov:s3:::csvd-dev-ew-github-actions-east\",\"arn:aws-us-gov:s3:::csvd-dev-ew-github-actions-east/*\"],\"Sid\":\"AllowECSServiceRole\"}],\"Version\":\"2012-10-17\"}" + }, + "sensitive_values": {}, + "depends_on": [ + "aws_s3_bucket.actions_east", + "data.aws_caller_identity.current", + "data.aws_partition.current" + ] + }, + { + "address": "aws_s3_bucket_policy.actions_west", + "mode": "managed", + "type": "aws_s3_bucket_policy", + "name": "actions_west", + "provider_name": "registry.terraform.io/hashicorp/aws", + "schema_version": 0, + "values": { + "bucket": "csvd-dev-ew-github-actions", + "id": "csvd-dev-ew-github-actions", + "policy": "{\"Statement\":[{\"Action\":[\"s3:GetObject*\",\"s3:PutObject*\",\"s3:DeleteObject*\",\"s3:ListBucket\"],\"Effect\":\"Allow\",\"Principal\":{\"AWS\":\"arn:aws-us-gov:iam::229685449397:role/aws-service-role/ecs.amazonaws.com/AWSServiceRoleForECS\"},\"Resource\":[\"arn:aws-us-gov:s3:::csvd-dev-ew-github-actions\",\"arn:aws-us-gov:s3:::csvd-dev-ew-github-actions/*\"],\"Sid\":\"AllowECSServiceRole\"}],\"Version\":\"2012-10-17\"}" + }, + "sensitive_values": {}, + "depends_on": [ + "aws_s3_bucket.actions_west", + "data.aws_caller_identity.current", + "data.aws_partition.current" + ] + }, + { + "address": "aws_s3_bucket_public_access_block.actions_east", + "mode": "managed", + "type": "aws_s3_bucket_public_access_block", + "name": "actions_east", + "provider_name": "registry.terraform.io/hashicorp/aws", + "schema_version": 0, + "values": { + "block_public_acls": true, + "block_public_policy": true, + "bucket": "csvd-dev-ew-github-actions-east", + "id": "csvd-dev-ew-github-actions-east", + "ignore_public_acls": true, + "restrict_public_buckets": true + }, + "sensitive_values": {}, + "depends_on": [ + "aws_s3_bucket.actions_east" + ] + }, + { + "address": "aws_s3_bucket_public_access_block.actions_west", + "mode": "managed", + "type": "aws_s3_bucket_public_access_block", + "name": "actions_west", + "provider_name": "registry.terraform.io/hashicorp/aws", + "schema_version": 0, + "values": { + "block_public_acls": true, + "block_public_policy": true, + "bucket": "csvd-dev-ew-github-actions", + "id": "csvd-dev-ew-github-actions", + "ignore_public_acls": true, + "restrict_public_buckets": true + }, + "sensitive_values": {}, + "depends_on": [ + "aws_s3_bucket.actions_west" + ] + }, + { + "address": "aws_s3_bucket_server_side_encryption_configuration.actions_east", + "mode": "managed", + "type": "aws_s3_bucket_server_side_encryption_configuration", + "name": "actions_east", + "provider_name": "registry.terraform.io/hashicorp/aws", + "schema_version": 0, + "values": { + "bucket": "csvd-dev-ew-github-actions-east", + "expected_bucket_owner": "", + "id": "csvd-dev-ew-github-actions-east", + "rule": [ + { + "apply_server_side_encryption_by_default": [ + { + "kms_master_key_id": "arn:aws-us-gov:kms:us-gov-east-1:229685449397:key/985d3603-ef1f-434d-b6c7-de67a3b9533f", + "sse_algorithm": "aws:kms" + } + ], + "bucket_key_enabled": false + } + ] + }, + "sensitive_values": { + "rule": [ + { + "apply_server_side_encryption_by_default": [ + {} + ] + } + ] + }, + "depends_on": [ + "aws_kms_key.actions_bucket_east", + "aws_s3_bucket.actions_east", + "data.aws_caller_identity.current", + "data.aws_partition.current" + ] + }, + { + "address": "aws_s3_bucket_server_side_encryption_configuration.actions_west", + "mode": "managed", + "type": "aws_s3_bucket_server_side_encryption_configuration", + "name": "actions_west", + "provider_name": "registry.terraform.io/hashicorp/aws", + "schema_version": 0, + "values": { + "bucket": "csvd-dev-ew-github-actions", + "expected_bucket_owner": "", + "id": "csvd-dev-ew-github-actions", + "rule": [ + { + "apply_server_side_encryption_by_default": [ + { + "kms_master_key_id": "arn:aws-us-gov:kms:us-gov-west-1:229685449397:key/77f3d319-2557-494c-b0c6-1c453048574c", + "sse_algorithm": "aws:kms" + } + ], + "bucket_key_enabled": false + } + ] + }, + "sensitive_values": { + "rule": [ + { + "apply_server_side_encryption_by_default": [ + {} + ] + } + ] + }, + "depends_on": [ + "aws_kms_key.actions_bucket_west", + "aws_s3_bucket.actions_west", + "data.aws_caller_identity.current", + "data.aws_partition.current" + ] + }, + { + "address": "aws_s3_bucket_versioning.actions_east", + "mode": "managed", + "type": "aws_s3_bucket_versioning", + "name": "actions_east", + "provider_name": "registry.terraform.io/hashicorp/aws", + "schema_version": 0, + "values": { + "bucket": "csvd-dev-ew-github-actions-east", + "expected_bucket_owner": "", + "id": "csvd-dev-ew-github-actions-east", + "mfa": null, + "versioning_configuration": [ + { + "mfa_delete": "", + "status": "Enabled" + } + ] + }, + "sensitive_values": { + "versioning_configuration": [ + {} + ] + }, + "depends_on": [ + "aws_s3_bucket.actions_east" + ] + }, + { + "address": "aws_s3_bucket_versioning.actions_west", + "mode": "managed", + "type": "aws_s3_bucket_versioning", + "name": "actions_west", + "provider_name": "registry.terraform.io/hashicorp/aws", + "schema_version": 0, + "values": { + "bucket": "csvd-dev-ew-github-actions", + "expected_bucket_owner": "", + "id": "csvd-dev-ew-github-actions", + "mfa": null, + "versioning_configuration": [ + { + "mfa_delete": "", + "status": "Enabled" + } + ] + }, + "sensitive_values": { + "versioning_configuration": [ + {} + ] + }, + "depends_on": [ + "aws_s3_bucket.actions_west" + ] + }, + { + "address": "github_team.terraform_reviewers", + "mode": "managed", + "type": "github_team", + "name": "terraform_reviewers", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "create_default_maintainer": false, + "description": "Reviewers for changes in Terraform", + "etag": "W/\"92d40c4de6a8d46afab018001de2c625bf0374b9def688e638a839e63b8267a7\"", + "id": "737", + "ldap_dn": "", + "members_count": 3, + "name": "terraform-reviewers", + "node_id": "MDQ6VGVhbTczNw==", + "parent_team_id": "", + "parent_team_read_id": "", + "parent_team_read_slug": "", + "privacy": "closed", + "slug": "terraform-reviewers" + }, + "sensitive_values": {} + }, + { + "address": "github_team_members.terraform_reviewer_members", + "mode": "managed", + "type": "github_team_members", + "name": "terraform_reviewer_members", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "737", + "members": [ + { + "role": "maintainer", + "username": "gomez385" + }, + { + "role": "maintainer", + "username": "morga471" + }, + { + "role": "member", + "username": "naray007" + } + ], + "team_id": "737" + }, + "sensitive_values": { + "members": [ + {}, + {}, + {} + ] + }, + "depends_on": [ + "github_team.terraform_reviewers" + ] + } + ], + "child_modules": [ + { + "address": "module.imported_repos[\"netbackup-automation-platform\"]", + "child_modules": [ + { + "resources": [ + { + "address": "module.imported_repos[\"netbackup-automation-platform\"].module.internal_github_actions.data.github_user.collaborators[\"arnol377\"]", + "mode": "data", + "type": "github_user", + "name": "collaborators", + "index": "arnol377", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "avatar_url": "https://github.e.it.census.gov/avatars/u/549?", + "bio": "", + "blog": "", + "company": "", + "created_at": "2023-12-26 17:20:24 +0000 UTC", + "email": "", + "followers": 0, + "following": 0, + "gpg_keys": [], + "gravatar_id": "", + "id": "549", + "location": "", + "login": "arnol377", + "name": "David John Arnold Jr", + "node_id": "MDQ6VXNlcjU0OQ==", + "public_gists": 0, + "public_repos": 4, + "site_admin": false, + "ssh_keys": [ + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDBL3xJ3zSxE6Qv8k9b06oFB4dbq2+PiOmsnIfAgL2XZpEenD03jhCF28iAZVy9oovuBCbcyAE9BjTRdWFSjd1dmHthbGe5Jv0/DweNFB/YmX6wJ6knljTA3frkY9bVS9+rqY6N4GG3oG6lyyk7cBaUEagXF4VQQJqX4l7XG1xxUfKLFFhF3Lq+CDg39FwlKk+QxIWMrbRJdpRBDZ03VZnKcgP0m/5K8PrcyGbxOK8qeVREUaqvmQN2Rs4LD1REPZyr3GQ2gtgpqrJ3hym7TwJw3Xl5NW8Y7RAeENem2K3EKoq6qq/wB/YUqMhKD228w5J6B+CoI8nvDqAWZkNAz/uY/GJe4elRJCmFH2F+r3263R5oDnXWSluB7XIm3b+Xt24F8MwoltejSEma41c8FM/xbF3Kle8ofBGFPEXpNDAxICVbyZ6OE4TyqTGKA8xgg9vnR3hCGGERtLYHhPw0aVHY7Zew/6/QV9o6/reO96V92zpXVEpvO09Z40fvTd5cN68=", + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDXRnBg+dayTonnZY3i0dDEHXUFMhcJKtqiFO7Oe/ejasDeW2I+L0f1gg+7u1ms/g8E28/RARN3R1aMnbGvXWdP/yBrhtpWJc5TXK+f33S5lYYjptJ2F6vj7jiRU7pP4uL9wqknj0DoSD0krAEbA85mBJgIV1viL8ZBtT/8iBoD6kHGRXaHpRH5sIFaURRJCcUTJhdqMUPd6bYKE/Bc6ioQLAEow0JB4ju1jPa7fOxhgVrIYxRiMkismhR0WLopB5JxyYDNmIyjUL2vGt9Kpd41DELv+Pn7EaP2HLjubVruWFnxnhZ7nvQwMonnZvjD3f5yPkDUkWnwaVGqw8cm9PFM4buFRmGpsl8YqTFakYgqc+JVDQB8bb9a9sr5/6Hbn41VcXd+KV6dTMK4PKSQFKLaq54ExzlwnE/EHnduE8JgvsfAa316/etFlzTQOBv1KbL8RKK0/vy6wJpiK9laDbymsOJPjZekoc/TD1AIvfWF9oae6wAU86tBVGdEO/JMOMc=", + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCvlUlp/OjFsa4fINqqMXukveo+mCu0Ywp0wwVCURkfJpPFPMdmbp07WlULCX6VgmqH4joCA+LUyY+q6iBZw80lS66lpDcRHMTG4PV7IsPpoYN20bUnm30vdqug/P1wVDuOO9B83+s3QFeBl9WbHQB3YY5pBulZGLIGw26qrLwfM5UJ4P/Ffca7ca9PM7KEkwqOC9xMfJy3tFkzD2Rjo2AHN9s7xHtpf95m8MzToy1Q7ykU/8bhImOrkZKaJJtIfmykYhebKDpeETEWJiyyaubIl71KAsWacrvQnEfo2fe62kR3SGv2auPDxMaGKPqtDpe2e/Y9I85Fv3tfWk53DDFoZNzExT4jc825bCqqz2DBbz4Q/Miw3rcdHx7uaRHinEJsBveNhZSH31GMLtU/dVNF3TNhlEH62Zmjgu7IpWb6Tr/4KnLjf/0p7ye34jP49nv1iBj99j3p1hwgAGU56ag4j7TW/iMh+uH+pg1hm6xZjhFInZGzQqtMl/qjBlr1oJ8=", + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCNVaIVHzjCkmCyQnpHfgLLvPtc96PVg/+8/cT2ty6TFe3ALaZJSHTWXjOPJaSkhBef2PCmbcsd3+p+QDl87nRl9O5fV376mrGwsxlpI2a1FnzpBkAEpZ2KyE4B593xGlpmvrMOF9gY4qGdNHCXw2puZ/IkmYaiROYpL2ptiSfTGc1R/ZrEvs0fhYwyi4xYfb+iGVSvjhhTqzJYNW6IBmMZVbDCdYX+JvSKsZYydnkHg7d9QJORZ3TnPe3Tmnn+PAse9V0z9VKOScfoRNT+Co9ezLGWNY+Dnnwg0jouA76/CiIIjWunJzLsIeu7cqNwubKO8lsLX9O+6zKR46EEaVr1VoC395IPvBy8x+VWUSpI+M7GLh0iPE56EvwiVm8irTkmY6WPsQ8PMJ5IWZE/OA6w6fupiSgBd5myFpB/wa8yVdY+UPfh40HpEXt0+iPeWK9kz/fJQAgow/FJAAsnI65JdVP4woAUYnmoJ0l6qgDyFQbOxcq7NZdmedHtRz049hM=" + ], + "suspended_at": "0001-01-01 00:00:00 +0000 UTC", + "updated_at": "2024-09-19 17:49:11 +0000 UTC", + "username": "arnol377" + }, + "sensitive_values": { + "gpg_keys": [], + "ssh_keys": [ + false, + false, + false, + false + ] + } + }, + { + "address": "module.imported_repos[\"netbackup-automation-platform\"].module.internal_github_actions.data.github_user.collaborators[\"littl381\"]", + "mode": "data", + "type": "github_user", + "name": "collaborators", + "index": "littl381", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "avatar_url": "https://github.e.it.census.gov/avatars/u/615?", + "bio": "", + "blog": "", + "company": "", + "created_at": "2024-07-22 17:58:26 +0000 UTC", + "email": "", + "followers": 0, + "following": 0, + "gpg_keys": [], + "gravatar_id": "", + "id": "615", + "location": "", + "login": "littl381", + "name": "Andrew Charles Little", + "node_id": "MDQ6VXNlcjYxNQ==", + "public_gists": 0, + "public_repos": 0, + "site_admin": false, + "ssh_keys": [ + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAAAgQDJ/uUJlesehpnN0CZYgJKOKAApaJp6vJT3E0O8HoVNNtSvlphEHhmbCjNL/MYtkWUjsExWCj7B/MaHwFTIsJfyPJgwbFOjJhYqQ4SF7YAQIdfYb7YhaMeGz1Bi6zU+J5tJ18YBhH3mG9/nv47CX048oUA8NmHqYKovkucrfpsruw==" + ], + "suspended_at": "0001-01-01 00:00:00 +0000 UTC", + "updated_at": "2025-03-11 15:53:11 +0000 UTC", + "username": "littl381" + }, + "sensitive_values": { + "gpg_keys": [], + "ssh_keys": [ + false + ] + } + } + ], + "address": "module.imported_repos[\"netbackup-automation-platform\"].module.internal_github_actions" + } + ] + }, + { + "resources": [ + { + "address": "module.repo_list[\"Github-Actions-Project\"].data.github_user.pull_request_bypassers[\"arnol377\"]", + "mode": "data", + "type": "github_user", + "name": "pull_request_bypassers", + "index": "arnol377", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "avatar_url": "https://github.e.it.census.gov/avatars/u/549?", + "bio": "", + "blog": "", + "company": "", + "created_at": "2023-12-26 17:20:24 +0000 UTC", + "email": "", + "followers": 0, + "following": 0, + "gpg_keys": [], + "gravatar_id": "", + "id": "549", + "location": "", + "login": "arnol377", + "name": "David John Arnold Jr", + "node_id": "MDQ6VXNlcjU0OQ==", + "public_gists": 0, + "public_repos": 4, + "site_admin": false, + "ssh_keys": [ + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDBL3xJ3zSxE6Qv8k9b06oFB4dbq2+PiOmsnIfAgL2XZpEenD03jhCF28iAZVy9oovuBCbcyAE9BjTRdWFSjd1dmHthbGe5Jv0/DweNFB/YmX6wJ6knljTA3frkY9bVS9+rqY6N4GG3oG6lyyk7cBaUEagXF4VQQJqX4l7XG1xxUfKLFFhF3Lq+CDg39FwlKk+QxIWMrbRJdpRBDZ03VZnKcgP0m/5K8PrcyGbxOK8qeVREUaqvmQN2Rs4LD1REPZyr3GQ2gtgpqrJ3hym7TwJw3Xl5NW8Y7RAeENem2K3EKoq6qq/wB/YUqMhKD228w5J6B+CoI8nvDqAWZkNAz/uY/GJe4elRJCmFH2F+r3263R5oDnXWSluB7XIm3b+Xt24F8MwoltejSEma41c8FM/xbF3Kle8ofBGFPEXpNDAxICVbyZ6OE4TyqTGKA8xgg9vnR3hCGGERtLYHhPw0aVHY7Zew/6/QV9o6/reO96V92zpXVEpvO09Z40fvTd5cN68=", + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDXRnBg+dayTonnZY3i0dDEHXUFMhcJKtqiFO7Oe/ejasDeW2I+L0f1gg+7u1ms/g8E28/RARN3R1aMnbGvXWdP/yBrhtpWJc5TXK+f33S5lYYjptJ2F6vj7jiRU7pP4uL9wqknj0DoSD0krAEbA85mBJgIV1viL8ZBtT/8iBoD6kHGRXaHpRH5sIFaURRJCcUTJhdqMUPd6bYKE/Bc6ioQLAEow0JB4ju1jPa7fOxhgVrIYxRiMkismhR0WLopB5JxyYDNmIyjUL2vGt9Kpd41DELv+Pn7EaP2HLjubVruWFnxnhZ7nvQwMonnZvjD3f5yPkDUkWnwaVGqw8cm9PFM4buFRmGpsl8YqTFakYgqc+JVDQB8bb9a9sr5/6Hbn41VcXd+KV6dTMK4PKSQFKLaq54ExzlwnE/EHnduE8JgvsfAa316/etFlzTQOBv1KbL8RKK0/vy6wJpiK9laDbymsOJPjZekoc/TD1AIvfWF9oae6wAU86tBVGdEO/JMOMc=", + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCvlUlp/OjFsa4fINqqMXukveo+mCu0Ywp0wwVCURkfJpPFPMdmbp07WlULCX6VgmqH4joCA+LUyY+q6iBZw80lS66lpDcRHMTG4PV7IsPpoYN20bUnm30vdqug/P1wVDuOO9B83+s3QFeBl9WbHQB3YY5pBulZGLIGw26qrLwfM5UJ4P/Ffca7ca9PM7KEkwqOC9xMfJy3tFkzD2Rjo2AHN9s7xHtpf95m8MzToy1Q7ykU/8bhImOrkZKaJJtIfmykYhebKDpeETEWJiyyaubIl71KAsWacrvQnEfo2fe62kR3SGv2auPDxMaGKPqtDpe2e/Y9I85Fv3tfWk53DDFoZNzExT4jc825bCqqz2DBbz4Q/Miw3rcdHx7uaRHinEJsBveNhZSH31GMLtU/dVNF3TNhlEH62Zmjgu7IpWb6Tr/4KnLjf/0p7ye34jP49nv1iBj99j3p1hwgAGU56ag4j7TW/iMh+uH+pg1hm6xZjhFInZGzQqtMl/qjBlr1oJ8=", + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCNVaIVHzjCkmCyQnpHfgLLvPtc96PVg/+8/cT2ty6TFe3ALaZJSHTWXjOPJaSkhBef2PCmbcsd3+p+QDl87nRl9O5fV376mrGwsxlpI2a1FnzpBkAEpZ2KyE4B593xGlpmvrMOF9gY4qGdNHCXw2puZ/IkmYaiROYpL2ptiSfTGc1R/ZrEvs0fhYwyi4xYfb+iGVSvjhhTqzJYNW6IBmMZVbDCdYX+JvSKsZYydnkHg7d9QJORZ3TnPe3Tmnn+PAse9V0z9VKOScfoRNT+Co9ezLGWNY+Dnnwg0jouA76/CiIIjWunJzLsIeu7cqNwubKO8lsLX9O+6zKR46EEaVr1VoC395IPvBy8x+VWUSpI+M7GLh0iPE56EvwiVm8irTkmY6WPsQ8PMJ5IWZE/OA6w6fupiSgBd5myFpB/wa8yVdY+UPfh40HpEXt0+iPeWK9kz/fJQAgow/FJAAsnI65JdVP4woAUYnmoJ0l6qgDyFQbOxcq7NZdmedHtRz049hM=" + ], + "suspended_at": "0001-01-01 00:00:00 +0000 UTC", + "updated_at": "2024-09-19 17:49:11 +0000 UTC", + "username": "arnol377" + }, + "sensitive_values": { + "gpg_keys": [], + "ssh_keys": [ + false, + false, + false, + false + ] + } + }, + { + "address": "module.repo_list[\"Github-Actions-Project\"].data.github_user.pull_request_bypassers[\"gomez385\"]", + "mode": "data", + "type": "github_user", + "name": "pull_request_bypassers", + "index": "gomez385", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "avatar_url": "https://github.e.it.census.gov/avatars/u/603?", + "bio": "", + "blog": "", + "company": "", + "created_at": "2024-06-13 14:57:04 +0000 UTC", + "email": "", + "followers": 0, + "following": 1, + "gpg_keys": [], + "gravatar_id": "", + "id": "603", + "location": "", + "login": "gomez385", + "name": "James Farr Gomez", + "node_id": "MDQ6VXNlcjYwMw==", + "public_gists": 0, + "public_repos": 0, + "site_admin": false, + "ssh_keys": [ + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDuGCb6WHZ8kex7gawtk2pmHd8t77HQ0LE+7sanVKoC5cWC/7RlefKBuH5c8F2RmmB1EaVFT2ylCsR0qnPT8xGH7gjrkRs/B8LAcwvXifev1BkPSE1gJT+lQpnwPkfqBuCbsewOR1XyPqQt5SZh4a9w7GDvBsfO2Ate9ADtX0nsI76t2DURR32ptBKnN2TtYqnD5D3VKV2lhiI2tnz8sO5FZzYycCONsv570N/itwT34gKSLVRsj+0YmPjmOU+7JWpXxdtjocw06ZEGnSyInIH4VJVROE0p3Z63xHQ9fxDtnW71zf0a9UeoY5Vb/b7PbK4NF3Dp9gG8iaL9dqeiZ1XTCcXHDyHGVFej3sl0CkB+BQ/Gz9ZCqkSBcA+n9WA5KclNuOMwe4eLXRwg/gxxmAJB707gXUk+nSPGwYTObtm0+lfspCNQxAFry8gX39mdVqnaCz1agzmwZo7rRls+BZPfDPg3YUkB3v9P8y/cbO6Bn5IRmYB2KQ73E7X8QJcW0+E=", + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQDROzDzCBisy3+PvtvvCt7XxuEpNAwBS6SoK2wKJNnGgYPs8zInboOVZWqRXujOWOySPCloBfYU5B2eg94cVoDnTnc9dArWhBOK0aY93XM7/0s3/01w3Kkyi25oJytr0NRI8liZq6DnF9hFiqxRVcJkoS4+I9t9G3MURjVbcNY10+bIs6Dp9sbnJaJEWvvsbAiz1WdZBAsF3eW20mNkzmQtYoASHWv3AD/j+xLRYvx2sVcPXIGQ4fw3FqQIUOkbVQUW2lCBp+BVZgR1U4dKh5lejddxd7bXblWxJ5qqWPXulqCnUrJBBTWxTPrUxBzcZtxLAj8C04PyZPJYWVVbhuxkMgA7VeUHeZ/iFT6LZeqVtwTDlEPCzShCdIC0JWKzxI+I663YeSf2y1Jh3qT/R+e0qcduEmL3bdE+PyyvQks8WCXVfXtJeHQfkPKcy9gARpQScY/6vSyZbJNfIW1VagCCRZp54AzOlhKTUy2r97zlrzB9gBPU2ycbmLFYOglVrw6Fo6ECV8slQIxuz0lS0RbEI/+c9jWxKqcSrb0zCEgoL+HEdGaElTRENPhApPXZO+YlFZkg9NY9t+uGWCu2xPgSiR2fn44QzfWypxCq05G0fNRQRRIuMnpjkXlv66O/hju+xMTG1fVyKSKq5CA1bDdDn9euZ7Q6OAFsQX73hdYn6Q==" + ], + "suspended_at": "0001-01-01 00:00:00 +0000 UTC", + "updated_at": "2024-09-26 18:00:48 +0000 UTC", + "username": "gomez385" + }, + "sensitive_values": { + "gpg_keys": [], + "ssh_keys": [ + false, + false + ] + } + }, + { + "address": "module.repo_list[\"Github-Actions-Project\"].github_repository.repo", + "mode": "managed", + "type": "github_repository", + "name": "repo", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 1, + "values": { + "allow_auto_merge": false, + "allow_merge_commit": false, + "allow_rebase_merge": false, + "allow_squash_merge": true, + "allow_update_branch": false, + "archive_on_destroy": true, + "archived": false, + "auto_init": true, + "default_branch": "main", + "delete_branch_on_merge": true, + "description": "Tracking all repos and documentation for Github Actions", + "etag": "W/\"14853b941bc18e5f4e906893027f62ba7d10550834f28ef6cdd1f765ab79c163\"", + "full_name": "CSVD/Github-Actions-Project", + "git_clone_url": "git://github.e.it.census.gov/CSVD/Github-Actions-Project.git", + "gitignore_template": "", + "has_discussions": false, + "has_downloads": false, + "has_issues": true, + "has_projects": true, + "has_wiki": true, + "homepage_url": "", + "html_url": "https://github.e.it.census.gov/CSVD/Github-Actions-Project", + "http_clone_url": "https://github.e.it.census.gov/CSVD/Github-Actions-Project.git", + "id": "Github-Actions-Project", + "ignore_vulnerability_alerts_during_read": null, + "is_template": false, + "license_template": null, + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "name": "Github-Actions-Project", + "node_id": "MDEwOlJlcG9zaXRvcnkxMTE5", + "pages": [], + "primary_language": "HCL", + "private": false, + "repo_id": 1119, + "security_and_analysis": [ + { + "advanced_security": [ + { + "status": "disabled" + } + ], + "secret_scanning": [ + { + "status": "disabled" + } + ], + "secret_scanning_push_protection": [ + { + "status": "disabled" + } + ] + } + ], + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "ssh_clone_url": "git@github.e.it.census.gov:CSVD/Github-Actions-Project.git", + "svn_url": "https://github.e.it.census.gov/CSVD/Github-Actions-Project", + "template": [], + "topics": [ + "github-actions", + "terraform-tools" + ], + "visibility": "public", + "vulnerability_alerts": false, + "web_commit_signoff_required": false + }, + "sensitive_values": { + "pages": [], + "security_and_analysis": [ + { + "advanced_security": [ + {} + ], + "secret_scanning": [ + {} + ], + "secret_scanning_push_protection": [ + {} + ] + } + ], + "template": [], + "topics": [ + false, + false + ] + } + }, + { + "address": "module.repo_list[\"Github-Actions-Project\"].github_repository_collaborator.collaborators[\"gomez385\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "gomez385", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "Github-Actions-Project:gomez385", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "Github-Actions-Project", + "username": "gomez385" + }, + "sensitive_values": {}, + "depends_on": [ + "module.repo_list.github_repository.repo" + ] + }, + { + "address": "module.repo_list[\"Github-Actions-Project\"].github_repository_collaborator.collaborators[\"morga471\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "morga471", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "Github-Actions-Project:morga471", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "Github-Actions-Project", + "username": "morga471" + }, + "sensitive_values": {}, + "depends_on": [ + "module.repo_list.github_repository.repo" + ] + }, + { + "address": "module.repo_list[\"Github-Actions-Project\"].github_repository_collaborator.collaborators[\"naray007\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "naray007", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "Github-Actions-Project:naray007", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "Github-Actions-Project", + "username": "naray007" + }, + "sensitive_values": {}, + "depends_on": [ + "module.repo_list.github_repository.repo" + ] + } + ], + "address": "module.repo_list[\"Github-Actions-Project\"]" + }, + { + "resources": [ + { + "address": "module.repo_list[\"automation-repos\"].data.github_user.pull_request_bypassers[\"arnol377\"]", + "mode": "data", + "type": "github_user", + "name": "pull_request_bypassers", + "index": "arnol377", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "avatar_url": "https://github.e.it.census.gov/avatars/u/549?", + "bio": "", + "blog": "", + "company": "", + "created_at": "2023-12-26 17:20:24 +0000 UTC", + "email": "", + "followers": 0, + "following": 0, + "gpg_keys": [], + "gravatar_id": "", + "id": "549", + "location": "", + "login": "arnol377", + "name": "David John Arnold Jr", + "node_id": "MDQ6VXNlcjU0OQ==", + "public_gists": 0, + "public_repos": 4, + "site_admin": false, + "ssh_keys": [ + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDBL3xJ3zSxE6Qv8k9b06oFB4dbq2+PiOmsnIfAgL2XZpEenD03jhCF28iAZVy9oovuBCbcyAE9BjTRdWFSjd1dmHthbGe5Jv0/DweNFB/YmX6wJ6knljTA3frkY9bVS9+rqY6N4GG3oG6lyyk7cBaUEagXF4VQQJqX4l7XG1xxUfKLFFhF3Lq+CDg39FwlKk+QxIWMrbRJdpRBDZ03VZnKcgP0m/5K8PrcyGbxOK8qeVREUaqvmQN2Rs4LD1REPZyr3GQ2gtgpqrJ3hym7TwJw3Xl5NW8Y7RAeENem2K3EKoq6qq/wB/YUqMhKD228w5J6B+CoI8nvDqAWZkNAz/uY/GJe4elRJCmFH2F+r3263R5oDnXWSluB7XIm3b+Xt24F8MwoltejSEma41c8FM/xbF3Kle8ofBGFPEXpNDAxICVbyZ6OE4TyqTGKA8xgg9vnR3hCGGERtLYHhPw0aVHY7Zew/6/QV9o6/reO96V92zpXVEpvO09Z40fvTd5cN68=", + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDXRnBg+dayTonnZY3i0dDEHXUFMhcJKtqiFO7Oe/ejasDeW2I+L0f1gg+7u1ms/g8E28/RARN3R1aMnbGvXWdP/yBrhtpWJc5TXK+f33S5lYYjptJ2F6vj7jiRU7pP4uL9wqknj0DoSD0krAEbA85mBJgIV1viL8ZBtT/8iBoD6kHGRXaHpRH5sIFaURRJCcUTJhdqMUPd6bYKE/Bc6ioQLAEow0JB4ju1jPa7fOxhgVrIYxRiMkismhR0WLopB5JxyYDNmIyjUL2vGt9Kpd41DELv+Pn7EaP2HLjubVruWFnxnhZ7nvQwMonnZvjD3f5yPkDUkWnwaVGqw8cm9PFM4buFRmGpsl8YqTFakYgqc+JVDQB8bb9a9sr5/6Hbn41VcXd+KV6dTMK4PKSQFKLaq54ExzlwnE/EHnduE8JgvsfAa316/etFlzTQOBv1KbL8RKK0/vy6wJpiK9laDbymsOJPjZekoc/TD1AIvfWF9oae6wAU86tBVGdEO/JMOMc=", + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCvlUlp/OjFsa4fINqqMXukveo+mCu0Ywp0wwVCURkfJpPFPMdmbp07WlULCX6VgmqH4joCA+LUyY+q6iBZw80lS66lpDcRHMTG4PV7IsPpoYN20bUnm30vdqug/P1wVDuOO9B83+s3QFeBl9WbHQB3YY5pBulZGLIGw26qrLwfM5UJ4P/Ffca7ca9PM7KEkwqOC9xMfJy3tFkzD2Rjo2AHN9s7xHtpf95m8MzToy1Q7ykU/8bhImOrkZKaJJtIfmykYhebKDpeETEWJiyyaubIl71KAsWacrvQnEfo2fe62kR3SGv2auPDxMaGKPqtDpe2e/Y9I85Fv3tfWk53DDFoZNzExT4jc825bCqqz2DBbz4Q/Miw3rcdHx7uaRHinEJsBveNhZSH31GMLtU/dVNF3TNhlEH62Zmjgu7IpWb6Tr/4KnLjf/0p7ye34jP49nv1iBj99j3p1hwgAGU56ag4j7TW/iMh+uH+pg1hm6xZjhFInZGzQqtMl/qjBlr1oJ8=", + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCNVaIVHzjCkmCyQnpHfgLLvPtc96PVg/+8/cT2ty6TFe3ALaZJSHTWXjOPJaSkhBef2PCmbcsd3+p+QDl87nRl9O5fV376mrGwsxlpI2a1FnzpBkAEpZ2KyE4B593xGlpmvrMOF9gY4qGdNHCXw2puZ/IkmYaiROYpL2ptiSfTGc1R/ZrEvs0fhYwyi4xYfb+iGVSvjhhTqzJYNW6IBmMZVbDCdYX+JvSKsZYydnkHg7d9QJORZ3TnPe3Tmnn+PAse9V0z9VKOScfoRNT+Co9ezLGWNY+Dnnwg0jouA76/CiIIjWunJzLsIeu7cqNwubKO8lsLX9O+6zKR46EEaVr1VoC395IPvBy8x+VWUSpI+M7GLh0iPE56EvwiVm8irTkmY6WPsQ8PMJ5IWZE/OA6w6fupiSgBd5myFpB/wa8yVdY+UPfh40HpEXt0+iPeWK9kz/fJQAgow/FJAAsnI65JdVP4woAUYnmoJ0l6qgDyFQbOxcq7NZdmedHtRz049hM=" + ], + "suspended_at": "0001-01-01 00:00:00 +0000 UTC", + "updated_at": "2024-09-19 17:49:11 +0000 UTC", + "username": "arnol377" + }, + "sensitive_values": { + "gpg_keys": [], + "ssh_keys": [ + false, + false, + false, + false + ] + } + }, + { + "address": "module.repo_list[\"automation-repos\"].data.github_user.pull_request_bypassers[\"gomez385\"]", + "mode": "data", + "type": "github_user", + "name": "pull_request_bypassers", + "index": "gomez385", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "avatar_url": "https://github.e.it.census.gov/avatars/u/603?", + "bio": "", + "blog": "", + "company": "", + "created_at": "2024-06-13 14:57:04 +0000 UTC", + "email": "", + "followers": 0, + "following": 1, + "gpg_keys": [], + "gravatar_id": "", + "id": "603", + "location": "", + "login": "gomez385", + "name": "James Farr Gomez", + "node_id": "MDQ6VXNlcjYwMw==", + "public_gists": 0, + "public_repos": 0, + "site_admin": false, + "ssh_keys": [ + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDuGCb6WHZ8kex7gawtk2pmHd8t77HQ0LE+7sanVKoC5cWC/7RlefKBuH5c8F2RmmB1EaVFT2ylCsR0qnPT8xGH7gjrkRs/B8LAcwvXifev1BkPSE1gJT+lQpnwPkfqBuCbsewOR1XyPqQt5SZh4a9w7GDvBsfO2Ate9ADtX0nsI76t2DURR32ptBKnN2TtYqnD5D3VKV2lhiI2tnz8sO5FZzYycCONsv570N/itwT34gKSLVRsj+0YmPjmOU+7JWpXxdtjocw06ZEGnSyInIH4VJVROE0p3Z63xHQ9fxDtnW71zf0a9UeoY5Vb/b7PbK4NF3Dp9gG8iaL9dqeiZ1XTCcXHDyHGVFej3sl0CkB+BQ/Gz9ZCqkSBcA+n9WA5KclNuOMwe4eLXRwg/gxxmAJB707gXUk+nSPGwYTObtm0+lfspCNQxAFry8gX39mdVqnaCz1agzmwZo7rRls+BZPfDPg3YUkB3v9P8y/cbO6Bn5IRmYB2KQ73E7X8QJcW0+E=", + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQDROzDzCBisy3+PvtvvCt7XxuEpNAwBS6SoK2wKJNnGgYPs8zInboOVZWqRXujOWOySPCloBfYU5B2eg94cVoDnTnc9dArWhBOK0aY93XM7/0s3/01w3Kkyi25oJytr0NRI8liZq6DnF9hFiqxRVcJkoS4+I9t9G3MURjVbcNY10+bIs6Dp9sbnJaJEWvvsbAiz1WdZBAsF3eW20mNkzmQtYoASHWv3AD/j+xLRYvx2sVcPXIGQ4fw3FqQIUOkbVQUW2lCBp+BVZgR1U4dKh5lejddxd7bXblWxJ5qqWPXulqCnUrJBBTWxTPrUxBzcZtxLAj8C04PyZPJYWVVbhuxkMgA7VeUHeZ/iFT6LZeqVtwTDlEPCzShCdIC0JWKzxI+I663YeSf2y1Jh3qT/R+e0qcduEmL3bdE+PyyvQks8WCXVfXtJeHQfkPKcy9gARpQScY/6vSyZbJNfIW1VagCCRZp54AzOlhKTUy2r97zlrzB9gBPU2ycbmLFYOglVrw6Fo6ECV8slQIxuz0lS0RbEI/+c9jWxKqcSrb0zCEgoL+HEdGaElTRENPhApPXZO+YlFZkg9NY9t+uGWCu2xPgSiR2fn44QzfWypxCq05G0fNRQRRIuMnpjkXlv66O/hju+xMTG1fVyKSKq5CA1bDdDn9euZ7Q6OAFsQX73hdYn6Q==" + ], + "suspended_at": "0001-01-01 00:00:00 +0000 UTC", + "updated_at": "2024-09-26 18:00:48 +0000 UTC", + "username": "gomez385" + }, + "sensitive_values": { + "gpg_keys": [], + "ssh_keys": [ + false, + false + ] + } + }, + { + "address": "module.repo_list[\"automation-repos\"].github_repository.repo", + "mode": "managed", + "type": "github_repository", + "name": "repo", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 1, + "values": { + "allow_auto_merge": false, + "allow_merge_commit": false, + "allow_rebase_merge": false, + "allow_squash_merge": true, + "allow_update_branch": false, + "archive_on_destroy": true, + "archived": false, + "auto_init": true, + "default_branch": "main", + "delete_branch_on_merge": true, + "description": "Automation Repos for Morpheus POC", + "etag": "W/\"e8c602ba8a63231bed3200439a518b4793d56c45c286dd6b5cbf8bb4157aa059\"", + "full_name": "CSVD/automation-repos", + "git_clone_url": "git://github.e.it.census.gov/CSVD/automation-repos.git", + "gitignore_template": "", + "has_discussions": false, + "has_downloads": false, + "has_issues": true, + "has_projects": true, + "has_wiki": true, + "homepage_url": "", + "html_url": "https://github.e.it.census.gov/CSVD/automation-repos", + "http_clone_url": "https://github.e.it.census.gov/CSVD/automation-repos.git", + "id": "automation-repos", + "ignore_vulnerability_alerts_during_read": null, + "is_template": false, + "license_template": null, + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "name": "automation-repos", + "node_id": "MDEwOlJlcG9zaXRvcnk5ODE=", + "pages": [], + "primary_language": "HCL", + "private": true, + "repo_id": 981, + "security_and_analysis": [ + { + "advanced_security": [ + { + "status": "disabled" + } + ], + "secret_scanning": [ + { + "status": "disabled" + } + ], + "secret_scanning_push_protection": [ + { + "status": "disabled" + } + ] + } + ], + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "ssh_clone_url": "git@github.e.it.census.gov:CSVD/automation-repos.git", + "svn_url": "https://github.e.it.census.gov/CSVD/automation-repos", + "template": [], + "topics": [ + "terraform" + ], + "visibility": "private", + "vulnerability_alerts": false, + "web_commit_signoff_required": false + }, + "sensitive_values": { + "pages": [], + "security_and_analysis": [ + { + "advanced_security": [ + {} + ], + "secret_scanning": [ + {} + ], + "secret_scanning_push_protection": [ + {} + ] + } + ], + "template": [], + "topics": [ + false + ] + } + }, + { + "address": "module.repo_list[\"automation-repos\"].github_repository_collaborator.collaborators[\"gomez385\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "gomez385", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "automation-repos:gomez385", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "automation-repos", + "username": "gomez385" + }, + "sensitive_values": {}, + "depends_on": [ + "module.repo_list.github_repository.repo" + ] + }, + { + "address": "module.repo_list[\"automation-repos\"].github_repository_collaborator.collaborators[\"morga471\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "morga471", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "automation-repos:morga471", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "automation-repos", + "username": "morga471" + }, + "sensitive_values": {}, + "depends_on": [ + "module.repo_list.github_repository.repo" + ] + }, + { + "address": "module.repo_list[\"automation-repos\"].github_repository_collaborator.collaborators[\"naray007\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "naray007", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "automation-repos:naray007", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "automation-repos", + "username": "naray007" + }, + "sensitive_values": {}, + "depends_on": [ + "module.repo_list.github_repository.repo" + ] + } + ], + "address": "module.repo_list[\"automation-repos\"]" + }, + { + "resources": [ + { + "address": "module.repo_list[\"aws-beanstalk\"].data.github_user.pull_request_bypassers[\"arnol377\"]", + "mode": "data", + "type": "github_user", + "name": "pull_request_bypassers", + "index": "arnol377", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "avatar_url": "https://github.e.it.census.gov/avatars/u/549?", + "bio": "", + "blog": "", + "company": "", + "created_at": "2023-12-26 17:20:24 +0000 UTC", + "email": "", + "followers": 0, + "following": 0, + "gpg_keys": [], + "gravatar_id": "", + "id": "549", + "location": "", + "login": "arnol377", + "name": "David John Arnold Jr", + "node_id": "MDQ6VXNlcjU0OQ==", + "public_gists": 0, + "public_repos": 4, + "site_admin": false, + "ssh_keys": [ + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDBL3xJ3zSxE6Qv8k9b06oFB4dbq2+PiOmsnIfAgL2XZpEenD03jhCF28iAZVy9oovuBCbcyAE9BjTRdWFSjd1dmHthbGe5Jv0/DweNFB/YmX6wJ6knljTA3frkY9bVS9+rqY6N4GG3oG6lyyk7cBaUEagXF4VQQJqX4l7XG1xxUfKLFFhF3Lq+CDg39FwlKk+QxIWMrbRJdpRBDZ03VZnKcgP0m/5K8PrcyGbxOK8qeVREUaqvmQN2Rs4LD1REPZyr3GQ2gtgpqrJ3hym7TwJw3Xl5NW8Y7RAeENem2K3EKoq6qq/wB/YUqMhKD228w5J6B+CoI8nvDqAWZkNAz/uY/GJe4elRJCmFH2F+r3263R5oDnXWSluB7XIm3b+Xt24F8MwoltejSEma41c8FM/xbF3Kle8ofBGFPEXpNDAxICVbyZ6OE4TyqTGKA8xgg9vnR3hCGGERtLYHhPw0aVHY7Zew/6/QV9o6/reO96V92zpXVEpvO09Z40fvTd5cN68=", + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDXRnBg+dayTonnZY3i0dDEHXUFMhcJKtqiFO7Oe/ejasDeW2I+L0f1gg+7u1ms/g8E28/RARN3R1aMnbGvXWdP/yBrhtpWJc5TXK+f33S5lYYjptJ2F6vj7jiRU7pP4uL9wqknj0DoSD0krAEbA85mBJgIV1viL8ZBtT/8iBoD6kHGRXaHpRH5sIFaURRJCcUTJhdqMUPd6bYKE/Bc6ioQLAEow0JB4ju1jPa7fOxhgVrIYxRiMkismhR0WLopB5JxyYDNmIyjUL2vGt9Kpd41DELv+Pn7EaP2HLjubVruWFnxnhZ7nvQwMonnZvjD3f5yPkDUkWnwaVGqw8cm9PFM4buFRmGpsl8YqTFakYgqc+JVDQB8bb9a9sr5/6Hbn41VcXd+KV6dTMK4PKSQFKLaq54ExzlwnE/EHnduE8JgvsfAa316/etFlzTQOBv1KbL8RKK0/vy6wJpiK9laDbymsOJPjZekoc/TD1AIvfWF9oae6wAU86tBVGdEO/JMOMc=", + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCvlUlp/OjFsa4fINqqMXukveo+mCu0Ywp0wwVCURkfJpPFPMdmbp07WlULCX6VgmqH4joCA+LUyY+q6iBZw80lS66lpDcRHMTG4PV7IsPpoYN20bUnm30vdqug/P1wVDuOO9B83+s3QFeBl9WbHQB3YY5pBulZGLIGw26qrLwfM5UJ4P/Ffca7ca9PM7KEkwqOC9xMfJy3tFkzD2Rjo2AHN9s7xHtpf95m8MzToy1Q7ykU/8bhImOrkZKaJJtIfmykYhebKDpeETEWJiyyaubIl71KAsWacrvQnEfo2fe62kR3SGv2auPDxMaGKPqtDpe2e/Y9I85Fv3tfWk53DDFoZNzExT4jc825bCqqz2DBbz4Q/Miw3rcdHx7uaRHinEJsBveNhZSH31GMLtU/dVNF3TNhlEH62Zmjgu7IpWb6Tr/4KnLjf/0p7ye34jP49nv1iBj99j3p1hwgAGU56ag4j7TW/iMh+uH+pg1hm6xZjhFInZGzQqtMl/qjBlr1oJ8=", + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCNVaIVHzjCkmCyQnpHfgLLvPtc96PVg/+8/cT2ty6TFe3ALaZJSHTWXjOPJaSkhBef2PCmbcsd3+p+QDl87nRl9O5fV376mrGwsxlpI2a1FnzpBkAEpZ2KyE4B593xGlpmvrMOF9gY4qGdNHCXw2puZ/IkmYaiROYpL2ptiSfTGc1R/ZrEvs0fhYwyi4xYfb+iGVSvjhhTqzJYNW6IBmMZVbDCdYX+JvSKsZYydnkHg7d9QJORZ3TnPe3Tmnn+PAse9V0z9VKOScfoRNT+Co9ezLGWNY+Dnnwg0jouA76/CiIIjWunJzLsIeu7cqNwubKO8lsLX9O+6zKR46EEaVr1VoC395IPvBy8x+VWUSpI+M7GLh0iPE56EvwiVm8irTkmY6WPsQ8PMJ5IWZE/OA6w6fupiSgBd5myFpB/wa8yVdY+UPfh40HpEXt0+iPeWK9kz/fJQAgow/FJAAsnI65JdVP4woAUYnmoJ0l6qgDyFQbOxcq7NZdmedHtRz049hM=" + ], + "suspended_at": "0001-01-01 00:00:00 +0000 UTC", + "updated_at": "2024-09-19 17:49:11 +0000 UTC", + "username": "arnol377" + }, + "sensitive_values": { + "gpg_keys": [], + "ssh_keys": [ + false, + false, + false, + false + ] + } + }, + { + "address": "module.repo_list[\"aws-beanstalk\"].data.github_user.pull_request_bypassers[\"gomez385\"]", + "mode": "data", + "type": "github_user", + "name": "pull_request_bypassers", + "index": "gomez385", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "avatar_url": "https://github.e.it.census.gov/avatars/u/603?", + "bio": "", + "blog": "", + "company": "", + "created_at": "2024-06-13 14:57:04 +0000 UTC", + "email": "", + "followers": 0, + "following": 1, + "gpg_keys": [], + "gravatar_id": "", + "id": "603", + "location": "", + "login": "gomez385", + "name": "James Farr Gomez", + "node_id": "MDQ6VXNlcjYwMw==", + "public_gists": 0, + "public_repos": 0, + "site_admin": false, + "ssh_keys": [ + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDuGCb6WHZ8kex7gawtk2pmHd8t77HQ0LE+7sanVKoC5cWC/7RlefKBuH5c8F2RmmB1EaVFT2ylCsR0qnPT8xGH7gjrkRs/B8LAcwvXifev1BkPSE1gJT+lQpnwPkfqBuCbsewOR1XyPqQt5SZh4a9w7GDvBsfO2Ate9ADtX0nsI76t2DURR32ptBKnN2TtYqnD5D3VKV2lhiI2tnz8sO5FZzYycCONsv570N/itwT34gKSLVRsj+0YmPjmOU+7JWpXxdtjocw06ZEGnSyInIH4VJVROE0p3Z63xHQ9fxDtnW71zf0a9UeoY5Vb/b7PbK4NF3Dp9gG8iaL9dqeiZ1XTCcXHDyHGVFej3sl0CkB+BQ/Gz9ZCqkSBcA+n9WA5KclNuOMwe4eLXRwg/gxxmAJB707gXUk+nSPGwYTObtm0+lfspCNQxAFry8gX39mdVqnaCz1agzmwZo7rRls+BZPfDPg3YUkB3v9P8y/cbO6Bn5IRmYB2KQ73E7X8QJcW0+E=", + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQDROzDzCBisy3+PvtvvCt7XxuEpNAwBS6SoK2wKJNnGgYPs8zInboOVZWqRXujOWOySPCloBfYU5B2eg94cVoDnTnc9dArWhBOK0aY93XM7/0s3/01w3Kkyi25oJytr0NRI8liZq6DnF9hFiqxRVcJkoS4+I9t9G3MURjVbcNY10+bIs6Dp9sbnJaJEWvvsbAiz1WdZBAsF3eW20mNkzmQtYoASHWv3AD/j+xLRYvx2sVcPXIGQ4fw3FqQIUOkbVQUW2lCBp+BVZgR1U4dKh5lejddxd7bXblWxJ5qqWPXulqCnUrJBBTWxTPrUxBzcZtxLAj8C04PyZPJYWVVbhuxkMgA7VeUHeZ/iFT6LZeqVtwTDlEPCzShCdIC0JWKzxI+I663YeSf2y1Jh3qT/R+e0qcduEmL3bdE+PyyvQks8WCXVfXtJeHQfkPKcy9gARpQScY/6vSyZbJNfIW1VagCCRZp54AzOlhKTUy2r97zlrzB9gBPU2ycbmLFYOglVrw6Fo6ECV8slQIxuz0lS0RbEI/+c9jWxKqcSrb0zCEgoL+HEdGaElTRENPhApPXZO+YlFZkg9NY9t+uGWCu2xPgSiR2fn44QzfWypxCq05G0fNRQRRIuMnpjkXlv66O/hju+xMTG1fVyKSKq5CA1bDdDn9euZ7Q6OAFsQX73hdYn6Q==" + ], + "suspended_at": "0001-01-01 00:00:00 +0000 UTC", + "updated_at": "2024-09-26 18:00:48 +0000 UTC", + "username": "gomez385" + }, + "sensitive_values": { + "gpg_keys": [], + "ssh_keys": [ + false, + false + ] + } + }, + { + "address": "module.repo_list[\"aws-beanstalk\"].github_repository.repo", + "mode": "managed", + "type": "github_repository", + "name": "repo", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 1, + "values": { + "allow_auto_merge": false, + "allow_merge_commit": false, + "allow_rebase_merge": false, + "allow_squash_merge": true, + "allow_update_branch": false, + "archive_on_destroy": true, + "archived": false, + "auto_init": true, + "default_branch": "main", + "delete_branch_on_merge": true, + "description": "Terraform Workspace for creating Elastic Beanstalk Apps and Environments", + "etag": "W/\"8ac441e7848382c8552d4b8a0cd5205491bce4eca1f8e7d56d5e699cbdce8442\"", + "full_name": "CSVD/aws-beanstalk", + "git_clone_url": "git://github.e.it.census.gov/CSVD/aws-beanstalk.git", + "gitignore_template": "", + "has_discussions": false, + "has_downloads": false, + "has_issues": true, + "has_projects": true, + "has_wiki": true, + "homepage_url": "", + "html_url": "https://github.e.it.census.gov/CSVD/aws-beanstalk", + "http_clone_url": "https://github.e.it.census.gov/CSVD/aws-beanstalk.git", + "id": "aws-beanstalk", + "ignore_vulnerability_alerts_during_read": null, + "is_template": true, + "license_template": null, + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "name": "aws-beanstalk", + "node_id": "MDEwOlJlcG9zaXRvcnk5MjU=", + "pages": [], + "primary_language": "HCL", + "private": true, + "repo_id": 925, + "security_and_analysis": [ + { + "advanced_security": [ + { + "status": "disabled" + } + ], + "secret_scanning": [ + { + "status": "disabled" + } + ], + "secret_scanning_push_protection": [ + { + "status": "disabled" + } + ] + } + ], + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "ssh_clone_url": "git@github.e.it.census.gov:CSVD/aws-beanstalk.git", + "svn_url": "https://github.e.it.census.gov/CSVD/aws-beanstalk", + "template": [], + "topics": [ + "terraform" + ], + "visibility": "private", + "vulnerability_alerts": false, + "web_commit_signoff_required": false + }, + "sensitive_values": { + "pages": [], + "security_and_analysis": [ + { + "advanced_security": [ + {} + ], + "secret_scanning": [ + {} + ], + "secret_scanning_push_protection": [ + {} + ] + } + ], + "template": [], + "topics": [ + false + ] + } + }, + { + "address": "module.repo_list[\"aws-beanstalk\"].github_repository_collaborator.collaborators[\"gomez385\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "gomez385", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "aws-beanstalk:gomez385", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "aws-beanstalk", + "username": "gomez385" + }, + "sensitive_values": {}, + "depends_on": [ + "module.repo_list.github_repository.repo" + ] + }, + { + "address": "module.repo_list[\"aws-beanstalk\"].github_repository_collaborator.collaborators[\"morga471\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "morga471", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "aws-beanstalk:morga471", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "aws-beanstalk", + "username": "morga471" + }, + "sensitive_values": {}, + "depends_on": [ + "module.repo_list.github_repository.repo" + ] + }, + { + "address": "module.repo_list[\"aws-beanstalk\"].github_repository_collaborator.collaborators[\"naray007\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "naray007", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "aws-beanstalk:naray007", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "aws-beanstalk", + "username": "naray007" + }, + "sensitive_values": {}, + "depends_on": [ + "module.repo_list.github_repository.repo" + ] + } + ], + "address": "module.repo_list[\"aws-beanstalk\"]" + }, + { + "resources": [ + { + "address": "module.repo_list[\"aws-beanstalk-docker\"].data.github_user.pull_request_bypassers[\"arnol377\"]", + "mode": "data", + "type": "github_user", + "name": "pull_request_bypassers", + "index": "arnol377", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "avatar_url": "https://github.e.it.census.gov/avatars/u/549?", + "bio": "", + "blog": "", + "company": "", + "created_at": "2023-12-26 17:20:24 +0000 UTC", + "email": "", + "followers": 0, + "following": 0, + "gpg_keys": [], + "gravatar_id": "", + "id": "549", + "location": "", + "login": "arnol377", + "name": "David John Arnold Jr", + "node_id": "MDQ6VXNlcjU0OQ==", + "public_gists": 0, + "public_repos": 4, + "site_admin": false, + "ssh_keys": [ + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDBL3xJ3zSxE6Qv8k9b06oFB4dbq2+PiOmsnIfAgL2XZpEenD03jhCF28iAZVy9oovuBCbcyAE9BjTRdWFSjd1dmHthbGe5Jv0/DweNFB/YmX6wJ6knljTA3frkY9bVS9+rqY6N4GG3oG6lyyk7cBaUEagXF4VQQJqX4l7XG1xxUfKLFFhF3Lq+CDg39FwlKk+QxIWMrbRJdpRBDZ03VZnKcgP0m/5K8PrcyGbxOK8qeVREUaqvmQN2Rs4LD1REPZyr3GQ2gtgpqrJ3hym7TwJw3Xl5NW8Y7RAeENem2K3EKoq6qq/wB/YUqMhKD228w5J6B+CoI8nvDqAWZkNAz/uY/GJe4elRJCmFH2F+r3263R5oDnXWSluB7XIm3b+Xt24F8MwoltejSEma41c8FM/xbF3Kle8ofBGFPEXpNDAxICVbyZ6OE4TyqTGKA8xgg9vnR3hCGGERtLYHhPw0aVHY7Zew/6/QV9o6/reO96V92zpXVEpvO09Z40fvTd5cN68=", + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDXRnBg+dayTonnZY3i0dDEHXUFMhcJKtqiFO7Oe/ejasDeW2I+L0f1gg+7u1ms/g8E28/RARN3R1aMnbGvXWdP/yBrhtpWJc5TXK+f33S5lYYjptJ2F6vj7jiRU7pP4uL9wqknj0DoSD0krAEbA85mBJgIV1viL8ZBtT/8iBoD6kHGRXaHpRH5sIFaURRJCcUTJhdqMUPd6bYKE/Bc6ioQLAEow0JB4ju1jPa7fOxhgVrIYxRiMkismhR0WLopB5JxyYDNmIyjUL2vGt9Kpd41DELv+Pn7EaP2HLjubVruWFnxnhZ7nvQwMonnZvjD3f5yPkDUkWnwaVGqw8cm9PFM4buFRmGpsl8YqTFakYgqc+JVDQB8bb9a9sr5/6Hbn41VcXd+KV6dTMK4PKSQFKLaq54ExzlwnE/EHnduE8JgvsfAa316/etFlzTQOBv1KbL8RKK0/vy6wJpiK9laDbymsOJPjZekoc/TD1AIvfWF9oae6wAU86tBVGdEO/JMOMc=", + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCvlUlp/OjFsa4fINqqMXukveo+mCu0Ywp0wwVCURkfJpPFPMdmbp07WlULCX6VgmqH4joCA+LUyY+q6iBZw80lS66lpDcRHMTG4PV7IsPpoYN20bUnm30vdqug/P1wVDuOO9B83+s3QFeBl9WbHQB3YY5pBulZGLIGw26qrLwfM5UJ4P/Ffca7ca9PM7KEkwqOC9xMfJy3tFkzD2Rjo2AHN9s7xHtpf95m8MzToy1Q7ykU/8bhImOrkZKaJJtIfmykYhebKDpeETEWJiyyaubIl71KAsWacrvQnEfo2fe62kR3SGv2auPDxMaGKPqtDpe2e/Y9I85Fv3tfWk53DDFoZNzExT4jc825bCqqz2DBbz4Q/Miw3rcdHx7uaRHinEJsBveNhZSH31GMLtU/dVNF3TNhlEH62Zmjgu7IpWb6Tr/4KnLjf/0p7ye34jP49nv1iBj99j3p1hwgAGU56ag4j7TW/iMh+uH+pg1hm6xZjhFInZGzQqtMl/qjBlr1oJ8=", + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCNVaIVHzjCkmCyQnpHfgLLvPtc96PVg/+8/cT2ty6TFe3ALaZJSHTWXjOPJaSkhBef2PCmbcsd3+p+QDl87nRl9O5fV376mrGwsxlpI2a1FnzpBkAEpZ2KyE4B593xGlpmvrMOF9gY4qGdNHCXw2puZ/IkmYaiROYpL2ptiSfTGc1R/ZrEvs0fhYwyi4xYfb+iGVSvjhhTqzJYNW6IBmMZVbDCdYX+JvSKsZYydnkHg7d9QJORZ3TnPe3Tmnn+PAse9V0z9VKOScfoRNT+Co9ezLGWNY+Dnnwg0jouA76/CiIIjWunJzLsIeu7cqNwubKO8lsLX9O+6zKR46EEaVr1VoC395IPvBy8x+VWUSpI+M7GLh0iPE56EvwiVm8irTkmY6WPsQ8PMJ5IWZE/OA6w6fupiSgBd5myFpB/wa8yVdY+UPfh40HpEXt0+iPeWK9kz/fJQAgow/FJAAsnI65JdVP4woAUYnmoJ0l6qgDyFQbOxcq7NZdmedHtRz049hM=" + ], + "suspended_at": "0001-01-01 00:00:00 +0000 UTC", + "updated_at": "2024-09-19 17:49:11 +0000 UTC", + "username": "arnol377" + }, + "sensitive_values": { + "gpg_keys": [], + "ssh_keys": [ + false, + false, + false, + false + ] + } + }, + { + "address": "module.repo_list[\"aws-beanstalk-docker\"].data.github_user.pull_request_bypassers[\"gomez385\"]", + "mode": "data", + "type": "github_user", + "name": "pull_request_bypassers", + "index": "gomez385", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "avatar_url": "https://github.e.it.census.gov/avatars/u/603?", + "bio": "", + "blog": "", + "company": "", + "created_at": "2024-06-13 14:57:04 +0000 UTC", + "email": "", + "followers": 0, + "following": 1, + "gpg_keys": [], + "gravatar_id": "", + "id": "603", + "location": "", + "login": "gomez385", + "name": "James Farr Gomez", + "node_id": "MDQ6VXNlcjYwMw==", + "public_gists": 0, + "public_repos": 0, + "site_admin": false, + "ssh_keys": [ + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDuGCb6WHZ8kex7gawtk2pmHd8t77HQ0LE+7sanVKoC5cWC/7RlefKBuH5c8F2RmmB1EaVFT2ylCsR0qnPT8xGH7gjrkRs/B8LAcwvXifev1BkPSE1gJT+lQpnwPkfqBuCbsewOR1XyPqQt5SZh4a9w7GDvBsfO2Ate9ADtX0nsI76t2DURR32ptBKnN2TtYqnD5D3VKV2lhiI2tnz8sO5FZzYycCONsv570N/itwT34gKSLVRsj+0YmPjmOU+7JWpXxdtjocw06ZEGnSyInIH4VJVROE0p3Z63xHQ9fxDtnW71zf0a9UeoY5Vb/b7PbK4NF3Dp9gG8iaL9dqeiZ1XTCcXHDyHGVFej3sl0CkB+BQ/Gz9ZCqkSBcA+n9WA5KclNuOMwe4eLXRwg/gxxmAJB707gXUk+nSPGwYTObtm0+lfspCNQxAFry8gX39mdVqnaCz1agzmwZo7rRls+BZPfDPg3YUkB3v9P8y/cbO6Bn5IRmYB2KQ73E7X8QJcW0+E=", + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQDROzDzCBisy3+PvtvvCt7XxuEpNAwBS6SoK2wKJNnGgYPs8zInboOVZWqRXujOWOySPCloBfYU5B2eg94cVoDnTnc9dArWhBOK0aY93XM7/0s3/01w3Kkyi25oJytr0NRI8liZq6DnF9hFiqxRVcJkoS4+I9t9G3MURjVbcNY10+bIs6Dp9sbnJaJEWvvsbAiz1WdZBAsF3eW20mNkzmQtYoASHWv3AD/j+xLRYvx2sVcPXIGQ4fw3FqQIUOkbVQUW2lCBp+BVZgR1U4dKh5lejddxd7bXblWxJ5qqWPXulqCnUrJBBTWxTPrUxBzcZtxLAj8C04PyZPJYWVVbhuxkMgA7VeUHeZ/iFT6LZeqVtwTDlEPCzShCdIC0JWKzxI+I663YeSf2y1Jh3qT/R+e0qcduEmL3bdE+PyyvQks8WCXVfXtJeHQfkPKcy9gARpQScY/6vSyZbJNfIW1VagCCRZp54AzOlhKTUy2r97zlrzB9gBPU2ycbmLFYOglVrw6Fo6ECV8slQIxuz0lS0RbEI/+c9jWxKqcSrb0zCEgoL+HEdGaElTRENPhApPXZO+YlFZkg9NY9t+uGWCu2xPgSiR2fn44QzfWypxCq05G0fNRQRRIuMnpjkXlv66O/hju+xMTG1fVyKSKq5CA1bDdDn9euZ7Q6OAFsQX73hdYn6Q==" + ], + "suspended_at": "0001-01-01 00:00:00 +0000 UTC", + "updated_at": "2024-09-26 18:00:48 +0000 UTC", + "username": "gomez385" + }, + "sensitive_values": { + "gpg_keys": [], + "ssh_keys": [ + false, + false + ] + } + }, + { + "address": "module.repo_list[\"aws-beanstalk-docker\"].github_repository.repo", + "mode": "managed", + "type": "github_repository", + "name": "repo", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 1, + "values": { + "allow_auto_merge": false, + "allow_merge_commit": false, + "allow_rebase_merge": false, + "allow_squash_merge": true, + "allow_update_branch": false, + "archive_on_destroy": true, + "archived": false, + "auto_init": true, + "default_branch": "main", + "delete_branch_on_merge": true, + "description": "Terraform Workspace for creating Elastic Beanstalk Apps and Environments", + "etag": "W/\"8fc9f715cca851ec50f80ee04d3528bc284c142cd26c7353f5b28fba10cee0ea\"", + "full_name": "CSVD/aws-beanstalk-docker", + "git_clone_url": "git://github.e.it.census.gov/CSVD/aws-beanstalk-docker.git", + "gitignore_template": "", + "has_discussions": false, + "has_downloads": false, + "has_issues": true, + "has_projects": true, + "has_wiki": true, + "homepage_url": "", + "html_url": "https://github.e.it.census.gov/CSVD/aws-beanstalk-docker", + "http_clone_url": "https://github.e.it.census.gov/CSVD/aws-beanstalk-docker.git", + "id": "aws-beanstalk-docker", + "ignore_vulnerability_alerts_during_read": null, + "is_template": true, + "license_template": null, + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "name": "aws-beanstalk-docker", + "node_id": "MDEwOlJlcG9zaXRvcnk5NDA=", + "pages": [], + "primary_language": "HCL", + "private": true, + "repo_id": 940, + "security_and_analysis": [ + { + "advanced_security": [ + { + "status": "disabled" + } + ], + "secret_scanning": [ + { + "status": "disabled" + } + ], + "secret_scanning_push_protection": [ + { + "status": "disabled" + } + ] + } + ], + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "ssh_clone_url": "git@github.e.it.census.gov:CSVD/aws-beanstalk-docker.git", + "svn_url": "https://github.e.it.census.gov/CSVD/aws-beanstalk-docker", + "template": [ + { + "include_all_branches": false, + "owner": "CSVD", + "repository": "aws-beanstalk" + } + ], + "topics": [ + "terraform" + ], + "visibility": "private", + "vulnerability_alerts": false, + "web_commit_signoff_required": false + }, + "sensitive_values": { + "pages": [], + "security_and_analysis": [ + { + "advanced_security": [ + {} + ], + "secret_scanning": [ + {} + ], + "secret_scanning_push_protection": [ + {} + ] + } + ], + "template": [ + {} + ], + "topics": [ + false + ] + } + }, + { + "address": "module.repo_list[\"aws-beanstalk-docker\"].github_repository_collaborator.collaborators[\"gomez385\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "gomez385", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "aws-beanstalk-docker:gomez385", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "aws-beanstalk-docker", + "username": "gomez385" + }, + "sensitive_values": {}, + "depends_on": [ + "module.repo_list.github_repository.repo" + ] + }, + { + "address": "module.repo_list[\"aws-beanstalk-docker\"].github_repository_collaborator.collaborators[\"morga471\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "morga471", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "aws-beanstalk-docker:morga471", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "aws-beanstalk-docker", + "username": "morga471" + }, + "sensitive_values": {}, + "depends_on": [ + "module.repo_list.github_repository.repo" + ] + }, + { + "address": "module.repo_list[\"aws-beanstalk-docker\"].github_repository_collaborator.collaborators[\"naray007\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "naray007", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "aws-beanstalk-docker:naray007", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "aws-beanstalk-docker", + "username": "naray007" + }, + "sensitive_values": {}, + "depends_on": [ + "module.repo_list.github_repository.repo" + ] + }, + { + "address": "module.repo_list[\"aws-beanstalk-docker\"].github_repository_file.extra_files[\".TEMPLATE_SHA\"]", + "mode": "managed", + "type": "github_repository_file", + "name": "extra_files", + "index": ".TEMPLATE_SHA", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "autocreate_branch": false, + "autocreate_branch_source_branch": "main", + "autocreate_branch_source_sha": null, + "branch": "main", + "commit_author": null, + "commit_email": null, + "commit_message": "Add .TEMPLATE_SHA", + "commit_sha": "000ae23da24c029c3e9f4c3bbdbeb115e6d3af2d", + "content": "6073244fcae31ce1bab13a48119e8cc1054dd1cc", + "file": ".TEMPLATE_SHA", + "id": "aws-beanstalk-docker/.TEMPLATE_SHA", + "overwrite_on_create": true, + "ref": "main", + "repository": "aws-beanstalk-docker", + "sha": "a0a3e7c51948abeba3176af69e00f5f0d6fe86bd" + }, + "sensitive_values": {}, + "depends_on": [ + "module.elastic_beanstalk_docker.data.github_ref.ref", + "module.elastic_beanstalk_docker.data.github_repository.template_repo", + "module.elastic_beanstalk_docker.github_repository.repo" + ] + } + ], + "address": "module.repo_list[\"aws-beanstalk-docker\"]" + }, + { + "resources": [ + { + "address": "module.repo_list[\"aws-beanstalk-java\"].data.github_user.pull_request_bypassers[\"arnol377\"]", + "mode": "data", + "type": "github_user", + "name": "pull_request_bypassers", + "index": "arnol377", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "avatar_url": "https://github.e.it.census.gov/avatars/u/549?", + "bio": "", + "blog": "", + "company": "", + "created_at": "2023-12-26 17:20:24 +0000 UTC", + "email": "", + "followers": 0, + "following": 0, + "gpg_keys": [], + "gravatar_id": "", + "id": "549", + "location": "", + "login": "arnol377", + "name": "David John Arnold Jr", + "node_id": "MDQ6VXNlcjU0OQ==", + "public_gists": 0, + "public_repos": 4, + "site_admin": false, + "ssh_keys": [ + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDBL3xJ3zSxE6Qv8k9b06oFB4dbq2+PiOmsnIfAgL2XZpEenD03jhCF28iAZVy9oovuBCbcyAE9BjTRdWFSjd1dmHthbGe5Jv0/DweNFB/YmX6wJ6knljTA3frkY9bVS9+rqY6N4GG3oG6lyyk7cBaUEagXF4VQQJqX4l7XG1xxUfKLFFhF3Lq+CDg39FwlKk+QxIWMrbRJdpRBDZ03VZnKcgP0m/5K8PrcyGbxOK8qeVREUaqvmQN2Rs4LD1REPZyr3GQ2gtgpqrJ3hym7TwJw3Xl5NW8Y7RAeENem2K3EKoq6qq/wB/YUqMhKD228w5J6B+CoI8nvDqAWZkNAz/uY/GJe4elRJCmFH2F+r3263R5oDnXWSluB7XIm3b+Xt24F8MwoltejSEma41c8FM/xbF3Kle8ofBGFPEXpNDAxICVbyZ6OE4TyqTGKA8xgg9vnR3hCGGERtLYHhPw0aVHY7Zew/6/QV9o6/reO96V92zpXVEpvO09Z40fvTd5cN68=", + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDXRnBg+dayTonnZY3i0dDEHXUFMhcJKtqiFO7Oe/ejasDeW2I+L0f1gg+7u1ms/g8E28/RARN3R1aMnbGvXWdP/yBrhtpWJc5TXK+f33S5lYYjptJ2F6vj7jiRU7pP4uL9wqknj0DoSD0krAEbA85mBJgIV1viL8ZBtT/8iBoD6kHGRXaHpRH5sIFaURRJCcUTJhdqMUPd6bYKE/Bc6ioQLAEow0JB4ju1jPa7fOxhgVrIYxRiMkismhR0WLopB5JxyYDNmIyjUL2vGt9Kpd41DELv+Pn7EaP2HLjubVruWFnxnhZ7nvQwMonnZvjD3f5yPkDUkWnwaVGqw8cm9PFM4buFRmGpsl8YqTFakYgqc+JVDQB8bb9a9sr5/6Hbn41VcXd+KV6dTMK4PKSQFKLaq54ExzlwnE/EHnduE8JgvsfAa316/etFlzTQOBv1KbL8RKK0/vy6wJpiK9laDbymsOJPjZekoc/TD1AIvfWF9oae6wAU86tBVGdEO/JMOMc=", + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCvlUlp/OjFsa4fINqqMXukveo+mCu0Ywp0wwVCURkfJpPFPMdmbp07WlULCX6VgmqH4joCA+LUyY+q6iBZw80lS66lpDcRHMTG4PV7IsPpoYN20bUnm30vdqug/P1wVDuOO9B83+s3QFeBl9WbHQB3YY5pBulZGLIGw26qrLwfM5UJ4P/Ffca7ca9PM7KEkwqOC9xMfJy3tFkzD2Rjo2AHN9s7xHtpf95m8MzToy1Q7ykU/8bhImOrkZKaJJtIfmykYhebKDpeETEWJiyyaubIl71KAsWacrvQnEfo2fe62kR3SGv2auPDxMaGKPqtDpe2e/Y9I85Fv3tfWk53DDFoZNzExT4jc825bCqqz2DBbz4Q/Miw3rcdHx7uaRHinEJsBveNhZSH31GMLtU/dVNF3TNhlEH62Zmjgu7IpWb6Tr/4KnLjf/0p7ye34jP49nv1iBj99j3p1hwgAGU56ag4j7TW/iMh+uH+pg1hm6xZjhFInZGzQqtMl/qjBlr1oJ8=", + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCNVaIVHzjCkmCyQnpHfgLLvPtc96PVg/+8/cT2ty6TFe3ALaZJSHTWXjOPJaSkhBef2PCmbcsd3+p+QDl87nRl9O5fV376mrGwsxlpI2a1FnzpBkAEpZ2KyE4B593xGlpmvrMOF9gY4qGdNHCXw2puZ/IkmYaiROYpL2ptiSfTGc1R/ZrEvs0fhYwyi4xYfb+iGVSvjhhTqzJYNW6IBmMZVbDCdYX+JvSKsZYydnkHg7d9QJORZ3TnPe3Tmnn+PAse9V0z9VKOScfoRNT+Co9ezLGWNY+Dnnwg0jouA76/CiIIjWunJzLsIeu7cqNwubKO8lsLX9O+6zKR46EEaVr1VoC395IPvBy8x+VWUSpI+M7GLh0iPE56EvwiVm8irTkmY6WPsQ8PMJ5IWZE/OA6w6fupiSgBd5myFpB/wa8yVdY+UPfh40HpEXt0+iPeWK9kz/fJQAgow/FJAAsnI65JdVP4woAUYnmoJ0l6qgDyFQbOxcq7NZdmedHtRz049hM=" + ], + "suspended_at": "0001-01-01 00:00:00 +0000 UTC", + "updated_at": "2024-09-19 17:49:11 +0000 UTC", + "username": "arnol377" + }, + "sensitive_values": { + "gpg_keys": [], + "ssh_keys": [ + false, + false, + false, + false + ] + } + }, + { + "address": "module.repo_list[\"aws-beanstalk-java\"].data.github_user.pull_request_bypassers[\"gomez385\"]", + "mode": "data", + "type": "github_user", + "name": "pull_request_bypassers", + "index": "gomez385", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "avatar_url": "https://github.e.it.census.gov/avatars/u/603?", + "bio": "", + "blog": "", + "company": "", + "created_at": "2024-06-13 14:57:04 +0000 UTC", + "email": "", + "followers": 0, + "following": 1, + "gpg_keys": [], + "gravatar_id": "", + "id": "603", + "location": "", + "login": "gomez385", + "name": "James Farr Gomez", + "node_id": "MDQ6VXNlcjYwMw==", + "public_gists": 0, + "public_repos": 0, + "site_admin": false, + "ssh_keys": [ + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDuGCb6WHZ8kex7gawtk2pmHd8t77HQ0LE+7sanVKoC5cWC/7RlefKBuH5c8F2RmmB1EaVFT2ylCsR0qnPT8xGH7gjrkRs/B8LAcwvXifev1BkPSE1gJT+lQpnwPkfqBuCbsewOR1XyPqQt5SZh4a9w7GDvBsfO2Ate9ADtX0nsI76t2DURR32ptBKnN2TtYqnD5D3VKV2lhiI2tnz8sO5FZzYycCONsv570N/itwT34gKSLVRsj+0YmPjmOU+7JWpXxdtjocw06ZEGnSyInIH4VJVROE0p3Z63xHQ9fxDtnW71zf0a9UeoY5Vb/b7PbK4NF3Dp9gG8iaL9dqeiZ1XTCcXHDyHGVFej3sl0CkB+BQ/Gz9ZCqkSBcA+n9WA5KclNuOMwe4eLXRwg/gxxmAJB707gXUk+nSPGwYTObtm0+lfspCNQxAFry8gX39mdVqnaCz1agzmwZo7rRls+BZPfDPg3YUkB3v9P8y/cbO6Bn5IRmYB2KQ73E7X8QJcW0+E=", + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQDROzDzCBisy3+PvtvvCt7XxuEpNAwBS6SoK2wKJNnGgYPs8zInboOVZWqRXujOWOySPCloBfYU5B2eg94cVoDnTnc9dArWhBOK0aY93XM7/0s3/01w3Kkyi25oJytr0NRI8liZq6DnF9hFiqxRVcJkoS4+I9t9G3MURjVbcNY10+bIs6Dp9sbnJaJEWvvsbAiz1WdZBAsF3eW20mNkzmQtYoASHWv3AD/j+xLRYvx2sVcPXIGQ4fw3FqQIUOkbVQUW2lCBp+BVZgR1U4dKh5lejddxd7bXblWxJ5qqWPXulqCnUrJBBTWxTPrUxBzcZtxLAj8C04PyZPJYWVVbhuxkMgA7VeUHeZ/iFT6LZeqVtwTDlEPCzShCdIC0JWKzxI+I663YeSf2y1Jh3qT/R+e0qcduEmL3bdE+PyyvQks8WCXVfXtJeHQfkPKcy9gARpQScY/6vSyZbJNfIW1VagCCRZp54AzOlhKTUy2r97zlrzB9gBPU2ycbmLFYOglVrw6Fo6ECV8slQIxuz0lS0RbEI/+c9jWxKqcSrb0zCEgoL+HEdGaElTRENPhApPXZO+YlFZkg9NY9t+uGWCu2xPgSiR2fn44QzfWypxCq05G0fNRQRRIuMnpjkXlv66O/hju+xMTG1fVyKSKq5CA1bDdDn9euZ7Q6OAFsQX73hdYn6Q==" + ], + "suspended_at": "0001-01-01 00:00:00 +0000 UTC", + "updated_at": "2024-09-26 18:00:48 +0000 UTC", + "username": "gomez385" + }, + "sensitive_values": { + "gpg_keys": [], + "ssh_keys": [ + false, + false + ] + } + }, + { + "address": "module.repo_list[\"aws-beanstalk-java\"].github_repository.repo", + "mode": "managed", + "type": "github_repository", + "name": "repo", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 1, + "values": { + "allow_auto_merge": false, + "allow_merge_commit": false, + "allow_rebase_merge": false, + "allow_squash_merge": true, + "allow_update_branch": false, + "archive_on_destroy": true, + "archived": false, + "auto_init": true, + "default_branch": "main", + "delete_branch_on_merge": true, + "description": "Terraform Workspace for creating Elastic Beanstalk Apps and Environments", + "etag": "W/\"b18162d467b84021d3fd5fca42e7b33329083f64bcb3d85f595c9ad83c7f3160\"", + "full_name": "CSVD/aws-beanstalk-java", + "git_clone_url": "git://github.e.it.census.gov/CSVD/aws-beanstalk-java.git", + "gitignore_template": "", + "has_discussions": false, + "has_downloads": false, + "has_issues": true, + "has_projects": true, + "has_wiki": true, + "homepage_url": "", + "html_url": "https://github.e.it.census.gov/CSVD/aws-beanstalk-java", + "http_clone_url": "https://github.e.it.census.gov/CSVD/aws-beanstalk-java.git", + "id": "aws-beanstalk-java", + "ignore_vulnerability_alerts_during_read": null, + "is_template": true, + "license_template": null, + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "name": "aws-beanstalk-java", + "node_id": "MDEwOlJlcG9zaXRvcnk5Mzg=", + "pages": [], + "primary_language": "Python", + "private": true, + "repo_id": 938, + "security_and_analysis": [ + { + "advanced_security": [ + { + "status": "disabled" + } + ], + "secret_scanning": [ + { + "status": "disabled" + } + ], + "secret_scanning_push_protection": [ + { + "status": "disabled" + } + ] + } + ], + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "ssh_clone_url": "git@github.e.it.census.gov:CSVD/aws-beanstalk-java.git", + "svn_url": "https://github.e.it.census.gov/CSVD/aws-beanstalk-java", + "template": [ + { + "include_all_branches": false, + "owner": "CSVD", + "repository": "aws-beanstalk" + } + ], + "topics": [ + "terraform" + ], + "visibility": "private", + "vulnerability_alerts": false, + "web_commit_signoff_required": false + }, + "sensitive_values": { + "pages": [], + "security_and_analysis": [ + { + "advanced_security": [ + {} + ], + "secret_scanning": [ + {} + ], + "secret_scanning_push_protection": [ + {} + ] + } + ], + "template": [ + {} + ], + "topics": [ + false + ] + } + }, + { + "address": "module.repo_list[\"aws-beanstalk-java\"].github_repository_collaborator.collaborators[\"gomez385\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "gomez385", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "aws-beanstalk-java:gomez385", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "aws-beanstalk-java", + "username": "gomez385" + }, + "sensitive_values": {}, + "depends_on": [ + "module.repo_list.github_repository.repo" + ] + }, + { + "address": "module.repo_list[\"aws-beanstalk-java\"].github_repository_collaborator.collaborators[\"morga471\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "morga471", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "aws-beanstalk-java:morga471", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "aws-beanstalk-java", + "username": "morga471" + }, + "sensitive_values": {}, + "depends_on": [ + "module.repo_list.github_repository.repo" + ] + }, + { + "address": "module.repo_list[\"aws-beanstalk-java\"].github_repository_collaborator.collaborators[\"naray007\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "naray007", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "aws-beanstalk-java:naray007", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "aws-beanstalk-java", + "username": "naray007" + }, + "sensitive_values": {}, + "depends_on": [ + "module.repo_list.github_repository.repo" + ] + }, + { + "address": "module.repo_list[\"aws-beanstalk-java\"].github_repository_file.extra_files[\".TEMPLATE_SHA\"]", + "mode": "managed", + "type": "github_repository_file", + "name": "extra_files", + "index": ".TEMPLATE_SHA", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "autocreate_branch": false, + "autocreate_branch_source_branch": "main", + "autocreate_branch_source_sha": null, + "branch": "main", + "commit_author": null, + "commit_email": null, + "commit_message": "Add .TEMPLATE_SHA", + "commit_sha": "e6c49a76171963551fc922cc50d7e1abcd1bf7b6", + "content": "6073244fcae31ce1bab13a48119e8cc1054dd1cc", + "file": ".TEMPLATE_SHA", + "id": "aws-beanstalk-java/.TEMPLATE_SHA", + "overwrite_on_create": true, + "ref": "main", + "repository": "aws-beanstalk-java", + "sha": "a0a3e7c51948abeba3176af69e00f5f0d6fe86bd" + }, + "sensitive_values": {}, + "depends_on": [ + "module.elastic_beanstalk_java.data.github_ref.ref", + "module.elastic_beanstalk_java.data.github_repository.template_repo", + "module.elastic_beanstalk_java.github_repository.repo" + ] + } + ], + "address": "module.repo_list[\"aws-beanstalk-java\"]" + }, + { + "resources": [ + { + "address": "module.repo_list[\"aws-beanstalk-nodejs\"].data.github_user.pull_request_bypassers[\"arnol377\"]", + "mode": "data", + "type": "github_user", + "name": "pull_request_bypassers", + "index": "arnol377", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "avatar_url": "https://github.e.it.census.gov/avatars/u/549?", + "bio": "", + "blog": "", + "company": "", + "created_at": "2023-12-26 17:20:24 +0000 UTC", + "email": "", + "followers": 0, + "following": 0, + "gpg_keys": [], + "gravatar_id": "", + "id": "549", + "location": "", + "login": "arnol377", + "name": "David John Arnold Jr", + "node_id": "MDQ6VXNlcjU0OQ==", + "public_gists": 0, + "public_repos": 4, + "site_admin": false, + "ssh_keys": [ + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDBL3xJ3zSxE6Qv8k9b06oFB4dbq2+PiOmsnIfAgL2XZpEenD03jhCF28iAZVy9oovuBCbcyAE9BjTRdWFSjd1dmHthbGe5Jv0/DweNFB/YmX6wJ6knljTA3frkY9bVS9+rqY6N4GG3oG6lyyk7cBaUEagXF4VQQJqX4l7XG1xxUfKLFFhF3Lq+CDg39FwlKk+QxIWMrbRJdpRBDZ03VZnKcgP0m/5K8PrcyGbxOK8qeVREUaqvmQN2Rs4LD1REPZyr3GQ2gtgpqrJ3hym7TwJw3Xl5NW8Y7RAeENem2K3EKoq6qq/wB/YUqMhKD228w5J6B+CoI8nvDqAWZkNAz/uY/GJe4elRJCmFH2F+r3263R5oDnXWSluB7XIm3b+Xt24F8MwoltejSEma41c8FM/xbF3Kle8ofBGFPEXpNDAxICVbyZ6OE4TyqTGKA8xgg9vnR3hCGGERtLYHhPw0aVHY7Zew/6/QV9o6/reO96V92zpXVEpvO09Z40fvTd5cN68=", + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDXRnBg+dayTonnZY3i0dDEHXUFMhcJKtqiFO7Oe/ejasDeW2I+L0f1gg+7u1ms/g8E28/RARN3R1aMnbGvXWdP/yBrhtpWJc5TXK+f33S5lYYjptJ2F6vj7jiRU7pP4uL9wqknj0DoSD0krAEbA85mBJgIV1viL8ZBtT/8iBoD6kHGRXaHpRH5sIFaURRJCcUTJhdqMUPd6bYKE/Bc6ioQLAEow0JB4ju1jPa7fOxhgVrIYxRiMkismhR0WLopB5JxyYDNmIyjUL2vGt9Kpd41DELv+Pn7EaP2HLjubVruWFnxnhZ7nvQwMonnZvjD3f5yPkDUkWnwaVGqw8cm9PFM4buFRmGpsl8YqTFakYgqc+JVDQB8bb9a9sr5/6Hbn41VcXd+KV6dTMK4PKSQFKLaq54ExzlwnE/EHnduE8JgvsfAa316/etFlzTQOBv1KbL8RKK0/vy6wJpiK9laDbymsOJPjZekoc/TD1AIvfWF9oae6wAU86tBVGdEO/JMOMc=", + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCvlUlp/OjFsa4fINqqMXukveo+mCu0Ywp0wwVCURkfJpPFPMdmbp07WlULCX6VgmqH4joCA+LUyY+q6iBZw80lS66lpDcRHMTG4PV7IsPpoYN20bUnm30vdqug/P1wVDuOO9B83+s3QFeBl9WbHQB3YY5pBulZGLIGw26qrLwfM5UJ4P/Ffca7ca9PM7KEkwqOC9xMfJy3tFkzD2Rjo2AHN9s7xHtpf95m8MzToy1Q7ykU/8bhImOrkZKaJJtIfmykYhebKDpeETEWJiyyaubIl71KAsWacrvQnEfo2fe62kR3SGv2auPDxMaGKPqtDpe2e/Y9I85Fv3tfWk53DDFoZNzExT4jc825bCqqz2DBbz4Q/Miw3rcdHx7uaRHinEJsBveNhZSH31GMLtU/dVNF3TNhlEH62Zmjgu7IpWb6Tr/4KnLjf/0p7ye34jP49nv1iBj99j3p1hwgAGU56ag4j7TW/iMh+uH+pg1hm6xZjhFInZGzQqtMl/qjBlr1oJ8=", + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCNVaIVHzjCkmCyQnpHfgLLvPtc96PVg/+8/cT2ty6TFe3ALaZJSHTWXjOPJaSkhBef2PCmbcsd3+p+QDl87nRl9O5fV376mrGwsxlpI2a1FnzpBkAEpZ2KyE4B593xGlpmvrMOF9gY4qGdNHCXw2puZ/IkmYaiROYpL2ptiSfTGc1R/ZrEvs0fhYwyi4xYfb+iGVSvjhhTqzJYNW6IBmMZVbDCdYX+JvSKsZYydnkHg7d9QJORZ3TnPe3Tmnn+PAse9V0z9VKOScfoRNT+Co9ezLGWNY+Dnnwg0jouA76/CiIIjWunJzLsIeu7cqNwubKO8lsLX9O+6zKR46EEaVr1VoC395IPvBy8x+VWUSpI+M7GLh0iPE56EvwiVm8irTkmY6WPsQ8PMJ5IWZE/OA6w6fupiSgBd5myFpB/wa8yVdY+UPfh40HpEXt0+iPeWK9kz/fJQAgow/FJAAsnI65JdVP4woAUYnmoJ0l6qgDyFQbOxcq7NZdmedHtRz049hM=" + ], + "suspended_at": "0001-01-01 00:00:00 +0000 UTC", + "updated_at": "2024-09-19 17:49:11 +0000 UTC", + "username": "arnol377" + }, + "sensitive_values": { + "gpg_keys": [], + "ssh_keys": [ + false, + false, + false, + false + ] + } + }, + { + "address": "module.repo_list[\"aws-beanstalk-nodejs\"].data.github_user.pull_request_bypassers[\"gomez385\"]", + "mode": "data", + "type": "github_user", + "name": "pull_request_bypassers", + "index": "gomez385", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "avatar_url": "https://github.e.it.census.gov/avatars/u/603?", + "bio": "", + "blog": "", + "company": "", + "created_at": "2024-06-13 14:57:04 +0000 UTC", + "email": "", + "followers": 0, + "following": 1, + "gpg_keys": [], + "gravatar_id": "", + "id": "603", + "location": "", + "login": "gomez385", + "name": "James Farr Gomez", + "node_id": "MDQ6VXNlcjYwMw==", + "public_gists": 0, + "public_repos": 0, + "site_admin": false, + "ssh_keys": [ + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDuGCb6WHZ8kex7gawtk2pmHd8t77HQ0LE+7sanVKoC5cWC/7RlefKBuH5c8F2RmmB1EaVFT2ylCsR0qnPT8xGH7gjrkRs/B8LAcwvXifev1BkPSE1gJT+lQpnwPkfqBuCbsewOR1XyPqQt5SZh4a9w7GDvBsfO2Ate9ADtX0nsI76t2DURR32ptBKnN2TtYqnD5D3VKV2lhiI2tnz8sO5FZzYycCONsv570N/itwT34gKSLVRsj+0YmPjmOU+7JWpXxdtjocw06ZEGnSyInIH4VJVROE0p3Z63xHQ9fxDtnW71zf0a9UeoY5Vb/b7PbK4NF3Dp9gG8iaL9dqeiZ1XTCcXHDyHGVFej3sl0CkB+BQ/Gz9ZCqkSBcA+n9WA5KclNuOMwe4eLXRwg/gxxmAJB707gXUk+nSPGwYTObtm0+lfspCNQxAFry8gX39mdVqnaCz1agzmwZo7rRls+BZPfDPg3YUkB3v9P8y/cbO6Bn5IRmYB2KQ73E7X8QJcW0+E=", + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQDROzDzCBisy3+PvtvvCt7XxuEpNAwBS6SoK2wKJNnGgYPs8zInboOVZWqRXujOWOySPCloBfYU5B2eg94cVoDnTnc9dArWhBOK0aY93XM7/0s3/01w3Kkyi25oJytr0NRI8liZq6DnF9hFiqxRVcJkoS4+I9t9G3MURjVbcNY10+bIs6Dp9sbnJaJEWvvsbAiz1WdZBAsF3eW20mNkzmQtYoASHWv3AD/j+xLRYvx2sVcPXIGQ4fw3FqQIUOkbVQUW2lCBp+BVZgR1U4dKh5lejddxd7bXblWxJ5qqWPXulqCnUrJBBTWxTPrUxBzcZtxLAj8C04PyZPJYWVVbhuxkMgA7VeUHeZ/iFT6LZeqVtwTDlEPCzShCdIC0JWKzxI+I663YeSf2y1Jh3qT/R+e0qcduEmL3bdE+PyyvQks8WCXVfXtJeHQfkPKcy9gARpQScY/6vSyZbJNfIW1VagCCRZp54AzOlhKTUy2r97zlrzB9gBPU2ycbmLFYOglVrw6Fo6ECV8slQIxuz0lS0RbEI/+c9jWxKqcSrb0zCEgoL+HEdGaElTRENPhApPXZO+YlFZkg9NY9t+uGWCu2xPgSiR2fn44QzfWypxCq05G0fNRQRRIuMnpjkXlv66O/hju+xMTG1fVyKSKq5CA1bDdDn9euZ7Q6OAFsQX73hdYn6Q==" + ], + "suspended_at": "0001-01-01 00:00:00 +0000 UTC", + "updated_at": "2024-09-26 18:00:48 +0000 UTC", + "username": "gomez385" + }, + "sensitive_values": { + "gpg_keys": [], + "ssh_keys": [ + false, + false + ] + } + }, + { + "address": "module.repo_list[\"aws-beanstalk-nodejs\"].github_repository.repo", + "mode": "managed", + "type": "github_repository", + "name": "repo", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 1, + "values": { + "allow_auto_merge": false, + "allow_merge_commit": false, + "allow_rebase_merge": false, + "allow_squash_merge": true, + "allow_update_branch": false, + "archive_on_destroy": true, + "archived": false, + "auto_init": true, + "default_branch": "main", + "delete_branch_on_merge": true, + "description": "Terraform Workspace for creating Elastic Beanstalk Apps and Environments", + "etag": "W/\"7cdc2bc273e5df0b4780256a67b50186759e79ca2e4d78609d6c6d5aef888c5f\"", + "full_name": "CSVD/aws-beanstalk-nodejs", + "git_clone_url": "git://github.e.it.census.gov/CSVD/aws-beanstalk-nodejs.git", + "gitignore_template": "", + "has_discussions": false, + "has_downloads": false, + "has_issues": true, + "has_projects": true, + "has_wiki": true, + "homepage_url": "", + "html_url": "https://github.e.it.census.gov/CSVD/aws-beanstalk-nodejs", + "http_clone_url": "https://github.e.it.census.gov/CSVD/aws-beanstalk-nodejs.git", + "id": "aws-beanstalk-nodejs", + "ignore_vulnerability_alerts_during_read": null, + "is_template": true, + "license_template": null, + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "name": "aws-beanstalk-nodejs", + "node_id": "MDEwOlJlcG9zaXRvcnk5NDc=", + "pages": [], + "primary_language": "HCL", + "private": true, + "repo_id": 947, + "security_and_analysis": [ + { + "advanced_security": [ + { + "status": "disabled" + } + ], + "secret_scanning": [ + { + "status": "disabled" + } + ], + "secret_scanning_push_protection": [ + { + "status": "disabled" + } + ] + } + ], + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "ssh_clone_url": "git@github.e.it.census.gov:CSVD/aws-beanstalk-nodejs.git", + "svn_url": "https://github.e.it.census.gov/CSVD/aws-beanstalk-nodejs", + "template": [ + { + "include_all_branches": false, + "owner": "CSVD", + "repository": "aws-beanstalk" + } + ], + "topics": [ + "terraform" + ], + "visibility": "private", + "vulnerability_alerts": false, + "web_commit_signoff_required": false + }, + "sensitive_values": { + "pages": [], + "security_and_analysis": [ + { + "advanced_security": [ + {} + ], + "secret_scanning": [ + {} + ], + "secret_scanning_push_protection": [ + {} + ] + } + ], + "template": [ + {} + ], + "topics": [ + false + ] + } + }, + { + "address": "module.repo_list[\"aws-beanstalk-nodejs\"].github_repository_collaborator.collaborators[\"gomez385\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "gomez385", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "aws-beanstalk-nodejs:gomez385", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "aws-beanstalk-nodejs", + "username": "gomez385" + }, + "sensitive_values": {}, + "depends_on": [ + "module.repo_list.github_repository.repo" + ] + }, + { + "address": "module.repo_list[\"aws-beanstalk-nodejs\"].github_repository_collaborator.collaborators[\"morga471\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "morga471", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "aws-beanstalk-nodejs:morga471", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "aws-beanstalk-nodejs", + "username": "morga471" + }, + "sensitive_values": {}, + "depends_on": [ + "module.repo_list.github_repository.repo" + ] + }, + { + "address": "module.repo_list[\"aws-beanstalk-nodejs\"].github_repository_collaborator.collaborators[\"naray007\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "naray007", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "aws-beanstalk-nodejs:naray007", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "aws-beanstalk-nodejs", + "username": "naray007" + }, + "sensitive_values": {}, + "depends_on": [ + "module.repo_list.github_repository.repo" + ] + }, + { + "address": "module.repo_list[\"aws-beanstalk-nodejs\"].github_repository_file.extra_files[\".TEMPLATE_SHA\"]", + "mode": "managed", + "type": "github_repository_file", + "name": "extra_files", + "index": ".TEMPLATE_SHA", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "autocreate_branch": false, + "autocreate_branch_source_branch": "main", + "autocreate_branch_source_sha": null, + "branch": "main", + "commit_author": null, + "commit_email": null, + "commit_message": "Add .TEMPLATE_SHA", + "commit_sha": "aca83a9d09583cdd1958867fc871aa3f037b0e5a", + "content": "6073244fcae31ce1bab13a48119e8cc1054dd1cc", + "file": ".TEMPLATE_SHA", + "id": "aws-beanstalk-nodejs/.TEMPLATE_SHA", + "overwrite_on_create": true, + "ref": "main", + "repository": "aws-beanstalk-nodejs", + "sha": "a0a3e7c51948abeba3176af69e00f5f0d6fe86bd" + }, + "sensitive_values": {}, + "depends_on": [ + "module.elastic_beanstalk_nodejs.data.github_ref.ref", + "module.elastic_beanstalk_nodejs.data.github_repository.template_repo", + "module.elastic_beanstalk_nodejs.github_repository.repo" + ] + } + ], + "address": "module.repo_list[\"aws-beanstalk-nodejs\"]" + }, + { + "resources": [ + { + "address": "module.repo_list[\"aws-beanstalk-php\"].data.github_user.pull_request_bypassers[\"arnol377\"]", + "mode": "data", + "type": "github_user", + "name": "pull_request_bypassers", + "index": "arnol377", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "avatar_url": "https://github.e.it.census.gov/avatars/u/549?", + "bio": "", + "blog": "", + "company": "", + "created_at": "2023-12-26 17:20:24 +0000 UTC", + "email": "", + "followers": 0, + "following": 0, + "gpg_keys": [], + "gravatar_id": "", + "id": "549", + "location": "", + "login": "arnol377", + "name": "David John Arnold Jr", + "node_id": "MDQ6VXNlcjU0OQ==", + "public_gists": 0, + "public_repos": 4, + "site_admin": false, + "ssh_keys": [ + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDBL3xJ3zSxE6Qv8k9b06oFB4dbq2+PiOmsnIfAgL2XZpEenD03jhCF28iAZVy9oovuBCbcyAE9BjTRdWFSjd1dmHthbGe5Jv0/DweNFB/YmX6wJ6knljTA3frkY9bVS9+rqY6N4GG3oG6lyyk7cBaUEagXF4VQQJqX4l7XG1xxUfKLFFhF3Lq+CDg39FwlKk+QxIWMrbRJdpRBDZ03VZnKcgP0m/5K8PrcyGbxOK8qeVREUaqvmQN2Rs4LD1REPZyr3GQ2gtgpqrJ3hym7TwJw3Xl5NW8Y7RAeENem2K3EKoq6qq/wB/YUqMhKD228w5J6B+CoI8nvDqAWZkNAz/uY/GJe4elRJCmFH2F+r3263R5oDnXWSluB7XIm3b+Xt24F8MwoltejSEma41c8FM/xbF3Kle8ofBGFPEXpNDAxICVbyZ6OE4TyqTGKA8xgg9vnR3hCGGERtLYHhPw0aVHY7Zew/6/QV9o6/reO96V92zpXVEpvO09Z40fvTd5cN68=", + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDXRnBg+dayTonnZY3i0dDEHXUFMhcJKtqiFO7Oe/ejasDeW2I+L0f1gg+7u1ms/g8E28/RARN3R1aMnbGvXWdP/yBrhtpWJc5TXK+f33S5lYYjptJ2F6vj7jiRU7pP4uL9wqknj0DoSD0krAEbA85mBJgIV1viL8ZBtT/8iBoD6kHGRXaHpRH5sIFaURRJCcUTJhdqMUPd6bYKE/Bc6ioQLAEow0JB4ju1jPa7fOxhgVrIYxRiMkismhR0WLopB5JxyYDNmIyjUL2vGt9Kpd41DELv+Pn7EaP2HLjubVruWFnxnhZ7nvQwMonnZvjD3f5yPkDUkWnwaVGqw8cm9PFM4buFRmGpsl8YqTFakYgqc+JVDQB8bb9a9sr5/6Hbn41VcXd+KV6dTMK4PKSQFKLaq54ExzlwnE/EHnduE8JgvsfAa316/etFlzTQOBv1KbL8RKK0/vy6wJpiK9laDbymsOJPjZekoc/TD1AIvfWF9oae6wAU86tBVGdEO/JMOMc=", + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCvlUlp/OjFsa4fINqqMXukveo+mCu0Ywp0wwVCURkfJpPFPMdmbp07WlULCX6VgmqH4joCA+LUyY+q6iBZw80lS66lpDcRHMTG4PV7IsPpoYN20bUnm30vdqug/P1wVDuOO9B83+s3QFeBl9WbHQB3YY5pBulZGLIGw26qrLwfM5UJ4P/Ffca7ca9PM7KEkwqOC9xMfJy3tFkzD2Rjo2AHN9s7xHtpf95m8MzToy1Q7ykU/8bhImOrkZKaJJtIfmykYhebKDpeETEWJiyyaubIl71KAsWacrvQnEfo2fe62kR3SGv2auPDxMaGKPqtDpe2e/Y9I85Fv3tfWk53DDFoZNzExT4jc825bCqqz2DBbz4Q/Miw3rcdHx7uaRHinEJsBveNhZSH31GMLtU/dVNF3TNhlEH62Zmjgu7IpWb6Tr/4KnLjf/0p7ye34jP49nv1iBj99j3p1hwgAGU56ag4j7TW/iMh+uH+pg1hm6xZjhFInZGzQqtMl/qjBlr1oJ8=", + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCNVaIVHzjCkmCyQnpHfgLLvPtc96PVg/+8/cT2ty6TFe3ALaZJSHTWXjOPJaSkhBef2PCmbcsd3+p+QDl87nRl9O5fV376mrGwsxlpI2a1FnzpBkAEpZ2KyE4B593xGlpmvrMOF9gY4qGdNHCXw2puZ/IkmYaiROYpL2ptiSfTGc1R/ZrEvs0fhYwyi4xYfb+iGVSvjhhTqzJYNW6IBmMZVbDCdYX+JvSKsZYydnkHg7d9QJORZ3TnPe3Tmnn+PAse9V0z9VKOScfoRNT+Co9ezLGWNY+Dnnwg0jouA76/CiIIjWunJzLsIeu7cqNwubKO8lsLX9O+6zKR46EEaVr1VoC395IPvBy8x+VWUSpI+M7GLh0iPE56EvwiVm8irTkmY6WPsQ8PMJ5IWZE/OA6w6fupiSgBd5myFpB/wa8yVdY+UPfh40HpEXt0+iPeWK9kz/fJQAgow/FJAAsnI65JdVP4woAUYnmoJ0l6qgDyFQbOxcq7NZdmedHtRz049hM=" + ], + "suspended_at": "0001-01-01 00:00:00 +0000 UTC", + "updated_at": "2024-09-19 17:49:11 +0000 UTC", + "username": "arnol377" + }, + "sensitive_values": { + "gpg_keys": [], + "ssh_keys": [ + false, + false, + false, + false + ] + } + }, + { + "address": "module.repo_list[\"aws-beanstalk-php\"].data.github_user.pull_request_bypassers[\"gomez385\"]", + "mode": "data", + "type": "github_user", + "name": "pull_request_bypassers", + "index": "gomez385", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "avatar_url": "https://github.e.it.census.gov/avatars/u/603?", + "bio": "", + "blog": "", + "company": "", + "created_at": "2024-06-13 14:57:04 +0000 UTC", + "email": "", + "followers": 0, + "following": 1, + "gpg_keys": [], + "gravatar_id": "", + "id": "603", + "location": "", + "login": "gomez385", + "name": "James Farr Gomez", + "node_id": "MDQ6VXNlcjYwMw==", + "public_gists": 0, + "public_repos": 0, + "site_admin": false, + "ssh_keys": [ + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDuGCb6WHZ8kex7gawtk2pmHd8t77HQ0LE+7sanVKoC5cWC/7RlefKBuH5c8F2RmmB1EaVFT2ylCsR0qnPT8xGH7gjrkRs/B8LAcwvXifev1BkPSE1gJT+lQpnwPkfqBuCbsewOR1XyPqQt5SZh4a9w7GDvBsfO2Ate9ADtX0nsI76t2DURR32ptBKnN2TtYqnD5D3VKV2lhiI2tnz8sO5FZzYycCONsv570N/itwT34gKSLVRsj+0YmPjmOU+7JWpXxdtjocw06ZEGnSyInIH4VJVROE0p3Z63xHQ9fxDtnW71zf0a9UeoY5Vb/b7PbK4NF3Dp9gG8iaL9dqeiZ1XTCcXHDyHGVFej3sl0CkB+BQ/Gz9ZCqkSBcA+n9WA5KclNuOMwe4eLXRwg/gxxmAJB707gXUk+nSPGwYTObtm0+lfspCNQxAFry8gX39mdVqnaCz1agzmwZo7rRls+BZPfDPg3YUkB3v9P8y/cbO6Bn5IRmYB2KQ73E7X8QJcW0+E=", + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQDROzDzCBisy3+PvtvvCt7XxuEpNAwBS6SoK2wKJNnGgYPs8zInboOVZWqRXujOWOySPCloBfYU5B2eg94cVoDnTnc9dArWhBOK0aY93XM7/0s3/01w3Kkyi25oJytr0NRI8liZq6DnF9hFiqxRVcJkoS4+I9t9G3MURjVbcNY10+bIs6Dp9sbnJaJEWvvsbAiz1WdZBAsF3eW20mNkzmQtYoASHWv3AD/j+xLRYvx2sVcPXIGQ4fw3FqQIUOkbVQUW2lCBp+BVZgR1U4dKh5lejddxd7bXblWxJ5qqWPXulqCnUrJBBTWxTPrUxBzcZtxLAj8C04PyZPJYWVVbhuxkMgA7VeUHeZ/iFT6LZeqVtwTDlEPCzShCdIC0JWKzxI+I663YeSf2y1Jh3qT/R+e0qcduEmL3bdE+PyyvQks8WCXVfXtJeHQfkPKcy9gARpQScY/6vSyZbJNfIW1VagCCRZp54AzOlhKTUy2r97zlrzB9gBPU2ycbmLFYOglVrw6Fo6ECV8slQIxuz0lS0RbEI/+c9jWxKqcSrb0zCEgoL+HEdGaElTRENPhApPXZO+YlFZkg9NY9t+uGWCu2xPgSiR2fn44QzfWypxCq05G0fNRQRRIuMnpjkXlv66O/hju+xMTG1fVyKSKq5CA1bDdDn9euZ7Q6OAFsQX73hdYn6Q==" + ], + "suspended_at": "0001-01-01 00:00:00 +0000 UTC", + "updated_at": "2024-09-26 18:00:48 +0000 UTC", + "username": "gomez385" + }, + "sensitive_values": { + "gpg_keys": [], + "ssh_keys": [ + false, + false + ] + } + }, + { + "address": "module.repo_list[\"aws-beanstalk-php\"].github_repository.repo", + "mode": "managed", + "type": "github_repository", + "name": "repo", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 1, + "values": { + "allow_auto_merge": false, + "allow_merge_commit": false, + "allow_rebase_merge": false, + "allow_squash_merge": true, + "allow_update_branch": false, + "archive_on_destroy": true, + "archived": false, + "auto_init": true, + "default_branch": "main", + "delete_branch_on_merge": true, + "description": "Terraform Workspace for creating Elastic Beanstalk Apps and Environments", + "etag": "W/\"0b94bea58d6ae35c2c9bf27b64294eac11480e949685d284c7433ed5cc6989f4\"", + "full_name": "CSVD/aws-beanstalk-php", + "git_clone_url": "git://github.e.it.census.gov/CSVD/aws-beanstalk-php.git", + "gitignore_template": "", + "has_discussions": false, + "has_downloads": false, + "has_issues": true, + "has_projects": true, + "has_wiki": true, + "homepage_url": "", + "html_url": "https://github.e.it.census.gov/CSVD/aws-beanstalk-php", + "http_clone_url": "https://github.e.it.census.gov/CSVD/aws-beanstalk-php.git", + "id": "aws-beanstalk-php", + "ignore_vulnerability_alerts_during_read": null, + "is_template": true, + "license_template": null, + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "name": "aws-beanstalk-php", + "node_id": "MDEwOlJlcG9zaXRvcnk5NTg=", + "pages": [], + "primary_language": "HCL", + "private": true, + "repo_id": 958, + "security_and_analysis": [ + { + "advanced_security": [ + { + "status": "disabled" + } + ], + "secret_scanning": [ + { + "status": "disabled" + } + ], + "secret_scanning_push_protection": [ + { + "status": "disabled" + } + ] + } + ], + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "ssh_clone_url": "git@github.e.it.census.gov:CSVD/aws-beanstalk-php.git", + "svn_url": "https://github.e.it.census.gov/CSVD/aws-beanstalk-php", + "template": [ + { + "include_all_branches": false, + "owner": "CSVD", + "repository": "aws-beanstalk" + } + ], + "topics": [ + "terraform" + ], + "visibility": "private", + "vulnerability_alerts": false, + "web_commit_signoff_required": false + }, + "sensitive_values": { + "pages": [], + "security_and_analysis": [ + { + "advanced_security": [ + {} + ], + "secret_scanning": [ + {} + ], + "secret_scanning_push_protection": [ + {} + ] + } + ], + "template": [ + {} + ], + "topics": [ + false + ] + } + }, + { + "address": "module.repo_list[\"aws-beanstalk-php\"].github_repository_collaborator.collaborators[\"gomez385\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "gomez385", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "aws-beanstalk-php:gomez385", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "aws-beanstalk-php", + "username": "gomez385" + }, + "sensitive_values": {}, + "depends_on": [ + "module.repo_list.github_repository.repo" + ] + }, + { + "address": "module.repo_list[\"aws-beanstalk-php\"].github_repository_collaborator.collaborators[\"morga471\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "morga471", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "aws-beanstalk-php:morga471", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "aws-beanstalk-php", + "username": "morga471" + }, + "sensitive_values": {}, + "depends_on": [ + "module.repo_list.github_repository.repo" + ] + }, + { + "address": "module.repo_list[\"aws-beanstalk-php\"].github_repository_collaborator.collaborators[\"naray007\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "naray007", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "aws-beanstalk-php:naray007", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "aws-beanstalk-php", + "username": "naray007" + }, + "sensitive_values": {}, + "depends_on": [ + "module.repo_list.github_repository.repo" + ] + }, + { + "address": "module.repo_list[\"aws-beanstalk-php\"].github_repository_file.extra_files[\".TEMPLATE_SHA\"]", + "mode": "managed", + "type": "github_repository_file", + "name": "extra_files", + "index": ".TEMPLATE_SHA", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "autocreate_branch": false, + "autocreate_branch_source_branch": "main", + "autocreate_branch_source_sha": null, + "branch": "main", + "commit_author": null, + "commit_email": null, + "commit_message": "Add .TEMPLATE_SHA", + "commit_sha": "c1495bda72665be16ddc910173b69ec6128f437e", + "content": "6073244fcae31ce1bab13a48119e8cc1054dd1cc", + "file": ".TEMPLATE_SHA", + "id": "aws-beanstalk-php/.TEMPLATE_SHA", + "overwrite_on_create": true, + "ref": "main", + "repository": "aws-beanstalk-php", + "sha": "a0a3e7c51948abeba3176af69e00f5f0d6fe86bd" + }, + "sensitive_values": {}, + "depends_on": [ + "module.elastic_beanstalk_php.data.github_ref.ref", + "module.elastic_beanstalk_php.data.github_repository.template_repo", + "module.elastic_beanstalk_php.github_repository.repo" + ] + } + ], + "address": "module.repo_list[\"aws-beanstalk-php\"]" + }, + { + "resources": [ + { + "address": "module.repo_list[\"aws-copilot-demo\"].data.github_user.pull_request_bypassers[\"arnol377\"]", + "mode": "data", + "type": "github_user", + "name": "pull_request_bypassers", + "index": "arnol377", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "avatar_url": "https://github.e.it.census.gov/avatars/u/549?", + "bio": "", + "blog": "", + "company": "", + "created_at": "2023-12-26 17:20:24 +0000 UTC", + "email": "", + "followers": 0, + "following": 0, + "gpg_keys": [], + "gravatar_id": "", + "id": "549", + "location": "", + "login": "arnol377", + "name": "David John Arnold Jr", + "node_id": "MDQ6VXNlcjU0OQ==", + "public_gists": 0, + "public_repos": 4, + "site_admin": false, + "ssh_keys": [ + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDBL3xJ3zSxE6Qv8k9b06oFB4dbq2+PiOmsnIfAgL2XZpEenD03jhCF28iAZVy9oovuBCbcyAE9BjTRdWFSjd1dmHthbGe5Jv0/DweNFB/YmX6wJ6knljTA3frkY9bVS9+rqY6N4GG3oG6lyyk7cBaUEagXF4VQQJqX4l7XG1xxUfKLFFhF3Lq+CDg39FwlKk+QxIWMrbRJdpRBDZ03VZnKcgP0m/5K8PrcyGbxOK8qeVREUaqvmQN2Rs4LD1REPZyr3GQ2gtgpqrJ3hym7TwJw3Xl5NW8Y7RAeENem2K3EKoq6qq/wB/YUqMhKD228w5J6B+CoI8nvDqAWZkNAz/uY/GJe4elRJCmFH2F+r3263R5oDnXWSluB7XIm3b+Xt24F8MwoltejSEma41c8FM/xbF3Kle8ofBGFPEXpNDAxICVbyZ6OE4TyqTGKA8xgg9vnR3hCGGERtLYHhPw0aVHY7Zew/6/QV9o6/reO96V92zpXVEpvO09Z40fvTd5cN68=", + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDXRnBg+dayTonnZY3i0dDEHXUFMhcJKtqiFO7Oe/ejasDeW2I+L0f1gg+7u1ms/g8E28/RARN3R1aMnbGvXWdP/yBrhtpWJc5TXK+f33S5lYYjptJ2F6vj7jiRU7pP4uL9wqknj0DoSD0krAEbA85mBJgIV1viL8ZBtT/8iBoD6kHGRXaHpRH5sIFaURRJCcUTJhdqMUPd6bYKE/Bc6ioQLAEow0JB4ju1jPa7fOxhgVrIYxRiMkismhR0WLopB5JxyYDNmIyjUL2vGt9Kpd41DELv+Pn7EaP2HLjubVruWFnxnhZ7nvQwMonnZvjD3f5yPkDUkWnwaVGqw8cm9PFM4buFRmGpsl8YqTFakYgqc+JVDQB8bb9a9sr5/6Hbn41VcXd+KV6dTMK4PKSQFKLaq54ExzlwnE/EHnduE8JgvsfAa316/etFlzTQOBv1KbL8RKK0/vy6wJpiK9laDbymsOJPjZekoc/TD1AIvfWF9oae6wAU86tBVGdEO/JMOMc=", + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCvlUlp/OjFsa4fINqqMXukveo+mCu0Ywp0wwVCURkfJpPFPMdmbp07WlULCX6VgmqH4joCA+LUyY+q6iBZw80lS66lpDcRHMTG4PV7IsPpoYN20bUnm30vdqug/P1wVDuOO9B83+s3QFeBl9WbHQB3YY5pBulZGLIGw26qrLwfM5UJ4P/Ffca7ca9PM7KEkwqOC9xMfJy3tFkzD2Rjo2AHN9s7xHtpf95m8MzToy1Q7ykU/8bhImOrkZKaJJtIfmykYhebKDpeETEWJiyyaubIl71KAsWacrvQnEfo2fe62kR3SGv2auPDxMaGKPqtDpe2e/Y9I85Fv3tfWk53DDFoZNzExT4jc825bCqqz2DBbz4Q/Miw3rcdHx7uaRHinEJsBveNhZSH31GMLtU/dVNF3TNhlEH62Zmjgu7IpWb6Tr/4KnLjf/0p7ye34jP49nv1iBj99j3p1hwgAGU56ag4j7TW/iMh+uH+pg1hm6xZjhFInZGzQqtMl/qjBlr1oJ8=", + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCNVaIVHzjCkmCyQnpHfgLLvPtc96PVg/+8/cT2ty6TFe3ALaZJSHTWXjOPJaSkhBef2PCmbcsd3+p+QDl87nRl9O5fV376mrGwsxlpI2a1FnzpBkAEpZ2KyE4B593xGlpmvrMOF9gY4qGdNHCXw2puZ/IkmYaiROYpL2ptiSfTGc1R/ZrEvs0fhYwyi4xYfb+iGVSvjhhTqzJYNW6IBmMZVbDCdYX+JvSKsZYydnkHg7d9QJORZ3TnPe3Tmnn+PAse9V0z9VKOScfoRNT+Co9ezLGWNY+Dnnwg0jouA76/CiIIjWunJzLsIeu7cqNwubKO8lsLX9O+6zKR46EEaVr1VoC395IPvBy8x+VWUSpI+M7GLh0iPE56EvwiVm8irTkmY6WPsQ8PMJ5IWZE/OA6w6fupiSgBd5myFpB/wa8yVdY+UPfh40HpEXt0+iPeWK9kz/fJQAgow/FJAAsnI65JdVP4woAUYnmoJ0l6qgDyFQbOxcq7NZdmedHtRz049hM=" + ], + "suspended_at": "0001-01-01 00:00:00 +0000 UTC", + "updated_at": "2024-09-19 17:49:11 +0000 UTC", + "username": "arnol377" + }, + "sensitive_values": { + "gpg_keys": [], + "ssh_keys": [ + false, + false, + false, + false + ] + } + }, + { + "address": "module.repo_list[\"aws-copilot-demo\"].data.github_user.pull_request_bypassers[\"gomez385\"]", + "mode": "data", + "type": "github_user", + "name": "pull_request_bypassers", + "index": "gomez385", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "avatar_url": "https://github.e.it.census.gov/avatars/u/603?", + "bio": "", + "blog": "", + "company": "", + "created_at": "2024-06-13 14:57:04 +0000 UTC", + "email": "", + "followers": 0, + "following": 1, + "gpg_keys": [], + "gravatar_id": "", + "id": "603", + "location": "", + "login": "gomez385", + "name": "James Farr Gomez", + "node_id": "MDQ6VXNlcjYwMw==", + "public_gists": 0, + "public_repos": 0, + "site_admin": false, + "ssh_keys": [ + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDuGCb6WHZ8kex7gawtk2pmHd8t77HQ0LE+7sanVKoC5cWC/7RlefKBuH5c8F2RmmB1EaVFT2ylCsR0qnPT8xGH7gjrkRs/B8LAcwvXifev1BkPSE1gJT+lQpnwPkfqBuCbsewOR1XyPqQt5SZh4a9w7GDvBsfO2Ate9ADtX0nsI76t2DURR32ptBKnN2TtYqnD5D3VKV2lhiI2tnz8sO5FZzYycCONsv570N/itwT34gKSLVRsj+0YmPjmOU+7JWpXxdtjocw06ZEGnSyInIH4VJVROE0p3Z63xHQ9fxDtnW71zf0a9UeoY5Vb/b7PbK4NF3Dp9gG8iaL9dqeiZ1XTCcXHDyHGVFej3sl0CkB+BQ/Gz9ZCqkSBcA+n9WA5KclNuOMwe4eLXRwg/gxxmAJB707gXUk+nSPGwYTObtm0+lfspCNQxAFry8gX39mdVqnaCz1agzmwZo7rRls+BZPfDPg3YUkB3v9P8y/cbO6Bn5IRmYB2KQ73E7X8QJcW0+E=", + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQDROzDzCBisy3+PvtvvCt7XxuEpNAwBS6SoK2wKJNnGgYPs8zInboOVZWqRXujOWOySPCloBfYU5B2eg94cVoDnTnc9dArWhBOK0aY93XM7/0s3/01w3Kkyi25oJytr0NRI8liZq6DnF9hFiqxRVcJkoS4+I9t9G3MURjVbcNY10+bIs6Dp9sbnJaJEWvvsbAiz1WdZBAsF3eW20mNkzmQtYoASHWv3AD/j+xLRYvx2sVcPXIGQ4fw3FqQIUOkbVQUW2lCBp+BVZgR1U4dKh5lejddxd7bXblWxJ5qqWPXulqCnUrJBBTWxTPrUxBzcZtxLAj8C04PyZPJYWVVbhuxkMgA7VeUHeZ/iFT6LZeqVtwTDlEPCzShCdIC0JWKzxI+I663YeSf2y1Jh3qT/R+e0qcduEmL3bdE+PyyvQks8WCXVfXtJeHQfkPKcy9gARpQScY/6vSyZbJNfIW1VagCCRZp54AzOlhKTUy2r97zlrzB9gBPU2ycbmLFYOglVrw6Fo6ECV8slQIxuz0lS0RbEI/+c9jWxKqcSrb0zCEgoL+HEdGaElTRENPhApPXZO+YlFZkg9NY9t+uGWCu2xPgSiR2fn44QzfWypxCq05G0fNRQRRIuMnpjkXlv66O/hju+xMTG1fVyKSKq5CA1bDdDn9euZ7Q6OAFsQX73hdYn6Q==" + ], + "suspended_at": "0001-01-01 00:00:00 +0000 UTC", + "updated_at": "2024-09-26 18:00:48 +0000 UTC", + "username": "gomez385" + }, + "sensitive_values": { + "gpg_keys": [], + "ssh_keys": [ + false, + false + ] + } + }, + { + "address": "module.repo_list[\"aws-copilot-demo\"].github_repository.repo", + "mode": "managed", + "type": "github_repository", + "name": "repo", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 1, + "values": { + "allow_auto_merge": false, + "allow_merge_commit": false, + "allow_rebase_merge": false, + "allow_squash_merge": true, + "allow_update_branch": false, + "archive_on_destroy": true, + "archived": false, + "auto_init": true, + "default_branch": "main", + "delete_branch_on_merge": true, + "description": "AWS Copilot Demo", + "etag": "W/\"024c0bb47fa2fe355d730fbd87091d26b27cd111c8f451cd5424288f743b1bb9\"", + "full_name": "CSVD/aws-copilot-demo", + "git_clone_url": "git://github.e.it.census.gov/CSVD/aws-copilot-demo.git", + "gitignore_template": null, + "has_discussions": false, + "has_downloads": false, + "has_issues": true, + "has_projects": true, + "has_wiki": true, + "homepage_url": "", + "html_url": "https://github.e.it.census.gov/CSVD/aws-copilot-demo", + "http_clone_url": "https://github.e.it.census.gov/CSVD/aws-copilot-demo.git", + "id": "aws-copilot-demo", + "ignore_vulnerability_alerts_during_read": null, + "is_template": false, + "license_template": null, + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "name": "aws-copilot-demo", + "node_id": "MDEwOlJlcG9zaXRvcnkxMjM0", + "pages": [], + "primary_language": "HCL", + "private": false, + "repo_id": 1234, + "security_and_analysis": [ + { + "advanced_security": [ + { + "status": "disabled" + } + ], + "secret_scanning": [ + { + "status": "disabled" + } + ], + "secret_scanning_push_protection": [ + { + "status": "disabled" + } + ] + } + ], + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "ssh_clone_url": "git@github.e.it.census.gov:CSVD/aws-copilot-demo.git", + "svn_url": "https://github.e.it.census.gov/CSVD/aws-copilot-demo", + "template": [], + "topics": [ + "aws-cdk", + "aws-copilot" + ], + "visibility": "public", + "vulnerability_alerts": false, + "web_commit_signoff_required": false + }, + "sensitive_values": { + "pages": [], + "security_and_analysis": [ + { + "advanced_security": [ + {} + ], + "secret_scanning": [ + {} + ], + "secret_scanning_push_protection": [ + {} + ] + } + ], + "template": [], + "topics": [ + false, + false + ] + } + }, + { + "address": "module.repo_list[\"aws-copilot-demo\"].github_repository_collaborator.collaborators[\"gomez385\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "gomez385", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "aws-copilot-demo:gomez385", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "aws-copilot-demo", + "username": "gomez385" + }, + "sensitive_values": {}, + "depends_on": [ + "module.repo_list.github_repository.repo" + ] + }, + { + "address": "module.repo_list[\"aws-copilot-demo\"].github_repository_collaborator.collaborators[\"morga471\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "morga471", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "aws-copilot-demo:morga471", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "aws-copilot-demo", + "username": "morga471" + }, + "sensitive_values": {}, + "depends_on": [ + "module.repo_list.github_repository.repo" + ] + }, + { + "address": "module.repo_list[\"aws-copilot-demo\"].github_repository_collaborator.collaborators[\"naray007\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "naray007", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "aws-copilot-demo:naray007", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "aws-copilot-demo", + "username": "naray007" + }, + "sensitive_values": {}, + "depends_on": [ + "module.repo_list.github_repository.repo" + ] + } + ], + "address": "module.repo_list[\"aws-copilot-demo\"]" + }, + { + "resources": [ + { + "address": "module.repo_list[\"aws-image-pipeline\"].data.github_user.pull_request_bypassers[\"arnol377\"]", + "mode": "data", + "type": "github_user", + "name": "pull_request_bypassers", + "index": "arnol377", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "avatar_url": "https://github.e.it.census.gov/avatars/u/549?", + "bio": "", + "blog": "", + "company": "", + "created_at": "2023-12-26 17:20:24 +0000 UTC", + "email": "", + "followers": 0, + "following": 0, + "gpg_keys": [], + "gravatar_id": "", + "id": "549", + "location": "", + "login": "arnol377", + "name": "David John Arnold Jr", + "node_id": "MDQ6VXNlcjU0OQ==", + "public_gists": 0, + "public_repos": 4, + "site_admin": false, + "ssh_keys": [ + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDBL3xJ3zSxE6Qv8k9b06oFB4dbq2+PiOmsnIfAgL2XZpEenD03jhCF28iAZVy9oovuBCbcyAE9BjTRdWFSjd1dmHthbGe5Jv0/DweNFB/YmX6wJ6knljTA3frkY9bVS9+rqY6N4GG3oG6lyyk7cBaUEagXF4VQQJqX4l7XG1xxUfKLFFhF3Lq+CDg39FwlKk+QxIWMrbRJdpRBDZ03VZnKcgP0m/5K8PrcyGbxOK8qeVREUaqvmQN2Rs4LD1REPZyr3GQ2gtgpqrJ3hym7TwJw3Xl5NW8Y7RAeENem2K3EKoq6qq/wB/YUqMhKD228w5J6B+CoI8nvDqAWZkNAz/uY/GJe4elRJCmFH2F+r3263R5oDnXWSluB7XIm3b+Xt24F8MwoltejSEma41c8FM/xbF3Kle8ofBGFPEXpNDAxICVbyZ6OE4TyqTGKA8xgg9vnR3hCGGERtLYHhPw0aVHY7Zew/6/QV9o6/reO96V92zpXVEpvO09Z40fvTd5cN68=", + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDXRnBg+dayTonnZY3i0dDEHXUFMhcJKtqiFO7Oe/ejasDeW2I+L0f1gg+7u1ms/g8E28/RARN3R1aMnbGvXWdP/yBrhtpWJc5TXK+f33S5lYYjptJ2F6vj7jiRU7pP4uL9wqknj0DoSD0krAEbA85mBJgIV1viL8ZBtT/8iBoD6kHGRXaHpRH5sIFaURRJCcUTJhdqMUPd6bYKE/Bc6ioQLAEow0JB4ju1jPa7fOxhgVrIYxRiMkismhR0WLopB5JxyYDNmIyjUL2vGt9Kpd41DELv+Pn7EaP2HLjubVruWFnxnhZ7nvQwMonnZvjD3f5yPkDUkWnwaVGqw8cm9PFM4buFRmGpsl8YqTFakYgqc+JVDQB8bb9a9sr5/6Hbn41VcXd+KV6dTMK4PKSQFKLaq54ExzlwnE/EHnduE8JgvsfAa316/etFlzTQOBv1KbL8RKK0/vy6wJpiK9laDbymsOJPjZekoc/TD1AIvfWF9oae6wAU86tBVGdEO/JMOMc=", + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCvlUlp/OjFsa4fINqqMXukveo+mCu0Ywp0wwVCURkfJpPFPMdmbp07WlULCX6VgmqH4joCA+LUyY+q6iBZw80lS66lpDcRHMTG4PV7IsPpoYN20bUnm30vdqug/P1wVDuOO9B83+s3QFeBl9WbHQB3YY5pBulZGLIGw26qrLwfM5UJ4P/Ffca7ca9PM7KEkwqOC9xMfJy3tFkzD2Rjo2AHN9s7xHtpf95m8MzToy1Q7ykU/8bhImOrkZKaJJtIfmykYhebKDpeETEWJiyyaubIl71KAsWacrvQnEfo2fe62kR3SGv2auPDxMaGKPqtDpe2e/Y9I85Fv3tfWk53DDFoZNzExT4jc825bCqqz2DBbz4Q/Miw3rcdHx7uaRHinEJsBveNhZSH31GMLtU/dVNF3TNhlEH62Zmjgu7IpWb6Tr/4KnLjf/0p7ye34jP49nv1iBj99j3p1hwgAGU56ag4j7TW/iMh+uH+pg1hm6xZjhFInZGzQqtMl/qjBlr1oJ8=", + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCNVaIVHzjCkmCyQnpHfgLLvPtc96PVg/+8/cT2ty6TFe3ALaZJSHTWXjOPJaSkhBef2PCmbcsd3+p+QDl87nRl9O5fV376mrGwsxlpI2a1FnzpBkAEpZ2KyE4B593xGlpmvrMOF9gY4qGdNHCXw2puZ/IkmYaiROYpL2ptiSfTGc1R/ZrEvs0fhYwyi4xYfb+iGVSvjhhTqzJYNW6IBmMZVbDCdYX+JvSKsZYydnkHg7d9QJORZ3TnPe3Tmnn+PAse9V0z9VKOScfoRNT+Co9ezLGWNY+Dnnwg0jouA76/CiIIjWunJzLsIeu7cqNwubKO8lsLX9O+6zKR46EEaVr1VoC395IPvBy8x+VWUSpI+M7GLh0iPE56EvwiVm8irTkmY6WPsQ8PMJ5IWZE/OA6w6fupiSgBd5myFpB/wa8yVdY+UPfh40HpEXt0+iPeWK9kz/fJQAgow/FJAAsnI65JdVP4woAUYnmoJ0l6qgDyFQbOxcq7NZdmedHtRz049hM=" + ], + "suspended_at": "0001-01-01 00:00:00 +0000 UTC", + "updated_at": "2024-09-19 17:49:11 +0000 UTC", + "username": "arnol377" + }, + "sensitive_values": { + "gpg_keys": [], + "ssh_keys": [ + false, + false, + false, + false + ] + } + }, + { + "address": "module.repo_list[\"aws-image-pipeline\"].data.github_user.pull_request_bypassers[\"gomez385\"]", + "mode": "data", + "type": "github_user", + "name": "pull_request_bypassers", + "index": "gomez385", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "avatar_url": "https://github.e.it.census.gov/avatars/u/603?", + "bio": "", + "blog": "", + "company": "", + "created_at": "2024-06-13 14:57:04 +0000 UTC", + "email": "", + "followers": 0, + "following": 1, + "gpg_keys": [], + "gravatar_id": "", + "id": "603", + "location": "", + "login": "gomez385", + "name": "James Farr Gomez", + "node_id": "MDQ6VXNlcjYwMw==", + "public_gists": 0, + "public_repos": 0, + "site_admin": false, + "ssh_keys": [ + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDuGCb6WHZ8kex7gawtk2pmHd8t77HQ0LE+7sanVKoC5cWC/7RlefKBuH5c8F2RmmB1EaVFT2ylCsR0qnPT8xGH7gjrkRs/B8LAcwvXifev1BkPSE1gJT+lQpnwPkfqBuCbsewOR1XyPqQt5SZh4a9w7GDvBsfO2Ate9ADtX0nsI76t2DURR32ptBKnN2TtYqnD5D3VKV2lhiI2tnz8sO5FZzYycCONsv570N/itwT34gKSLVRsj+0YmPjmOU+7JWpXxdtjocw06ZEGnSyInIH4VJVROE0p3Z63xHQ9fxDtnW71zf0a9UeoY5Vb/b7PbK4NF3Dp9gG8iaL9dqeiZ1XTCcXHDyHGVFej3sl0CkB+BQ/Gz9ZCqkSBcA+n9WA5KclNuOMwe4eLXRwg/gxxmAJB707gXUk+nSPGwYTObtm0+lfspCNQxAFry8gX39mdVqnaCz1agzmwZo7rRls+BZPfDPg3YUkB3v9P8y/cbO6Bn5IRmYB2KQ73E7X8QJcW0+E=", + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQDROzDzCBisy3+PvtvvCt7XxuEpNAwBS6SoK2wKJNnGgYPs8zInboOVZWqRXujOWOySPCloBfYU5B2eg94cVoDnTnc9dArWhBOK0aY93XM7/0s3/01w3Kkyi25oJytr0NRI8liZq6DnF9hFiqxRVcJkoS4+I9t9G3MURjVbcNY10+bIs6Dp9sbnJaJEWvvsbAiz1WdZBAsF3eW20mNkzmQtYoASHWv3AD/j+xLRYvx2sVcPXIGQ4fw3FqQIUOkbVQUW2lCBp+BVZgR1U4dKh5lejddxd7bXblWxJ5qqWPXulqCnUrJBBTWxTPrUxBzcZtxLAj8C04PyZPJYWVVbhuxkMgA7VeUHeZ/iFT6LZeqVtwTDlEPCzShCdIC0JWKzxI+I663YeSf2y1Jh3qT/R+e0qcduEmL3bdE+PyyvQks8WCXVfXtJeHQfkPKcy9gARpQScY/6vSyZbJNfIW1VagCCRZp54AzOlhKTUy2r97zlrzB9gBPU2ycbmLFYOglVrw6Fo6ECV8slQIxuz0lS0RbEI/+c9jWxKqcSrb0zCEgoL+HEdGaElTRENPhApPXZO+YlFZkg9NY9t+uGWCu2xPgSiR2fn44QzfWypxCq05G0fNRQRRIuMnpjkXlv66O/hju+xMTG1fVyKSKq5CA1bDdDn9euZ7Q6OAFsQX73hdYn6Q==" + ], + "suspended_at": "0001-01-01 00:00:00 +0000 UTC", + "updated_at": "2024-09-26 18:00:48 +0000 UTC", + "username": "gomez385" + }, + "sensitive_values": { + "gpg_keys": [], + "ssh_keys": [ + false, + false + ] + } + }, + { + "address": "module.repo_list[\"aws-image-pipeline\"].github_repository.repo", + "mode": "managed", + "type": "github_repository", + "name": "repo", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 1, + "values": { + "allow_auto_merge": false, + "allow_merge_commit": false, + "allow_rebase_merge": false, + "allow_squash_merge": true, + "allow_update_branch": false, + "archive_on_destroy": true, + "archived": false, + "auto_init": true, + "default_branch": "main", + "delete_branch_on_merge": true, + "description": "Terraform Workspace for creating and managing AWS Image Pipelines", + "etag": "W/\"cd754c8e3915a94f0bae3e8cbf23fd834f5db9171a3862e691f7c82aa679d48d\"", + "full_name": "CSVD/aws-image-pipeline", + "git_clone_url": "git://github.e.it.census.gov/CSVD/aws-image-pipeline.git", + "gitignore_template": "", + "has_discussions": false, + "has_downloads": false, + "has_issues": true, + "has_projects": true, + "has_wiki": true, + "homepage_url": "", + "html_url": "https://github.e.it.census.gov/CSVD/aws-image-pipeline", + "http_clone_url": "https://github.e.it.census.gov/CSVD/aws-image-pipeline.git", + "id": "aws-image-pipeline", + "ignore_vulnerability_alerts_during_read": null, + "is_template": true, + "license_template": null, + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "name": "aws-image-pipeline", + "node_id": "MDEwOlJlcG9zaXRvcnk5MjY=", + "pages": [], + "primary_language": "Python", + "private": true, + "repo_id": 926, + "security_and_analysis": [ + { + "advanced_security": [ + { + "status": "disabled" + } + ], + "secret_scanning": [ + { + "status": "disabled" + } + ], + "secret_scanning_push_protection": [ + { + "status": "disabled" + } + ] + } + ], + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "ssh_clone_url": "git@github.e.it.census.gov:CSVD/aws-image-pipeline.git", + "svn_url": "https://github.e.it.census.gov/CSVD/aws-image-pipeline", + "template": [], + "topics": [ + "terraform" + ], + "visibility": "private", + "vulnerability_alerts": false, + "web_commit_signoff_required": false + }, + "sensitive_values": { + "pages": [], + "security_and_analysis": [ + { + "advanced_security": [ + {} + ], + "secret_scanning": [ + {} + ], + "secret_scanning_push_protection": [ + {} + ] + } + ], + "template": [], + "topics": [ + false + ] + } + }, + { + "address": "module.repo_list[\"aws-image-pipeline\"].github_repository_collaborator.collaborators[\"gomez385\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "gomez385", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "aws-image-pipeline:gomez385", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "aws-image-pipeline", + "username": "gomez385" + }, + "sensitive_values": {}, + "depends_on": [ + "module.repo_list.github_repository.repo" + ] + }, + { + "address": "module.repo_list[\"aws-image-pipeline\"].github_repository_collaborator.collaborators[\"morga471\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "morga471", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "aws-image-pipeline:morga471", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "aws-image-pipeline", + "username": "morga471" + }, + "sensitive_values": {}, + "depends_on": [ + "module.repo_list.github_repository.repo" + ] + }, + { + "address": "module.repo_list[\"aws-image-pipeline\"].github_repository_collaborator.collaborators[\"naray007\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "naray007", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "aws-image-pipeline:naray007", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "aws-image-pipeline", + "username": "naray007" + }, + "sensitive_values": {}, + "depends_on": [ + "module.repo_list.github_repository.repo" + ] + }, + { + "address": "module.repo_list[\"aws-image-pipeline\"].github_repository_file.managed_extra_files[\"terraform-apply.yaml\"]", + "mode": "managed", + "type": "github_repository_file", + "name": "managed_extra_files", + "index": "terraform-apply.yaml", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "autocreate_branch": null, + "autocreate_branch_source_branch": null, + "autocreate_branch_source_sha": null, + "branch": "main", + "commit_author": null, + "commit_email": null, + "commit_message": "Add .github/workflows/terraform-apply.yaml", + "commit_sha": "7816440148f083de1d8a24cb8517120466ca7810", + "content": "# This is a basic workflow to help you get started with Actions\nname: Terraform Apply\n\n# Controls when the workflow will run\non:\n # Triggers the workflow on push or pull request events but only for the \"main\" branch\n push:\n branches: [ \"main\" ]\n # Allows you to run this workflow manually from the Actions tab\n workflow_dispatch:\n\n# A workflow run is made up of one or more jobs that can run sequentially or in parallel\njobs:\n # This workflow contains a single job called \"build\"\n build:\n # The type of runner that the job will run on\n runs-on: [ aws-image-pipeline ]\n env:\n AWS_SECRET_ACCESS_KEY: \"${{ secrets.AWS_SECRET_ACCESS_KEY }}\"\n AWS_ACCESS_KEY_ID: \"${{ vars.AWS_ACCESS_KEY_ID }}\"\n AWS_SESSION_TOKEN: \"${{ secrets.AWS_SESSION_TOKEN }}\"\n \n\n # Steps represent a sequence of tasks that will be executed as part of the job\n steps:\n # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it\n - uses: actions/checkout@v3\n\n\n - uses: CSVD/gh-actions-setup-node@v3\n with:\n node-version: 16\n \n - uses: CSVD/gh-actions-setup-terraform@v2\n with:\n terraform_version: ${{ vars.terraform_version }}\n \n - name: Terraform Format\n id: fmt\n \n run: |\n terraform fmt -check\n\n - name: Autoformat Halt\n if: env.auto_format == 'true'\n \n run: exit 1\n\n - name: Terraform Init\n id: init\n \n run: terraform init -upgrade\n\n - name: Terraform Validate\n id: validate\n \n run: terraform validate\n\n - name: Terraform Apply\n id: apply\n \n run: terraform apply -auto-approve\n continue-on-error: true\n", + "file": ".github/workflows/terraform-apply.yaml", + "id": "aws-image-pipeline/.github/workflows/terraform-apply.yaml", + "overwrite_on_create": true, + "ref": "main", + "repository": "aws-image-pipeline", + "sha": "4ce33c8b6f70c5252ab6d47f1acb3f5aadb17073" + }, + "sensitive_values": {}, + "depends_on": [ + "module.aws_image_pipeline.github_repository.repo" + ] + }, + { + "address": "module.repo_list[\"aws-image-pipeline\"].github_repository_file.managed_extra_files[\"terraform-plan.yaml\"]", + "mode": "managed", + "type": "github_repository_file", + "name": "managed_extra_files", + "index": "terraform-plan.yaml", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "autocreate_branch": null, + "autocreate_branch_source_branch": null, + "autocreate_branch_source_sha": null, + "branch": "main", + "commit_author": null, + "commit_email": null, + "commit_message": "Add .github/workflows/terraform-plan.yaml", + "commit_sha": "00cc5117b7ad0ae81e7ad0e99475a18a9bd5b226", + "content": "\n# This is a basic workflow to help you get started with Actions\n\nname: Terraform Plan\n\n\n# Controls when the workflow will run\non:\n pull_request:\n\n# A workflow run is made up of one or more jobs that can run sequentially or in parallel\njobs:\n # This workflow contains a single job called \"build\"\n build:\n # The type of runner that the job will run on\n runs-on: [ aws-image-pipeline ]\n env:\n AWS_SECRET_ACCESS_KEY: \"${{ secrets.AWS_SECRET_ACCESS_KEY }}\"\n AWS_ACCESS_KEY_ID: \"${{ vars.AWS_ACCESS_KEY_ID }}\"\n AWS_SESSION_TOKEN: \"${{ secrets.AWS_SESSION_TOKEN }}\"\n \n\n # Steps represent a sequence of tasks that will be executed as part of the job\n steps:\n # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it\n - uses: actions/checkout@v3\n with:\n ref: ${{ github.head_ref }}\n token: ${{ secrets.GH_TOKEN }}\n\n - uses: CSVD/gh-actions-setup-node@v3\n with:\n node-version: 16\n \n - uses: CSVD/gh-actions-setup-terraform@v2\n with:\n terraform_version: ${{ vars.terraform_version }}\n\n - name: Terraform Format\n id: fmt\n run: |\n terraform fmt\n if ! git diff-index --quiet HEAD; then \n git config --global user.name 'arnol377'\n git config --global user.email 'david.j.arnold.jr@census.gov'\n git commit -am \"Autoformatting TF Code\"\n git push\n echo \"auto_format=true\" >> $GITHUB_ENV \n fi\n\n - name: Autoformat Halt\n if: env.auto_format == 'true'\n run: exit 0\n\n - name: Terraform Init\n id: init\n \n run: terraform init -upgrade\n\n - name: Terraform Validate\n id: validate\n \n run: terraform validate\n\n - name: Terraform Plan\n id: plan\n \n run: terraform plan\n continue-on-error: true\n\n - name: Update Pull Request\n uses: CSVD/gh-actions-github-script@v6\n if: github.event_name == 'pull_request'\n with:\n github-token: ${{ secrets.GH_TOKEN }}\n script: |\n const output = `#### Terraform Format and Style 🖌\\`${{ steps.fmt.outcome }}\\`\n #### Terraform Initialization ⚙️\\`${{ steps.init.outcome }}\\`\n #### Terraform Validation 🤖\\`${{ steps.validate.outcome }}\\`\n #### Terraform Plan:\n ${{ steps.plan.outcome }}\n *Pushed by: @${{ github.actor }}, Action: \\`${{ github.event_name }}\\`*`;\n\n github.rest.issues.createComment({\n issue_number: context.issue.number,\n owner: context.repo.owner,\n repo: context.repo.repo,\n body: output\n })\n", + "file": ".github/workflows/terraform-plan.yaml", + "id": "aws-image-pipeline/.github/workflows/terraform-plan.yaml", + "overwrite_on_create": true, + "ref": "main", + "repository": "aws-image-pipeline", + "sha": "1e8768229b88d08d3042a86b4fb8e06ac9215266" + }, + "sensitive_values": {}, + "depends_on": [ + "module.aws_image_pipeline.github_repository.repo" + ] + } + ], + "address": "module.repo_list[\"aws-image-pipeline\"]" + }, + { + "resources": [ + { + "address": "module.repo_list[\"aws-image-pipeline-pip-config\"].data.github_user.pull_request_bypassers[\"arnol377\"]", + "mode": "data", + "type": "github_user", + "name": "pull_request_bypassers", + "index": "arnol377", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "avatar_url": "https://github.e.it.census.gov/avatars/u/549?", + "bio": "", + "blog": "", + "company": "", + "created_at": "2023-12-26 17:20:24 +0000 UTC", + "email": "", + "followers": 0, + "following": 0, + "gpg_keys": [], + "gravatar_id": "", + "id": "549", + "location": "", + "login": "arnol377", + "name": "David John Arnold Jr", + "node_id": "MDQ6VXNlcjU0OQ==", + "public_gists": 0, + "public_repos": 4, + "site_admin": false, + "ssh_keys": [ + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDBL3xJ3zSxE6Qv8k9b06oFB4dbq2+PiOmsnIfAgL2XZpEenD03jhCF28iAZVy9oovuBCbcyAE9BjTRdWFSjd1dmHthbGe5Jv0/DweNFB/YmX6wJ6knljTA3frkY9bVS9+rqY6N4GG3oG6lyyk7cBaUEagXF4VQQJqX4l7XG1xxUfKLFFhF3Lq+CDg39FwlKk+QxIWMrbRJdpRBDZ03VZnKcgP0m/5K8PrcyGbxOK8qeVREUaqvmQN2Rs4LD1REPZyr3GQ2gtgpqrJ3hym7TwJw3Xl5NW8Y7RAeENem2K3EKoq6qq/wB/YUqMhKD228w5J6B+CoI8nvDqAWZkNAz/uY/GJe4elRJCmFH2F+r3263R5oDnXWSluB7XIm3b+Xt24F8MwoltejSEma41c8FM/xbF3Kle8ofBGFPEXpNDAxICVbyZ6OE4TyqTGKA8xgg9vnR3hCGGERtLYHhPw0aVHY7Zew/6/QV9o6/reO96V92zpXVEpvO09Z40fvTd5cN68=", + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDXRnBg+dayTonnZY3i0dDEHXUFMhcJKtqiFO7Oe/ejasDeW2I+L0f1gg+7u1ms/g8E28/RARN3R1aMnbGvXWdP/yBrhtpWJc5TXK+f33S5lYYjptJ2F6vj7jiRU7pP4uL9wqknj0DoSD0krAEbA85mBJgIV1viL8ZBtT/8iBoD6kHGRXaHpRH5sIFaURRJCcUTJhdqMUPd6bYKE/Bc6ioQLAEow0JB4ju1jPa7fOxhgVrIYxRiMkismhR0WLopB5JxyYDNmIyjUL2vGt9Kpd41DELv+Pn7EaP2HLjubVruWFnxnhZ7nvQwMonnZvjD3f5yPkDUkWnwaVGqw8cm9PFM4buFRmGpsl8YqTFakYgqc+JVDQB8bb9a9sr5/6Hbn41VcXd+KV6dTMK4PKSQFKLaq54ExzlwnE/EHnduE8JgvsfAa316/etFlzTQOBv1KbL8RKK0/vy6wJpiK9laDbymsOJPjZekoc/TD1AIvfWF9oae6wAU86tBVGdEO/JMOMc=", + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCvlUlp/OjFsa4fINqqMXukveo+mCu0Ywp0wwVCURkfJpPFPMdmbp07WlULCX6VgmqH4joCA+LUyY+q6iBZw80lS66lpDcRHMTG4PV7IsPpoYN20bUnm30vdqug/P1wVDuOO9B83+s3QFeBl9WbHQB3YY5pBulZGLIGw26qrLwfM5UJ4P/Ffca7ca9PM7KEkwqOC9xMfJy3tFkzD2Rjo2AHN9s7xHtpf95m8MzToy1Q7ykU/8bhImOrkZKaJJtIfmykYhebKDpeETEWJiyyaubIl71KAsWacrvQnEfo2fe62kR3SGv2auPDxMaGKPqtDpe2e/Y9I85Fv3tfWk53DDFoZNzExT4jc825bCqqz2DBbz4Q/Miw3rcdHx7uaRHinEJsBveNhZSH31GMLtU/dVNF3TNhlEH62Zmjgu7IpWb6Tr/4KnLjf/0p7ye34jP49nv1iBj99j3p1hwgAGU56ag4j7TW/iMh+uH+pg1hm6xZjhFInZGzQqtMl/qjBlr1oJ8=", + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCNVaIVHzjCkmCyQnpHfgLLvPtc96PVg/+8/cT2ty6TFe3ALaZJSHTWXjOPJaSkhBef2PCmbcsd3+p+QDl87nRl9O5fV376mrGwsxlpI2a1FnzpBkAEpZ2KyE4B593xGlpmvrMOF9gY4qGdNHCXw2puZ/IkmYaiROYpL2ptiSfTGc1R/ZrEvs0fhYwyi4xYfb+iGVSvjhhTqzJYNW6IBmMZVbDCdYX+JvSKsZYydnkHg7d9QJORZ3TnPe3Tmnn+PAse9V0z9VKOScfoRNT+Co9ezLGWNY+Dnnwg0jouA76/CiIIjWunJzLsIeu7cqNwubKO8lsLX9O+6zKR46EEaVr1VoC395IPvBy8x+VWUSpI+M7GLh0iPE56EvwiVm8irTkmY6WPsQ8PMJ5IWZE/OA6w6fupiSgBd5myFpB/wa8yVdY+UPfh40HpEXt0+iPeWK9kz/fJQAgow/FJAAsnI65JdVP4woAUYnmoJ0l6qgDyFQbOxcq7NZdmedHtRz049hM=" + ], + "suspended_at": "0001-01-01 00:00:00 +0000 UTC", + "updated_at": "2024-09-19 17:49:11 +0000 UTC", + "username": "arnol377" + }, + "sensitive_values": { + "gpg_keys": [], + "ssh_keys": [ + false, + false, + false, + false + ] + } + }, + { + "address": "module.repo_list[\"aws-image-pipeline-pip-config\"].data.github_user.pull_request_bypassers[\"gomez385\"]", + "mode": "data", + "type": "github_user", + "name": "pull_request_bypassers", + "index": "gomez385", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "avatar_url": "https://github.e.it.census.gov/avatars/u/603?", + "bio": "", + "blog": "", + "company": "", + "created_at": "2024-06-13 14:57:04 +0000 UTC", + "email": "", + "followers": 0, + "following": 1, + "gpg_keys": [], + "gravatar_id": "", + "id": "603", + "location": "", + "login": "gomez385", + "name": "James Farr Gomez", + "node_id": "MDQ6VXNlcjYwMw==", + "public_gists": 0, + "public_repos": 0, + "site_admin": false, + "ssh_keys": [ + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDuGCb6WHZ8kex7gawtk2pmHd8t77HQ0LE+7sanVKoC5cWC/7RlefKBuH5c8F2RmmB1EaVFT2ylCsR0qnPT8xGH7gjrkRs/B8LAcwvXifev1BkPSE1gJT+lQpnwPkfqBuCbsewOR1XyPqQt5SZh4a9w7GDvBsfO2Ate9ADtX0nsI76t2DURR32ptBKnN2TtYqnD5D3VKV2lhiI2tnz8sO5FZzYycCONsv570N/itwT34gKSLVRsj+0YmPjmOU+7JWpXxdtjocw06ZEGnSyInIH4VJVROE0p3Z63xHQ9fxDtnW71zf0a9UeoY5Vb/b7PbK4NF3Dp9gG8iaL9dqeiZ1XTCcXHDyHGVFej3sl0CkB+BQ/Gz9ZCqkSBcA+n9WA5KclNuOMwe4eLXRwg/gxxmAJB707gXUk+nSPGwYTObtm0+lfspCNQxAFry8gX39mdVqnaCz1agzmwZo7rRls+BZPfDPg3YUkB3v9P8y/cbO6Bn5IRmYB2KQ73E7X8QJcW0+E=", + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQDROzDzCBisy3+PvtvvCt7XxuEpNAwBS6SoK2wKJNnGgYPs8zInboOVZWqRXujOWOySPCloBfYU5B2eg94cVoDnTnc9dArWhBOK0aY93XM7/0s3/01w3Kkyi25oJytr0NRI8liZq6DnF9hFiqxRVcJkoS4+I9t9G3MURjVbcNY10+bIs6Dp9sbnJaJEWvvsbAiz1WdZBAsF3eW20mNkzmQtYoASHWv3AD/j+xLRYvx2sVcPXIGQ4fw3FqQIUOkbVQUW2lCBp+BVZgR1U4dKh5lejddxd7bXblWxJ5qqWPXulqCnUrJBBTWxTPrUxBzcZtxLAj8C04PyZPJYWVVbhuxkMgA7VeUHeZ/iFT6LZeqVtwTDlEPCzShCdIC0JWKzxI+I663YeSf2y1Jh3qT/R+e0qcduEmL3bdE+PyyvQks8WCXVfXtJeHQfkPKcy9gARpQScY/6vSyZbJNfIW1VagCCRZp54AzOlhKTUy2r97zlrzB9gBPU2ycbmLFYOglVrw6Fo6ECV8slQIxuz0lS0RbEI/+c9jWxKqcSrb0zCEgoL+HEdGaElTRENPhApPXZO+YlFZkg9NY9t+uGWCu2xPgSiR2fn44QzfWypxCq05G0fNRQRRIuMnpjkXlv66O/hju+xMTG1fVyKSKq5CA1bDdDn9euZ7Q6OAFsQX73hdYn6Q==" + ], + "suspended_at": "0001-01-01 00:00:00 +0000 UTC", + "updated_at": "2024-09-26 18:00:48 +0000 UTC", + "username": "gomez385" + }, + "sensitive_values": { + "gpg_keys": [], + "ssh_keys": [ + false, + false + ] + } + }, + { + "address": "module.repo_list[\"aws-image-pipeline-pip-config\"].github_repository.repo", + "mode": "managed", + "type": "github_repository", + "name": "repo", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 1, + "values": { + "allow_auto_merge": false, + "allow_merge_commit": false, + "allow_rebase_merge": false, + "allow_squash_merge": true, + "allow_update_branch": false, + "archive_on_destroy": true, + "archived": false, + "auto_init": true, + "default_branch": "main", + "delete_branch_on_merge": true, + "description": "Pip Configuration for Image Pipeline", + "etag": "W/\"ef4d347c5e6e8df7481ecbe0e551d1e3bc9640556a90f5300f627b41f58de4e1\"", + "full_name": "CSVD/aws-image-pipeline-pip-config", + "git_clone_url": "git://github.e.it.census.gov/CSVD/aws-image-pipeline-pip-config.git", + "gitignore_template": null, + "has_discussions": false, + "has_downloads": false, + "has_issues": true, + "has_projects": true, + "has_wiki": true, + "homepage_url": "", + "html_url": "https://github.e.it.census.gov/CSVD/aws-image-pipeline-pip-config", + "http_clone_url": "https://github.e.it.census.gov/CSVD/aws-image-pipeline-pip-config.git", + "id": "aws-image-pipeline-pip-config", + "ignore_vulnerability_alerts_during_read": null, + "is_template": true, + "license_template": null, + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "name": "aws-image-pipeline-pip-config", + "node_id": "MDEwOlJlcG9zaXRvcnkxMjY2", + "pages": [], + "primary_language": "", + "private": false, + "repo_id": 1266, + "security_and_analysis": [ + { + "advanced_security": [ + { + "status": "disabled" + } + ], + "secret_scanning": [ + { + "status": "disabled" + } + ], + "secret_scanning_push_protection": [ + { + "status": "disabled" + } + ] + } + ], + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "ssh_clone_url": "git@github.e.it.census.gov:CSVD/aws-image-pipeline-pip-config.git", + "svn_url": "https://github.e.it.census.gov/CSVD/aws-image-pipeline-pip-config", + "template": [], + "topics": [ + "aws-image-pipeline", + "terraform" + ], + "visibility": "public", + "vulnerability_alerts": false, + "web_commit_signoff_required": false + }, + "sensitive_values": { + "pages": [], + "security_and_analysis": [ + { + "advanced_security": [ + {} + ], + "secret_scanning": [ + {} + ], + "secret_scanning_push_protection": [ + {} + ] + } + ], + "template": [], + "topics": [ + false, + false + ] + } + }, + { + "address": "module.repo_list[\"aws-image-pipeline-pip-config\"].github_repository_collaborator.collaborators[\"gomez385\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "gomez385", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "aws-image-pipeline-pip-config:gomez385", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "aws-image-pipeline-pip-config", + "username": "gomez385" + }, + "sensitive_values": {}, + "depends_on": [ + "module.repo_list.github_repository.repo" + ] + }, + { + "address": "module.repo_list[\"aws-image-pipeline-pip-config\"].github_repository_collaborator.collaborators[\"morga471\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "morga471", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "aws-image-pipeline-pip-config:morga471", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "aws-image-pipeline-pip-config", + "username": "morga471" + }, + "sensitive_values": {}, + "depends_on": [ + "module.repo_list.github_repository.repo" + ] + }, + { + "address": "module.repo_list[\"aws-image-pipeline-pip-config\"].github_repository_collaborator.collaborators[\"naray007\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "naray007", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "aws-image-pipeline-pip-config:naray007", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "aws-image-pipeline-pip-config", + "username": "naray007" + }, + "sensitive_values": {}, + "depends_on": [ + "module.repo_list.github_repository.repo" + ] + } + ], + "address": "module.repo_list[\"aws-image-pipeline-pip-config\"]" + }, + { + "resources": [ + { + "address": "module.repo_list[\"aws-secrets\"].data.github_user.pull_request_bypassers[\"arnol377\"]", + "mode": "data", + "type": "github_user", + "name": "pull_request_bypassers", + "index": "arnol377", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "avatar_url": "https://github.e.it.census.gov/avatars/u/549?", + "bio": "", + "blog": "", + "company": "", + "created_at": "2023-12-26 17:20:24 +0000 UTC", + "email": "", + "followers": 0, + "following": 0, + "gpg_keys": [], + "gravatar_id": "", + "id": "549", + "location": "", + "login": "arnol377", + "name": "David John Arnold Jr", + "node_id": "MDQ6VXNlcjU0OQ==", + "public_gists": 0, + "public_repos": 4, + "site_admin": false, + "ssh_keys": [ + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDBL3xJ3zSxE6Qv8k9b06oFB4dbq2+PiOmsnIfAgL2XZpEenD03jhCF28iAZVy9oovuBCbcyAE9BjTRdWFSjd1dmHthbGe5Jv0/DweNFB/YmX6wJ6knljTA3frkY9bVS9+rqY6N4GG3oG6lyyk7cBaUEagXF4VQQJqX4l7XG1xxUfKLFFhF3Lq+CDg39FwlKk+QxIWMrbRJdpRBDZ03VZnKcgP0m/5K8PrcyGbxOK8qeVREUaqvmQN2Rs4LD1REPZyr3GQ2gtgpqrJ3hym7TwJw3Xl5NW8Y7RAeENem2K3EKoq6qq/wB/YUqMhKD228w5J6B+CoI8nvDqAWZkNAz/uY/GJe4elRJCmFH2F+r3263R5oDnXWSluB7XIm3b+Xt24F8MwoltejSEma41c8FM/xbF3Kle8ofBGFPEXpNDAxICVbyZ6OE4TyqTGKA8xgg9vnR3hCGGERtLYHhPw0aVHY7Zew/6/QV9o6/reO96V92zpXVEpvO09Z40fvTd5cN68=", + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDXRnBg+dayTonnZY3i0dDEHXUFMhcJKtqiFO7Oe/ejasDeW2I+L0f1gg+7u1ms/g8E28/RARN3R1aMnbGvXWdP/yBrhtpWJc5TXK+f33S5lYYjptJ2F6vj7jiRU7pP4uL9wqknj0DoSD0krAEbA85mBJgIV1viL8ZBtT/8iBoD6kHGRXaHpRH5sIFaURRJCcUTJhdqMUPd6bYKE/Bc6ioQLAEow0JB4ju1jPa7fOxhgVrIYxRiMkismhR0WLopB5JxyYDNmIyjUL2vGt9Kpd41DELv+Pn7EaP2HLjubVruWFnxnhZ7nvQwMonnZvjD3f5yPkDUkWnwaVGqw8cm9PFM4buFRmGpsl8YqTFakYgqc+JVDQB8bb9a9sr5/6Hbn41VcXd+KV6dTMK4PKSQFKLaq54ExzlwnE/EHnduE8JgvsfAa316/etFlzTQOBv1KbL8RKK0/vy6wJpiK9laDbymsOJPjZekoc/TD1AIvfWF9oae6wAU86tBVGdEO/JMOMc=", + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCvlUlp/OjFsa4fINqqMXukveo+mCu0Ywp0wwVCURkfJpPFPMdmbp07WlULCX6VgmqH4joCA+LUyY+q6iBZw80lS66lpDcRHMTG4PV7IsPpoYN20bUnm30vdqug/P1wVDuOO9B83+s3QFeBl9WbHQB3YY5pBulZGLIGw26qrLwfM5UJ4P/Ffca7ca9PM7KEkwqOC9xMfJy3tFkzD2Rjo2AHN9s7xHtpf95m8MzToy1Q7ykU/8bhImOrkZKaJJtIfmykYhebKDpeETEWJiyyaubIl71KAsWacrvQnEfo2fe62kR3SGv2auPDxMaGKPqtDpe2e/Y9I85Fv3tfWk53DDFoZNzExT4jc825bCqqz2DBbz4Q/Miw3rcdHx7uaRHinEJsBveNhZSH31GMLtU/dVNF3TNhlEH62Zmjgu7IpWb6Tr/4KnLjf/0p7ye34jP49nv1iBj99j3p1hwgAGU56ag4j7TW/iMh+uH+pg1hm6xZjhFInZGzQqtMl/qjBlr1oJ8=", + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCNVaIVHzjCkmCyQnpHfgLLvPtc96PVg/+8/cT2ty6TFe3ALaZJSHTWXjOPJaSkhBef2PCmbcsd3+p+QDl87nRl9O5fV376mrGwsxlpI2a1FnzpBkAEpZ2KyE4B593xGlpmvrMOF9gY4qGdNHCXw2puZ/IkmYaiROYpL2ptiSfTGc1R/ZrEvs0fhYwyi4xYfb+iGVSvjhhTqzJYNW6IBmMZVbDCdYX+JvSKsZYydnkHg7d9QJORZ3TnPe3Tmnn+PAse9V0z9VKOScfoRNT+Co9ezLGWNY+Dnnwg0jouA76/CiIIjWunJzLsIeu7cqNwubKO8lsLX9O+6zKR46EEaVr1VoC395IPvBy8x+VWUSpI+M7GLh0iPE56EvwiVm8irTkmY6WPsQ8PMJ5IWZE/OA6w6fupiSgBd5myFpB/wa8yVdY+UPfh40HpEXt0+iPeWK9kz/fJQAgow/FJAAsnI65JdVP4woAUYnmoJ0l6qgDyFQbOxcq7NZdmedHtRz049hM=" + ], + "suspended_at": "0001-01-01 00:00:00 +0000 UTC", + "updated_at": "2024-09-19 17:49:11 +0000 UTC", + "username": "arnol377" + }, + "sensitive_values": { + "gpg_keys": [], + "ssh_keys": [ + false, + false, + false, + false + ] + } + }, + { + "address": "module.repo_list[\"aws-secrets\"].data.github_user.pull_request_bypassers[\"gomez385\"]", + "mode": "data", + "type": "github_user", + "name": "pull_request_bypassers", + "index": "gomez385", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "avatar_url": "https://github.e.it.census.gov/avatars/u/603?", + "bio": "", + "blog": "", + "company": "", + "created_at": "2024-06-13 14:57:04 +0000 UTC", + "email": "", + "followers": 0, + "following": 1, + "gpg_keys": [], + "gravatar_id": "", + "id": "603", + "location": "", + "login": "gomez385", + "name": "James Farr Gomez", + "node_id": "MDQ6VXNlcjYwMw==", + "public_gists": 0, + "public_repos": 0, + "site_admin": false, + "ssh_keys": [ + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDuGCb6WHZ8kex7gawtk2pmHd8t77HQ0LE+7sanVKoC5cWC/7RlefKBuH5c8F2RmmB1EaVFT2ylCsR0qnPT8xGH7gjrkRs/B8LAcwvXifev1BkPSE1gJT+lQpnwPkfqBuCbsewOR1XyPqQt5SZh4a9w7GDvBsfO2Ate9ADtX0nsI76t2DURR32ptBKnN2TtYqnD5D3VKV2lhiI2tnz8sO5FZzYycCONsv570N/itwT34gKSLVRsj+0YmPjmOU+7JWpXxdtjocw06ZEGnSyInIH4VJVROE0p3Z63xHQ9fxDtnW71zf0a9UeoY5Vb/b7PbK4NF3Dp9gG8iaL9dqeiZ1XTCcXHDyHGVFej3sl0CkB+BQ/Gz9ZCqkSBcA+n9WA5KclNuOMwe4eLXRwg/gxxmAJB707gXUk+nSPGwYTObtm0+lfspCNQxAFry8gX39mdVqnaCz1agzmwZo7rRls+BZPfDPg3YUkB3v9P8y/cbO6Bn5IRmYB2KQ73E7X8QJcW0+E=", + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQDROzDzCBisy3+PvtvvCt7XxuEpNAwBS6SoK2wKJNnGgYPs8zInboOVZWqRXujOWOySPCloBfYU5B2eg94cVoDnTnc9dArWhBOK0aY93XM7/0s3/01w3Kkyi25oJytr0NRI8liZq6DnF9hFiqxRVcJkoS4+I9t9G3MURjVbcNY10+bIs6Dp9sbnJaJEWvvsbAiz1WdZBAsF3eW20mNkzmQtYoASHWv3AD/j+xLRYvx2sVcPXIGQ4fw3FqQIUOkbVQUW2lCBp+BVZgR1U4dKh5lejddxd7bXblWxJ5qqWPXulqCnUrJBBTWxTPrUxBzcZtxLAj8C04PyZPJYWVVbhuxkMgA7VeUHeZ/iFT6LZeqVtwTDlEPCzShCdIC0JWKzxI+I663YeSf2y1Jh3qT/R+e0qcduEmL3bdE+PyyvQks8WCXVfXtJeHQfkPKcy9gARpQScY/6vSyZbJNfIW1VagCCRZp54AzOlhKTUy2r97zlrzB9gBPU2ycbmLFYOglVrw6Fo6ECV8slQIxuz0lS0RbEI/+c9jWxKqcSrb0zCEgoL+HEdGaElTRENPhApPXZO+YlFZkg9NY9t+uGWCu2xPgSiR2fn44QzfWypxCq05G0fNRQRRIuMnpjkXlv66O/hju+xMTG1fVyKSKq5CA1bDdDn9euZ7Q6OAFsQX73hdYn6Q==" + ], + "suspended_at": "0001-01-01 00:00:00 +0000 UTC", + "updated_at": "2024-09-26 18:00:48 +0000 UTC", + "username": "gomez385" + }, + "sensitive_values": { + "gpg_keys": [], + "ssh_keys": [ + false, + false + ] + } + }, + { + "address": "module.repo_list[\"aws-secrets\"].github_repository.repo", + "mode": "managed", + "type": "github_repository", + "name": "repo", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 1, + "values": { + "allow_auto_merge": false, + "allow_merge_commit": false, + "allow_rebase_merge": false, + "allow_squash_merge": true, + "allow_update_branch": false, + "archive_on_destroy": true, + "archived": false, + "auto_init": true, + "default_branch": "main", + "delete_branch_on_merge": true, + "description": "Managing AWS CSVD Secrets", + "etag": "W/\"90633a005d36910ee92f96ea3a88aed81d1d544360a6a35dab08f638547b2e9c\"", + "full_name": "CSVD/aws-secrets", + "git_clone_url": "git://github.e.it.census.gov/CSVD/aws-secrets.git", + "gitignore_template": "", + "has_discussions": false, + "has_downloads": false, + "has_issues": true, + "has_projects": true, + "has_wiki": true, + "homepage_url": "", + "html_url": "https://github.e.it.census.gov/CSVD/aws-secrets", + "http_clone_url": "https://github.e.it.census.gov/CSVD/aws-secrets.git", + "id": "aws-secrets", + "ignore_vulnerability_alerts_during_read": null, + "is_template": false, + "license_template": null, + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "name": "aws-secrets", + "node_id": "MDEwOlJlcG9zaXRvcnkxMDUy", + "pages": [], + "primary_language": "HCL", + "private": false, + "repo_id": 1052, + "security_and_analysis": [ + { + "advanced_security": [ + { + "status": "disabled" + } + ], + "secret_scanning": [ + { + "status": "disabled" + } + ], + "secret_scanning_push_protection": [ + { + "status": "disabled" + } + ] + } + ], + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "ssh_clone_url": "git@github.e.it.census.gov:CSVD/aws-secrets.git", + "svn_url": "https://github.e.it.census.gov/CSVD/aws-secrets", + "template": [], + "topics": [ + "terraform-tools" + ], + "visibility": "public", + "vulnerability_alerts": false, + "web_commit_signoff_required": false + }, + "sensitive_values": { + "pages": [], + "security_and_analysis": [ + { + "advanced_security": [ + {} + ], + "secret_scanning": [ + {} + ], + "secret_scanning_push_protection": [ + {} + ] + } + ], + "template": [], + "topics": [ + false + ] + } + }, + { + "address": "module.repo_list[\"aws-secrets\"].github_repository_collaborator.collaborators[\"gomez385\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "gomez385", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "aws-secrets:gomez385", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "aws-secrets", + "username": "gomez385" + }, + "sensitive_values": {}, + "depends_on": [ + "module.repo_list.github_repository.repo" + ] + }, + { + "address": "module.repo_list[\"aws-secrets\"].github_repository_collaborator.collaborators[\"morga471\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "morga471", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "aws-secrets:morga471", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "aws-secrets", + "username": "morga471" + }, + "sensitive_values": {}, + "depends_on": [ + "module.repo_list.github_repository.repo" + ] + }, + { + "address": "module.repo_list[\"aws-secrets\"].github_repository_collaborator.collaborators[\"naray007\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "naray007", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "aws-secrets:naray007", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "aws-secrets", + "username": "naray007" + }, + "sensitive_values": {}, + "depends_on": [ + "module.repo_list.github_repository.repo" + ] + } + ], + "address": "module.repo_list[\"aws-secrets\"]" + }, + { + "resources": [ + { + "address": "module.repo_list[\"beanstalk-flask-demo\"].data.github_user.pull_request_bypassers[\"arnol377\"]", + "mode": "data", + "type": "github_user", + "name": "pull_request_bypassers", + "index": "arnol377", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "avatar_url": "https://github.e.it.census.gov/avatars/u/549?", + "bio": "", + "blog": "", + "company": "", + "created_at": "2023-12-26 17:20:24 +0000 UTC", + "email": "", + "followers": 0, + "following": 0, + "gpg_keys": [], + "gravatar_id": "", + "id": "549", + "location": "", + "login": "arnol377", + "name": "David John Arnold Jr", + "node_id": "MDQ6VXNlcjU0OQ==", + "public_gists": 0, + "public_repos": 4, + "site_admin": false, + "ssh_keys": [ + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDBL3xJ3zSxE6Qv8k9b06oFB4dbq2+PiOmsnIfAgL2XZpEenD03jhCF28iAZVy9oovuBCbcyAE9BjTRdWFSjd1dmHthbGe5Jv0/DweNFB/YmX6wJ6knljTA3frkY9bVS9+rqY6N4GG3oG6lyyk7cBaUEagXF4VQQJqX4l7XG1xxUfKLFFhF3Lq+CDg39FwlKk+QxIWMrbRJdpRBDZ03VZnKcgP0m/5K8PrcyGbxOK8qeVREUaqvmQN2Rs4LD1REPZyr3GQ2gtgpqrJ3hym7TwJw3Xl5NW8Y7RAeENem2K3EKoq6qq/wB/YUqMhKD228w5J6B+CoI8nvDqAWZkNAz/uY/GJe4elRJCmFH2F+r3263R5oDnXWSluB7XIm3b+Xt24F8MwoltejSEma41c8FM/xbF3Kle8ofBGFPEXpNDAxICVbyZ6OE4TyqTGKA8xgg9vnR3hCGGERtLYHhPw0aVHY7Zew/6/QV9o6/reO96V92zpXVEpvO09Z40fvTd5cN68=", + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDXRnBg+dayTonnZY3i0dDEHXUFMhcJKtqiFO7Oe/ejasDeW2I+L0f1gg+7u1ms/g8E28/RARN3R1aMnbGvXWdP/yBrhtpWJc5TXK+f33S5lYYjptJ2F6vj7jiRU7pP4uL9wqknj0DoSD0krAEbA85mBJgIV1viL8ZBtT/8iBoD6kHGRXaHpRH5sIFaURRJCcUTJhdqMUPd6bYKE/Bc6ioQLAEow0JB4ju1jPa7fOxhgVrIYxRiMkismhR0WLopB5JxyYDNmIyjUL2vGt9Kpd41DELv+Pn7EaP2HLjubVruWFnxnhZ7nvQwMonnZvjD3f5yPkDUkWnwaVGqw8cm9PFM4buFRmGpsl8YqTFakYgqc+JVDQB8bb9a9sr5/6Hbn41VcXd+KV6dTMK4PKSQFKLaq54ExzlwnE/EHnduE8JgvsfAa316/etFlzTQOBv1KbL8RKK0/vy6wJpiK9laDbymsOJPjZekoc/TD1AIvfWF9oae6wAU86tBVGdEO/JMOMc=", + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCvlUlp/OjFsa4fINqqMXukveo+mCu0Ywp0wwVCURkfJpPFPMdmbp07WlULCX6VgmqH4joCA+LUyY+q6iBZw80lS66lpDcRHMTG4PV7IsPpoYN20bUnm30vdqug/P1wVDuOO9B83+s3QFeBl9WbHQB3YY5pBulZGLIGw26qrLwfM5UJ4P/Ffca7ca9PM7KEkwqOC9xMfJy3tFkzD2Rjo2AHN9s7xHtpf95m8MzToy1Q7ykU/8bhImOrkZKaJJtIfmykYhebKDpeETEWJiyyaubIl71KAsWacrvQnEfo2fe62kR3SGv2auPDxMaGKPqtDpe2e/Y9I85Fv3tfWk53DDFoZNzExT4jc825bCqqz2DBbz4Q/Miw3rcdHx7uaRHinEJsBveNhZSH31GMLtU/dVNF3TNhlEH62Zmjgu7IpWb6Tr/4KnLjf/0p7ye34jP49nv1iBj99j3p1hwgAGU56ag4j7TW/iMh+uH+pg1hm6xZjhFInZGzQqtMl/qjBlr1oJ8=", + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCNVaIVHzjCkmCyQnpHfgLLvPtc96PVg/+8/cT2ty6TFe3ALaZJSHTWXjOPJaSkhBef2PCmbcsd3+p+QDl87nRl9O5fV376mrGwsxlpI2a1FnzpBkAEpZ2KyE4B593xGlpmvrMOF9gY4qGdNHCXw2puZ/IkmYaiROYpL2ptiSfTGc1R/ZrEvs0fhYwyi4xYfb+iGVSvjhhTqzJYNW6IBmMZVbDCdYX+JvSKsZYydnkHg7d9QJORZ3TnPe3Tmnn+PAse9V0z9VKOScfoRNT+Co9ezLGWNY+Dnnwg0jouA76/CiIIjWunJzLsIeu7cqNwubKO8lsLX9O+6zKR46EEaVr1VoC395IPvBy8x+VWUSpI+M7GLh0iPE56EvwiVm8irTkmY6WPsQ8PMJ5IWZE/OA6w6fupiSgBd5myFpB/wa8yVdY+UPfh40HpEXt0+iPeWK9kz/fJQAgow/FJAAsnI65JdVP4woAUYnmoJ0l6qgDyFQbOxcq7NZdmedHtRz049hM=" + ], + "suspended_at": "0001-01-01 00:00:00 +0000 UTC", + "updated_at": "2024-09-19 17:49:11 +0000 UTC", + "username": "arnol377" + }, + "sensitive_values": { + "gpg_keys": [], + "ssh_keys": [ + false, + false, + false, + false + ] + } + }, + { + "address": "module.repo_list[\"beanstalk-flask-demo\"].data.github_user.pull_request_bypassers[\"gomez385\"]", + "mode": "data", + "type": "github_user", + "name": "pull_request_bypassers", + "index": "gomez385", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "avatar_url": "https://github.e.it.census.gov/avatars/u/603?", + "bio": "", + "blog": "", + "company": "", + "created_at": "2024-06-13 14:57:04 +0000 UTC", + "email": "", + "followers": 0, + "following": 1, + "gpg_keys": [], + "gravatar_id": "", + "id": "603", + "location": "", + "login": "gomez385", + "name": "James Farr Gomez", + "node_id": "MDQ6VXNlcjYwMw==", + "public_gists": 0, + "public_repos": 0, + "site_admin": false, + "ssh_keys": [ + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDuGCb6WHZ8kex7gawtk2pmHd8t77HQ0LE+7sanVKoC5cWC/7RlefKBuH5c8F2RmmB1EaVFT2ylCsR0qnPT8xGH7gjrkRs/B8LAcwvXifev1BkPSE1gJT+lQpnwPkfqBuCbsewOR1XyPqQt5SZh4a9w7GDvBsfO2Ate9ADtX0nsI76t2DURR32ptBKnN2TtYqnD5D3VKV2lhiI2tnz8sO5FZzYycCONsv570N/itwT34gKSLVRsj+0YmPjmOU+7JWpXxdtjocw06ZEGnSyInIH4VJVROE0p3Z63xHQ9fxDtnW71zf0a9UeoY5Vb/b7PbK4NF3Dp9gG8iaL9dqeiZ1XTCcXHDyHGVFej3sl0CkB+BQ/Gz9ZCqkSBcA+n9WA5KclNuOMwe4eLXRwg/gxxmAJB707gXUk+nSPGwYTObtm0+lfspCNQxAFry8gX39mdVqnaCz1agzmwZo7rRls+BZPfDPg3YUkB3v9P8y/cbO6Bn5IRmYB2KQ73E7X8QJcW0+E=", + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQDROzDzCBisy3+PvtvvCt7XxuEpNAwBS6SoK2wKJNnGgYPs8zInboOVZWqRXujOWOySPCloBfYU5B2eg94cVoDnTnc9dArWhBOK0aY93XM7/0s3/01w3Kkyi25oJytr0NRI8liZq6DnF9hFiqxRVcJkoS4+I9t9G3MURjVbcNY10+bIs6Dp9sbnJaJEWvvsbAiz1WdZBAsF3eW20mNkzmQtYoASHWv3AD/j+xLRYvx2sVcPXIGQ4fw3FqQIUOkbVQUW2lCBp+BVZgR1U4dKh5lejddxd7bXblWxJ5qqWPXulqCnUrJBBTWxTPrUxBzcZtxLAj8C04PyZPJYWVVbhuxkMgA7VeUHeZ/iFT6LZeqVtwTDlEPCzShCdIC0JWKzxI+I663YeSf2y1Jh3qT/R+e0qcduEmL3bdE+PyyvQks8WCXVfXtJeHQfkPKcy9gARpQScY/6vSyZbJNfIW1VagCCRZp54AzOlhKTUy2r97zlrzB9gBPU2ycbmLFYOglVrw6Fo6ECV8slQIxuz0lS0RbEI/+c9jWxKqcSrb0zCEgoL+HEdGaElTRENPhApPXZO+YlFZkg9NY9t+uGWCu2xPgSiR2fn44QzfWypxCq05G0fNRQRRIuMnpjkXlv66O/hju+xMTG1fVyKSKq5CA1bDdDn9euZ7Q6OAFsQX73hdYn6Q==" + ], + "suspended_at": "0001-01-01 00:00:00 +0000 UTC", + "updated_at": "2024-09-26 18:00:48 +0000 UTC", + "username": "gomez385" + }, + "sensitive_values": { + "gpg_keys": [], + "ssh_keys": [ + false, + false + ] + } + }, + { + "address": "module.repo_list[\"beanstalk-flask-demo\"].github_repository.repo", + "mode": "managed", + "type": "github_repository", + "name": "repo", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 1, + "values": { + "allow_auto_merge": false, + "allow_merge_commit": false, + "allow_rebase_merge": false, + "allow_squash_merge": true, + "allow_update_branch": false, + "archive_on_destroy": true, + "archived": false, + "auto_init": true, + "default_branch": "main", + "delete_branch_on_merge": true, + "description": "Terraform Workspace for creating and managing AWS Beanstalk Demo", + "etag": "W/\"5b339d2f6acbb7802e62cc8a8e6683632315390f5e42fc4a3d2e662e35978dc7\"", + "full_name": "CSVD/beanstalk-flask-demo", + "git_clone_url": "git://github.e.it.census.gov/CSVD/beanstalk-flask-demo.git", + "gitignore_template": "", + "has_discussions": false, + "has_downloads": false, + "has_issues": true, + "has_projects": true, + "has_wiki": true, + "homepage_url": "", + "html_url": "https://github.e.it.census.gov/CSVD/beanstalk-flask-demo", + "http_clone_url": "https://github.e.it.census.gov/CSVD/beanstalk-flask-demo.git", + "id": "beanstalk-flask-demo", + "ignore_vulnerability_alerts_during_read": null, + "is_template": true, + "license_template": null, + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "name": "beanstalk-flask-demo", + "node_id": "MDEwOlJlcG9zaXRvcnk5MzE=", + "pages": [], + "primary_language": "Python", + "private": true, + "repo_id": 931, + "security_and_analysis": [ + { + "advanced_security": [ + { + "status": "disabled" + } + ], + "secret_scanning": [ + { + "status": "disabled" + } + ], + "secret_scanning_push_protection": [ + { + "status": "disabled" + } + ] + } + ], + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "ssh_clone_url": "git@github.e.it.census.gov:CSVD/beanstalk-flask-demo.git", + "svn_url": "https://github.e.it.census.gov/CSVD/beanstalk-flask-demo", + "template": [], + "topics": [ + "terraform" + ], + "visibility": "private", + "vulnerability_alerts": false, + "web_commit_signoff_required": false + }, + "sensitive_values": { + "pages": [], + "security_and_analysis": [ + { + "advanced_security": [ + {} + ], + "secret_scanning": [ + {} + ], + "secret_scanning_push_protection": [ + {} + ] + } + ], + "template": [], + "topics": [ + false + ] + } + }, + { + "address": "module.repo_list[\"beanstalk-flask-demo\"].github_repository_collaborator.collaborators[\"gomez385\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "gomez385", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "beanstalk-flask-demo:gomez385", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "beanstalk-flask-demo", + "username": "gomez385" + }, + "sensitive_values": {}, + "depends_on": [ + "module.repo_list.github_repository.repo" + ] + }, + { + "address": "module.repo_list[\"beanstalk-flask-demo\"].github_repository_collaborator.collaborators[\"morga471\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "morga471", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "beanstalk-flask-demo:morga471", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "beanstalk-flask-demo", + "username": "morga471" + }, + "sensitive_values": {}, + "depends_on": [ + "module.repo_list.github_repository.repo" + ] + }, + { + "address": "module.repo_list[\"beanstalk-flask-demo\"].github_repository_collaborator.collaborators[\"naray007\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "naray007", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "beanstalk-flask-demo:naray007", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "beanstalk-flask-demo", + "username": "naray007" + }, + "sensitive_values": {}, + "depends_on": [ + "module.repo_list.github_repository.repo" + ] + } + ], + "address": "module.repo_list[\"beanstalk-flask-demo\"]" + }, + { + "resources": [ + { + "address": "module.repo_list[\"csvd-org-management\"].data.github_user.pull_request_bypassers[\"arnol377\"]", + "mode": "data", + "type": "github_user", + "name": "pull_request_bypassers", + "index": "arnol377", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "avatar_url": "https://github.e.it.census.gov/avatars/u/549?", + "bio": "", + "blog": "", + "company": "", + "created_at": "2023-12-26 17:20:24 +0000 UTC", + "email": "", + "followers": 0, + "following": 0, + "gpg_keys": [], + "gravatar_id": "", + "id": "549", + "location": "", + "login": "arnol377", + "name": "David John Arnold Jr", + "node_id": "MDQ6VXNlcjU0OQ==", + "public_gists": 0, + "public_repos": 4, + "site_admin": false, + "ssh_keys": [ + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDBL3xJ3zSxE6Qv8k9b06oFB4dbq2+PiOmsnIfAgL2XZpEenD03jhCF28iAZVy9oovuBCbcyAE9BjTRdWFSjd1dmHthbGe5Jv0/DweNFB/YmX6wJ6knljTA3frkY9bVS9+rqY6N4GG3oG6lyyk7cBaUEagXF4VQQJqX4l7XG1xxUfKLFFhF3Lq+CDg39FwlKk+QxIWMrbRJdpRBDZ03VZnKcgP0m/5K8PrcyGbxOK8qeVREUaqvmQN2Rs4LD1REPZyr3GQ2gtgpqrJ3hym7TwJw3Xl5NW8Y7RAeENem2K3EKoq6qq/wB/YUqMhKD228w5J6B+CoI8nvDqAWZkNAz/uY/GJe4elRJCmFH2F+r3263R5oDnXWSluB7XIm3b+Xt24F8MwoltejSEma41c8FM/xbF3Kle8ofBGFPEXpNDAxICVbyZ6OE4TyqTGKA8xgg9vnR3hCGGERtLYHhPw0aVHY7Zew/6/QV9o6/reO96V92zpXVEpvO09Z40fvTd5cN68=", + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDXRnBg+dayTonnZY3i0dDEHXUFMhcJKtqiFO7Oe/ejasDeW2I+L0f1gg+7u1ms/g8E28/RARN3R1aMnbGvXWdP/yBrhtpWJc5TXK+f33S5lYYjptJ2F6vj7jiRU7pP4uL9wqknj0DoSD0krAEbA85mBJgIV1viL8ZBtT/8iBoD6kHGRXaHpRH5sIFaURRJCcUTJhdqMUPd6bYKE/Bc6ioQLAEow0JB4ju1jPa7fOxhgVrIYxRiMkismhR0WLopB5JxyYDNmIyjUL2vGt9Kpd41DELv+Pn7EaP2HLjubVruWFnxnhZ7nvQwMonnZvjD3f5yPkDUkWnwaVGqw8cm9PFM4buFRmGpsl8YqTFakYgqc+JVDQB8bb9a9sr5/6Hbn41VcXd+KV6dTMK4PKSQFKLaq54ExzlwnE/EHnduE8JgvsfAa316/etFlzTQOBv1KbL8RKK0/vy6wJpiK9laDbymsOJPjZekoc/TD1AIvfWF9oae6wAU86tBVGdEO/JMOMc=", + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCvlUlp/OjFsa4fINqqMXukveo+mCu0Ywp0wwVCURkfJpPFPMdmbp07WlULCX6VgmqH4joCA+LUyY+q6iBZw80lS66lpDcRHMTG4PV7IsPpoYN20bUnm30vdqug/P1wVDuOO9B83+s3QFeBl9WbHQB3YY5pBulZGLIGw26qrLwfM5UJ4P/Ffca7ca9PM7KEkwqOC9xMfJy3tFkzD2Rjo2AHN9s7xHtpf95m8MzToy1Q7ykU/8bhImOrkZKaJJtIfmykYhebKDpeETEWJiyyaubIl71KAsWacrvQnEfo2fe62kR3SGv2auPDxMaGKPqtDpe2e/Y9I85Fv3tfWk53DDFoZNzExT4jc825bCqqz2DBbz4Q/Miw3rcdHx7uaRHinEJsBveNhZSH31GMLtU/dVNF3TNhlEH62Zmjgu7IpWb6Tr/4KnLjf/0p7ye34jP49nv1iBj99j3p1hwgAGU56ag4j7TW/iMh+uH+pg1hm6xZjhFInZGzQqtMl/qjBlr1oJ8=", + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCNVaIVHzjCkmCyQnpHfgLLvPtc96PVg/+8/cT2ty6TFe3ALaZJSHTWXjOPJaSkhBef2PCmbcsd3+p+QDl87nRl9O5fV376mrGwsxlpI2a1FnzpBkAEpZ2KyE4B593xGlpmvrMOF9gY4qGdNHCXw2puZ/IkmYaiROYpL2ptiSfTGc1R/ZrEvs0fhYwyi4xYfb+iGVSvjhhTqzJYNW6IBmMZVbDCdYX+JvSKsZYydnkHg7d9QJORZ3TnPe3Tmnn+PAse9V0z9VKOScfoRNT+Co9ezLGWNY+Dnnwg0jouA76/CiIIjWunJzLsIeu7cqNwubKO8lsLX9O+6zKR46EEaVr1VoC395IPvBy8x+VWUSpI+M7GLh0iPE56EvwiVm8irTkmY6WPsQ8PMJ5IWZE/OA6w6fupiSgBd5myFpB/wa8yVdY+UPfh40HpEXt0+iPeWK9kz/fJQAgow/FJAAsnI65JdVP4woAUYnmoJ0l6qgDyFQbOxcq7NZdmedHtRz049hM=" + ], + "suspended_at": "0001-01-01 00:00:00 +0000 UTC", + "updated_at": "2024-09-19 17:49:11 +0000 UTC", + "username": "arnol377" + }, + "sensitive_values": { + "gpg_keys": [], + "ssh_keys": [ + false, + false, + false, + false + ] + } + }, + { + "address": "module.repo_list[\"csvd-org-management\"].data.github_user.pull_request_bypassers[\"gomez385\"]", + "mode": "data", + "type": "github_user", + "name": "pull_request_bypassers", + "index": "gomez385", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "avatar_url": "https://github.e.it.census.gov/avatars/u/603?", + "bio": "", + "blog": "", + "company": "", + "created_at": "2024-06-13 14:57:04 +0000 UTC", + "email": "", + "followers": 0, + "following": 1, + "gpg_keys": [], + "gravatar_id": "", + "id": "603", + "location": "", + "login": "gomez385", + "name": "James Farr Gomez", + "node_id": "MDQ6VXNlcjYwMw==", + "public_gists": 0, + "public_repos": 0, + "site_admin": false, + "ssh_keys": [ + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDuGCb6WHZ8kex7gawtk2pmHd8t77HQ0LE+7sanVKoC5cWC/7RlefKBuH5c8F2RmmB1EaVFT2ylCsR0qnPT8xGH7gjrkRs/B8LAcwvXifev1BkPSE1gJT+lQpnwPkfqBuCbsewOR1XyPqQt5SZh4a9w7GDvBsfO2Ate9ADtX0nsI76t2DURR32ptBKnN2TtYqnD5D3VKV2lhiI2tnz8sO5FZzYycCONsv570N/itwT34gKSLVRsj+0YmPjmOU+7JWpXxdtjocw06ZEGnSyInIH4VJVROE0p3Z63xHQ9fxDtnW71zf0a9UeoY5Vb/b7PbK4NF3Dp9gG8iaL9dqeiZ1XTCcXHDyHGVFej3sl0CkB+BQ/Gz9ZCqkSBcA+n9WA5KclNuOMwe4eLXRwg/gxxmAJB707gXUk+nSPGwYTObtm0+lfspCNQxAFry8gX39mdVqnaCz1agzmwZo7rRls+BZPfDPg3YUkB3v9P8y/cbO6Bn5IRmYB2KQ73E7X8QJcW0+E=", + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQDROzDzCBisy3+PvtvvCt7XxuEpNAwBS6SoK2wKJNnGgYPs8zInboOVZWqRXujOWOySPCloBfYU5B2eg94cVoDnTnc9dArWhBOK0aY93XM7/0s3/01w3Kkyi25oJytr0NRI8liZq6DnF9hFiqxRVcJkoS4+I9t9G3MURjVbcNY10+bIs6Dp9sbnJaJEWvvsbAiz1WdZBAsF3eW20mNkzmQtYoASHWv3AD/j+xLRYvx2sVcPXIGQ4fw3FqQIUOkbVQUW2lCBp+BVZgR1U4dKh5lejddxd7bXblWxJ5qqWPXulqCnUrJBBTWxTPrUxBzcZtxLAj8C04PyZPJYWVVbhuxkMgA7VeUHeZ/iFT6LZeqVtwTDlEPCzShCdIC0JWKzxI+I663YeSf2y1Jh3qT/R+e0qcduEmL3bdE+PyyvQks8WCXVfXtJeHQfkPKcy9gARpQScY/6vSyZbJNfIW1VagCCRZp54AzOlhKTUy2r97zlrzB9gBPU2ycbmLFYOglVrw6Fo6ECV8slQIxuz0lS0RbEI/+c9jWxKqcSrb0zCEgoL+HEdGaElTRENPhApPXZO+YlFZkg9NY9t+uGWCu2xPgSiR2fn44QzfWypxCq05G0fNRQRRIuMnpjkXlv66O/hju+xMTG1fVyKSKq5CA1bDdDn9euZ7Q6OAFsQX73hdYn6Q==" + ], + "suspended_at": "0001-01-01 00:00:00 +0000 UTC", + "updated_at": "2024-09-26 18:00:48 +0000 UTC", + "username": "gomez385" + }, + "sensitive_values": { + "gpg_keys": [], + "ssh_keys": [ + false, + false + ] + } + }, + { + "address": "module.repo_list[\"csvd-org-management\"].github_repository.repo", + "mode": "managed", + "type": "github_repository", + "name": "repo", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 1, + "values": { + "allow_auto_merge": false, + "allow_merge_commit": false, + "allow_rebase_merge": false, + "allow_squash_merge": true, + "allow_update_branch": false, + "archive_on_destroy": true, + "archived": false, + "auto_init": true, + "default_branch": "main", + "delete_branch_on_merge": true, + "description": "Automation Repos for Morpheus POC", + "etag": "W/\"9554696dac650a44a3e473c55ba6d9397b05313c2f16b123aa120d5bc7eeaa77\"", + "full_name": "CSVD/csvd-org-management", + "git_clone_url": "git://github.e.it.census.gov/CSVD/csvd-org-management.git", + "gitignore_template": "", + "has_discussions": false, + "has_downloads": false, + "has_issues": true, + "has_projects": true, + "has_wiki": true, + "homepage_url": "", + "html_url": "https://github.e.it.census.gov/CSVD/csvd-org-management", + "http_clone_url": "https://github.e.it.census.gov/CSVD/csvd-org-management.git", + "id": "csvd-org-management", + "ignore_vulnerability_alerts_during_read": null, + "is_template": false, + "license_template": null, + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "name": "csvd-org-management", + "node_id": "MDEwOlJlcG9zaXRvcnkxMDM4", + "pages": [], + "primary_language": "", + "private": true, + "repo_id": 1038, + "security_and_analysis": [ + { + "advanced_security": [ + { + "status": "disabled" + } + ], + "secret_scanning": [ + { + "status": "disabled" + } + ], + "secret_scanning_push_protection": [ + { + "status": "disabled" + } + ] + } + ], + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "ssh_clone_url": "git@github.e.it.census.gov:CSVD/csvd-org-management.git", + "svn_url": "https://github.e.it.census.gov/CSVD/csvd-org-management", + "template": [], + "topics": [ + "terraform" + ], + "visibility": "private", + "vulnerability_alerts": false, + "web_commit_signoff_required": false + }, + "sensitive_values": { + "pages": [], + "security_and_analysis": [ + { + "advanced_security": [ + {} + ], + "secret_scanning": [ + {} + ], + "secret_scanning_push_protection": [ + {} + ] + } + ], + "template": [], + "topics": [ + false + ] + } + }, + { + "address": "module.repo_list[\"csvd-org-management\"].github_repository_collaborator.collaborators[\"gomez385\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "gomez385", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "csvd-org-management:gomez385", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "csvd-org-management", + "username": "gomez385" + }, + "sensitive_values": {}, + "depends_on": [ + "module.repo_list.github_repository.repo" + ] + }, + { + "address": "module.repo_list[\"csvd-org-management\"].github_repository_collaborator.collaborators[\"morga471\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "morga471", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "csvd-org-management:morga471", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "csvd-org-management", + "username": "morga471" + }, + "sensitive_values": {}, + "depends_on": [ + "module.repo_list.github_repository.repo" + ] + }, + { + "address": "module.repo_list[\"csvd-org-management\"].github_repository_collaborator.collaborators[\"naray007\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "naray007", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "csvd-org-management:naray007", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "csvd-org-management", + "username": "naray007" + }, + "sensitive_values": {}, + "depends_on": [ + "module.repo_list.github_repository.repo" + ] + } + ], + "address": "module.repo_list[\"csvd-org-management\"]" + }, + { + "resources": [ + { + "address": "module.repo_list[\"docker-image-pipeline\"].data.github_user.pull_request_bypassers[\"arnol377\"]", + "mode": "data", + "type": "github_user", + "name": "pull_request_bypassers", + "index": "arnol377", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "avatar_url": "https://github.e.it.census.gov/avatars/u/549?", + "bio": "", + "blog": "", + "company": "", + "created_at": "2023-12-26 17:20:24 +0000 UTC", + "email": "", + "followers": 0, + "following": 0, + "gpg_keys": [], + "gravatar_id": "", + "id": "549", + "location": "", + "login": "arnol377", + "name": "David John Arnold Jr", + "node_id": "MDQ6VXNlcjU0OQ==", + "public_gists": 0, + "public_repos": 4, + "site_admin": false, + "ssh_keys": [ + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDBL3xJ3zSxE6Qv8k9b06oFB4dbq2+PiOmsnIfAgL2XZpEenD03jhCF28iAZVy9oovuBCbcyAE9BjTRdWFSjd1dmHthbGe5Jv0/DweNFB/YmX6wJ6knljTA3frkY9bVS9+rqY6N4GG3oG6lyyk7cBaUEagXF4VQQJqX4l7XG1xxUfKLFFhF3Lq+CDg39FwlKk+QxIWMrbRJdpRBDZ03VZnKcgP0m/5K8PrcyGbxOK8qeVREUaqvmQN2Rs4LD1REPZyr3GQ2gtgpqrJ3hym7TwJw3Xl5NW8Y7RAeENem2K3EKoq6qq/wB/YUqMhKD228w5J6B+CoI8nvDqAWZkNAz/uY/GJe4elRJCmFH2F+r3263R5oDnXWSluB7XIm3b+Xt24F8MwoltejSEma41c8FM/xbF3Kle8ofBGFPEXpNDAxICVbyZ6OE4TyqTGKA8xgg9vnR3hCGGERtLYHhPw0aVHY7Zew/6/QV9o6/reO96V92zpXVEpvO09Z40fvTd5cN68=", + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDXRnBg+dayTonnZY3i0dDEHXUFMhcJKtqiFO7Oe/ejasDeW2I+L0f1gg+7u1ms/g8E28/RARN3R1aMnbGvXWdP/yBrhtpWJc5TXK+f33S5lYYjptJ2F6vj7jiRU7pP4uL9wqknj0DoSD0krAEbA85mBJgIV1viL8ZBtT/8iBoD6kHGRXaHpRH5sIFaURRJCcUTJhdqMUPd6bYKE/Bc6ioQLAEow0JB4ju1jPa7fOxhgVrIYxRiMkismhR0WLopB5JxyYDNmIyjUL2vGt9Kpd41DELv+Pn7EaP2HLjubVruWFnxnhZ7nvQwMonnZvjD3f5yPkDUkWnwaVGqw8cm9PFM4buFRmGpsl8YqTFakYgqc+JVDQB8bb9a9sr5/6Hbn41VcXd+KV6dTMK4PKSQFKLaq54ExzlwnE/EHnduE8JgvsfAa316/etFlzTQOBv1KbL8RKK0/vy6wJpiK9laDbymsOJPjZekoc/TD1AIvfWF9oae6wAU86tBVGdEO/JMOMc=", + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCvlUlp/OjFsa4fINqqMXukveo+mCu0Ywp0wwVCURkfJpPFPMdmbp07WlULCX6VgmqH4joCA+LUyY+q6iBZw80lS66lpDcRHMTG4PV7IsPpoYN20bUnm30vdqug/P1wVDuOO9B83+s3QFeBl9WbHQB3YY5pBulZGLIGw26qrLwfM5UJ4P/Ffca7ca9PM7KEkwqOC9xMfJy3tFkzD2Rjo2AHN9s7xHtpf95m8MzToy1Q7ykU/8bhImOrkZKaJJtIfmykYhebKDpeETEWJiyyaubIl71KAsWacrvQnEfo2fe62kR3SGv2auPDxMaGKPqtDpe2e/Y9I85Fv3tfWk53DDFoZNzExT4jc825bCqqz2DBbz4Q/Miw3rcdHx7uaRHinEJsBveNhZSH31GMLtU/dVNF3TNhlEH62Zmjgu7IpWb6Tr/4KnLjf/0p7ye34jP49nv1iBj99j3p1hwgAGU56ag4j7TW/iMh+uH+pg1hm6xZjhFInZGzQqtMl/qjBlr1oJ8=", + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCNVaIVHzjCkmCyQnpHfgLLvPtc96PVg/+8/cT2ty6TFe3ALaZJSHTWXjOPJaSkhBef2PCmbcsd3+p+QDl87nRl9O5fV376mrGwsxlpI2a1FnzpBkAEpZ2KyE4B593xGlpmvrMOF9gY4qGdNHCXw2puZ/IkmYaiROYpL2ptiSfTGc1R/ZrEvs0fhYwyi4xYfb+iGVSvjhhTqzJYNW6IBmMZVbDCdYX+JvSKsZYydnkHg7d9QJORZ3TnPe3Tmnn+PAse9V0z9VKOScfoRNT+Co9ezLGWNY+Dnnwg0jouA76/CiIIjWunJzLsIeu7cqNwubKO8lsLX9O+6zKR46EEaVr1VoC395IPvBy8x+VWUSpI+M7GLh0iPE56EvwiVm8irTkmY6WPsQ8PMJ5IWZE/OA6w6fupiSgBd5myFpB/wa8yVdY+UPfh40HpEXt0+iPeWK9kz/fJQAgow/FJAAsnI65JdVP4woAUYnmoJ0l6qgDyFQbOxcq7NZdmedHtRz049hM=" + ], + "suspended_at": "0001-01-01 00:00:00 +0000 UTC", + "updated_at": "2024-09-19 17:49:11 +0000 UTC", + "username": "arnol377" + }, + "sensitive_values": { + "gpg_keys": [], + "ssh_keys": [ + false, + false, + false, + false + ] + } + }, + { + "address": "module.repo_list[\"docker-image-pipeline\"].data.github_user.pull_request_bypassers[\"gomez385\"]", + "mode": "data", + "type": "github_user", + "name": "pull_request_bypassers", + "index": "gomez385", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "avatar_url": "https://github.e.it.census.gov/avatars/u/603?", + "bio": "", + "blog": "", + "company": "", + "created_at": "2024-06-13 14:57:04 +0000 UTC", + "email": "", + "followers": 0, + "following": 1, + "gpg_keys": [], + "gravatar_id": "", + "id": "603", + "location": "", + "login": "gomez385", + "name": "James Farr Gomez", + "node_id": "MDQ6VXNlcjYwMw==", + "public_gists": 0, + "public_repos": 0, + "site_admin": false, + "ssh_keys": [ + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDuGCb6WHZ8kex7gawtk2pmHd8t77HQ0LE+7sanVKoC5cWC/7RlefKBuH5c8F2RmmB1EaVFT2ylCsR0qnPT8xGH7gjrkRs/B8LAcwvXifev1BkPSE1gJT+lQpnwPkfqBuCbsewOR1XyPqQt5SZh4a9w7GDvBsfO2Ate9ADtX0nsI76t2DURR32ptBKnN2TtYqnD5D3VKV2lhiI2tnz8sO5FZzYycCONsv570N/itwT34gKSLVRsj+0YmPjmOU+7JWpXxdtjocw06ZEGnSyInIH4VJVROE0p3Z63xHQ9fxDtnW71zf0a9UeoY5Vb/b7PbK4NF3Dp9gG8iaL9dqeiZ1XTCcXHDyHGVFej3sl0CkB+BQ/Gz9ZCqkSBcA+n9WA5KclNuOMwe4eLXRwg/gxxmAJB707gXUk+nSPGwYTObtm0+lfspCNQxAFry8gX39mdVqnaCz1agzmwZo7rRls+BZPfDPg3YUkB3v9P8y/cbO6Bn5IRmYB2KQ73E7X8QJcW0+E=", + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQDROzDzCBisy3+PvtvvCt7XxuEpNAwBS6SoK2wKJNnGgYPs8zInboOVZWqRXujOWOySPCloBfYU5B2eg94cVoDnTnc9dArWhBOK0aY93XM7/0s3/01w3Kkyi25oJytr0NRI8liZq6DnF9hFiqxRVcJkoS4+I9t9G3MURjVbcNY10+bIs6Dp9sbnJaJEWvvsbAiz1WdZBAsF3eW20mNkzmQtYoASHWv3AD/j+xLRYvx2sVcPXIGQ4fw3FqQIUOkbVQUW2lCBp+BVZgR1U4dKh5lejddxd7bXblWxJ5qqWPXulqCnUrJBBTWxTPrUxBzcZtxLAj8C04PyZPJYWVVbhuxkMgA7VeUHeZ/iFT6LZeqVtwTDlEPCzShCdIC0JWKzxI+I663YeSf2y1Jh3qT/R+e0qcduEmL3bdE+PyyvQks8WCXVfXtJeHQfkPKcy9gARpQScY/6vSyZbJNfIW1VagCCRZp54AzOlhKTUy2r97zlrzB9gBPU2ycbmLFYOglVrw6Fo6ECV8slQIxuz0lS0RbEI/+c9jWxKqcSrb0zCEgoL+HEdGaElTRENPhApPXZO+YlFZkg9NY9t+uGWCu2xPgSiR2fn44QzfWypxCq05G0fNRQRRIuMnpjkXlv66O/hju+xMTG1fVyKSKq5CA1bDdDn9euZ7Q6OAFsQX73hdYn6Q==" + ], + "suspended_at": "0001-01-01 00:00:00 +0000 UTC", + "updated_at": "2024-09-26 18:00:48 +0000 UTC", + "username": "gomez385" + }, + "sensitive_values": { + "gpg_keys": [], + "ssh_keys": [ + false, + false + ] + } + }, + { + "address": "module.repo_list[\"docker-image-pipeline\"].github_repository.repo", + "mode": "managed", + "type": "github_repository", + "name": "repo", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 1, + "values": { + "allow_auto_merge": false, + "allow_merge_commit": false, + "allow_rebase_merge": false, + "allow_squash_merge": true, + "allow_update_branch": false, + "archive_on_destroy": true, + "archived": false, + "auto_init": true, + "default_branch": "main", + "delete_branch_on_merge": true, + "description": "Template repo for windows image pipelines", + "etag": "W/\"afa36a79c806ffabd950d5c30531322108b58e75cd4e65d9475e5958d55e1115\"", + "full_name": "CSVD/docker-image-pipeline", + "git_clone_url": "git://github.e.it.census.gov/CSVD/docker-image-pipeline.git", + "gitignore_template": "", + "has_discussions": false, + "has_downloads": false, + "has_issues": true, + "has_projects": true, + "has_wiki": true, + "homepage_url": "", + "html_url": "https://github.e.it.census.gov/CSVD/docker-image-pipeline", + "http_clone_url": "https://github.e.it.census.gov/CSVD/docker-image-pipeline.git", + "id": "docker-image-pipeline", + "ignore_vulnerability_alerts_during_read": null, + "is_template": false, + "license_template": null, + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "name": "docker-image-pipeline", + "node_id": "MDEwOlJlcG9zaXRvcnkxMDEw", + "pages": [], + "primary_language": "HCL", + "private": true, + "repo_id": 1010, + "security_and_analysis": [ + { + "advanced_security": [ + { + "status": "disabled" + } + ], + "secret_scanning": [ + { + "status": "disabled" + } + ], + "secret_scanning_push_protection": [ + { + "status": "disabled" + } + ] + } + ], + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "ssh_clone_url": "git@github.e.it.census.gov:CSVD/docker-image-pipeline.git", + "svn_url": "https://github.e.it.census.gov/CSVD/docker-image-pipeline", + "template": [], + "topics": [ + "terraform" + ], + "visibility": "private", + "vulnerability_alerts": false, + "web_commit_signoff_required": false + }, + "sensitive_values": { + "pages": [], + "security_and_analysis": [ + { + "advanced_security": [ + {} + ], + "secret_scanning": [ + {} + ], + "secret_scanning_push_protection": [ + {} + ] + } + ], + "template": [], + "topics": [ + false + ] + } + }, + { + "address": "module.repo_list[\"docker-image-pipeline\"].github_repository_collaborator.collaborators[\"gomez385\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "gomez385", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "docker-image-pipeline:gomez385", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "docker-image-pipeline", + "username": "gomez385" + }, + "sensitive_values": {}, + "depends_on": [ + "module.repo_list.github_repository.repo" + ] + }, + { + "address": "module.repo_list[\"docker-image-pipeline\"].github_repository_collaborator.collaborators[\"morga471\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "morga471", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "docker-image-pipeline:morga471", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "docker-image-pipeline", + "username": "morga471" + }, + "sensitive_values": {}, + "depends_on": [ + "module.repo_list.github_repository.repo" + ] + }, + { + "address": "module.repo_list[\"docker-image-pipeline\"].github_repository_collaborator.collaborators[\"naray007\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "naray007", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "docker-image-pipeline:naray007", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "docker-image-pipeline", + "username": "naray007" + }, + "sensitive_values": {}, + "depends_on": [ + "module.repo_list.github_repository.repo" + ] + }, + { + "address": "module.repo_list[\"docker-image-pipeline\"].github_repository_file.managed_extra_files[\"s3_upload.yaml\"]", + "mode": "managed", + "type": "github_repository_file", + "name": "managed_extra_files", + "index": "s3_upload.yaml", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "autocreate_branch": false, + "autocreate_branch_source_branch": "main", + "autocreate_branch_source_sha": null, + "branch": "main", + "commit_author": null, + "commit_email": null, + "commit_message": "Update .github/workflows/s3_upload.yaml", + "commit_sha": "29fc1c4c5df968ac59495090e38075eae28e2647", + "content": "# This is a basic workflow to help you get started with Actions\nname: S3 Upload\n\non:\n push:\n branches: [ \"main\" ]\n # Allows you to run this workflow manually from the Actions tab\n workflow_dispatch:\n \n# A workflow run is made up of one or more jobs that can run sequentially or in parallel\njobs:\n # This workflow contains a single job called \"build\"\n build:\n # The type of runner that the job will run on\n runs-on: [ \"229685449397\" ]\n \n # Steps represent a sequence of tasks that will be executed as part of the job\n steps:\n # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it\n - uses: CSVD/gh-actions-checkout@v4\n id: checkout\n with:\n persist-credentials: false\n\n - uses: CSVD/gh-actions-setup-node@v3\n with:\n node-version: 16\n \n - name: AWS Auth\n id: aws_auth\n uses: CSVD/aws-auth@main\n with:\n ecs: true\n\n - run: |\n zip -r docker-image-pipeline.zip *\n aws s3 cp docker-image-pipeline.zip s3://csvd-dev-ew-github-actions\n env:\n AWS_ACCESS_KEY_ID: ${{ steps.aws_auth.outputs.aws_access_key_id }}\n AWS_SECRET_ACCESS_KEY: ${{ steps.aws_auth.outputs.aws_secret_access_key }}\n AWS_SESSION_TOKEN: ${{ steps.aws_auth.outputs.aws_session_token }}\n", + "file": ".github/workflows/s3_upload.yaml", + "id": "docker-image-pipeline/.github/workflows/s3_upload.yaml", + "overwrite_on_create": true, + "ref": "main", + "repository": "docker-image-pipeline", + "sha": "8566f43dfab1c2b1152470d7799cf7b0f1883a88" + }, + "sensitive_values": {}, + "depends_on": [ + "module.image_pipeline_repos.github_repository.repo" + ] + } + ], + "address": "module.repo_list[\"docker-image-pipeline\"]" + }, + { + "resources": [ + { + "address": "module.repo_list[\"gh-actions-setup-node\"].data.github_user.pull_request_bypassers[\"arnol377\"]", + "mode": "data", + "type": "github_user", + "name": "pull_request_bypassers", + "index": "arnol377", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "avatar_url": "https://github.e.it.census.gov/avatars/u/549?", + "bio": "", + "blog": "", + "company": "", + "created_at": "2023-12-26 17:20:24 +0000 UTC", + "email": "", + "followers": 0, + "following": 0, + "gpg_keys": [], + "gravatar_id": "", + "id": "549", + "location": "", + "login": "arnol377", + "name": "David John Arnold Jr", + "node_id": "MDQ6VXNlcjU0OQ==", + "public_gists": 0, + "public_repos": 4, + "site_admin": false, + "ssh_keys": [ + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDBL3xJ3zSxE6Qv8k9b06oFB4dbq2+PiOmsnIfAgL2XZpEenD03jhCF28iAZVy9oovuBCbcyAE9BjTRdWFSjd1dmHthbGe5Jv0/DweNFB/YmX6wJ6knljTA3frkY9bVS9+rqY6N4GG3oG6lyyk7cBaUEagXF4VQQJqX4l7XG1xxUfKLFFhF3Lq+CDg39FwlKk+QxIWMrbRJdpRBDZ03VZnKcgP0m/5K8PrcyGbxOK8qeVREUaqvmQN2Rs4LD1REPZyr3GQ2gtgpqrJ3hym7TwJw3Xl5NW8Y7RAeENem2K3EKoq6qq/wB/YUqMhKD228w5J6B+CoI8nvDqAWZkNAz/uY/GJe4elRJCmFH2F+r3263R5oDnXWSluB7XIm3b+Xt24F8MwoltejSEma41c8FM/xbF3Kle8ofBGFPEXpNDAxICVbyZ6OE4TyqTGKA8xgg9vnR3hCGGERtLYHhPw0aVHY7Zew/6/QV9o6/reO96V92zpXVEpvO09Z40fvTd5cN68=", + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDXRnBg+dayTonnZY3i0dDEHXUFMhcJKtqiFO7Oe/ejasDeW2I+L0f1gg+7u1ms/g8E28/RARN3R1aMnbGvXWdP/yBrhtpWJc5TXK+f33S5lYYjptJ2F6vj7jiRU7pP4uL9wqknj0DoSD0krAEbA85mBJgIV1viL8ZBtT/8iBoD6kHGRXaHpRH5sIFaURRJCcUTJhdqMUPd6bYKE/Bc6ioQLAEow0JB4ju1jPa7fOxhgVrIYxRiMkismhR0WLopB5JxyYDNmIyjUL2vGt9Kpd41DELv+Pn7EaP2HLjubVruWFnxnhZ7nvQwMonnZvjD3f5yPkDUkWnwaVGqw8cm9PFM4buFRmGpsl8YqTFakYgqc+JVDQB8bb9a9sr5/6Hbn41VcXd+KV6dTMK4PKSQFKLaq54ExzlwnE/EHnduE8JgvsfAa316/etFlzTQOBv1KbL8RKK0/vy6wJpiK9laDbymsOJPjZekoc/TD1AIvfWF9oae6wAU86tBVGdEO/JMOMc=", + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCvlUlp/OjFsa4fINqqMXukveo+mCu0Ywp0wwVCURkfJpPFPMdmbp07WlULCX6VgmqH4joCA+LUyY+q6iBZw80lS66lpDcRHMTG4PV7IsPpoYN20bUnm30vdqug/P1wVDuOO9B83+s3QFeBl9WbHQB3YY5pBulZGLIGw26qrLwfM5UJ4P/Ffca7ca9PM7KEkwqOC9xMfJy3tFkzD2Rjo2AHN9s7xHtpf95m8MzToy1Q7ykU/8bhImOrkZKaJJtIfmykYhebKDpeETEWJiyyaubIl71KAsWacrvQnEfo2fe62kR3SGv2auPDxMaGKPqtDpe2e/Y9I85Fv3tfWk53DDFoZNzExT4jc825bCqqz2DBbz4Q/Miw3rcdHx7uaRHinEJsBveNhZSH31GMLtU/dVNF3TNhlEH62Zmjgu7IpWb6Tr/4KnLjf/0p7ye34jP49nv1iBj99j3p1hwgAGU56ag4j7TW/iMh+uH+pg1hm6xZjhFInZGzQqtMl/qjBlr1oJ8=", + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCNVaIVHzjCkmCyQnpHfgLLvPtc96PVg/+8/cT2ty6TFe3ALaZJSHTWXjOPJaSkhBef2PCmbcsd3+p+QDl87nRl9O5fV376mrGwsxlpI2a1FnzpBkAEpZ2KyE4B593xGlpmvrMOF9gY4qGdNHCXw2puZ/IkmYaiROYpL2ptiSfTGc1R/ZrEvs0fhYwyi4xYfb+iGVSvjhhTqzJYNW6IBmMZVbDCdYX+JvSKsZYydnkHg7d9QJORZ3TnPe3Tmnn+PAse9V0z9VKOScfoRNT+Co9ezLGWNY+Dnnwg0jouA76/CiIIjWunJzLsIeu7cqNwubKO8lsLX9O+6zKR46EEaVr1VoC395IPvBy8x+VWUSpI+M7GLh0iPE56EvwiVm8irTkmY6WPsQ8PMJ5IWZE/OA6w6fupiSgBd5myFpB/wa8yVdY+UPfh40HpEXt0+iPeWK9kz/fJQAgow/FJAAsnI65JdVP4woAUYnmoJ0l6qgDyFQbOxcq7NZdmedHtRz049hM=" + ], + "suspended_at": "0001-01-01 00:00:00 +0000 UTC", + "updated_at": "2024-09-19 17:49:11 +0000 UTC", + "username": "arnol377" + }, + "sensitive_values": { + "gpg_keys": [], + "ssh_keys": [ + false, + false, + false, + false + ] + } + }, + { + "address": "module.repo_list[\"gh-actions-setup-node\"].data.github_user.pull_request_bypassers[\"gomez385\"]", + "mode": "data", + "type": "github_user", + "name": "pull_request_bypassers", + "index": "gomez385", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "avatar_url": "https://github.e.it.census.gov/avatars/u/603?", + "bio": "", + "blog": "", + "company": "", + "created_at": "2024-06-13 14:57:04 +0000 UTC", + "email": "", + "followers": 0, + "following": 1, + "gpg_keys": [], + "gravatar_id": "", + "id": "603", + "location": "", + "login": "gomez385", + "name": "James Farr Gomez", + "node_id": "MDQ6VXNlcjYwMw==", + "public_gists": 0, + "public_repos": 0, + "site_admin": false, + "ssh_keys": [ + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDuGCb6WHZ8kex7gawtk2pmHd8t77HQ0LE+7sanVKoC5cWC/7RlefKBuH5c8F2RmmB1EaVFT2ylCsR0qnPT8xGH7gjrkRs/B8LAcwvXifev1BkPSE1gJT+lQpnwPkfqBuCbsewOR1XyPqQt5SZh4a9w7GDvBsfO2Ate9ADtX0nsI76t2DURR32ptBKnN2TtYqnD5D3VKV2lhiI2tnz8sO5FZzYycCONsv570N/itwT34gKSLVRsj+0YmPjmOU+7JWpXxdtjocw06ZEGnSyInIH4VJVROE0p3Z63xHQ9fxDtnW71zf0a9UeoY5Vb/b7PbK4NF3Dp9gG8iaL9dqeiZ1XTCcXHDyHGVFej3sl0CkB+BQ/Gz9ZCqkSBcA+n9WA5KclNuOMwe4eLXRwg/gxxmAJB707gXUk+nSPGwYTObtm0+lfspCNQxAFry8gX39mdVqnaCz1agzmwZo7rRls+BZPfDPg3YUkB3v9P8y/cbO6Bn5IRmYB2KQ73E7X8QJcW0+E=", + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQDROzDzCBisy3+PvtvvCt7XxuEpNAwBS6SoK2wKJNnGgYPs8zInboOVZWqRXujOWOySPCloBfYU5B2eg94cVoDnTnc9dArWhBOK0aY93XM7/0s3/01w3Kkyi25oJytr0NRI8liZq6DnF9hFiqxRVcJkoS4+I9t9G3MURjVbcNY10+bIs6Dp9sbnJaJEWvvsbAiz1WdZBAsF3eW20mNkzmQtYoASHWv3AD/j+xLRYvx2sVcPXIGQ4fw3FqQIUOkbVQUW2lCBp+BVZgR1U4dKh5lejddxd7bXblWxJ5qqWPXulqCnUrJBBTWxTPrUxBzcZtxLAj8C04PyZPJYWVVbhuxkMgA7VeUHeZ/iFT6LZeqVtwTDlEPCzShCdIC0JWKzxI+I663YeSf2y1Jh3qT/R+e0qcduEmL3bdE+PyyvQks8WCXVfXtJeHQfkPKcy9gARpQScY/6vSyZbJNfIW1VagCCRZp54AzOlhKTUy2r97zlrzB9gBPU2ycbmLFYOglVrw6Fo6ECV8slQIxuz0lS0RbEI/+c9jWxKqcSrb0zCEgoL+HEdGaElTRENPhApPXZO+YlFZkg9NY9t+uGWCu2xPgSiR2fn44QzfWypxCq05G0fNRQRRIuMnpjkXlv66O/hju+xMTG1fVyKSKq5CA1bDdDn9euZ7Q6OAFsQX73hdYn6Q==" + ], + "suspended_at": "0001-01-01 00:00:00 +0000 UTC", + "updated_at": "2024-09-26 18:00:48 +0000 UTC", + "username": "gomez385" + }, + "sensitive_values": { + "gpg_keys": [], + "ssh_keys": [ + false, + false + ] + } + }, + { + "address": "module.repo_list[\"gh-actions-setup-node\"].github_repository.repo", + "mode": "managed", + "type": "github_repository", + "name": "repo", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 1, + "values": { + "allow_auto_merge": false, + "allow_merge_commit": false, + "allow_rebase_merge": false, + "allow_squash_merge": true, + "allow_update_branch": false, + "archive_on_destroy": true, + "archived": false, + "auto_init": true, + "default_branch": "main", + "delete_branch_on_merge": true, + "description": "Github Actions Setup Node", + "etag": "W/\"964c77b57422a0023f2e4620b4f5c0c1924de4ea312b6abd469b152922a8e6a4\"", + "full_name": "CSVD/gh-actions-setup-node", + "git_clone_url": "git://github.e.it.census.gov/CSVD/gh-actions-setup-node.git", + "gitignore_template": "", + "has_discussions": false, + "has_downloads": false, + "has_issues": true, + "has_projects": true, + "has_wiki": true, + "homepage_url": "", + "html_url": "https://github.e.it.census.gov/CSVD/gh-actions-setup-node", + "http_clone_url": "https://github.e.it.census.gov/CSVD/gh-actions-setup-node.git", + "id": "gh-actions-setup-node", + "ignore_vulnerability_alerts_during_read": null, + "is_template": false, + "license_template": null, + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "name": "gh-actions-setup-node", + "node_id": "MDEwOlJlcG9zaXRvcnk5OTk=", + "pages": [], + "primary_language": "", + "private": false, + "repo_id": 999, + "security_and_analysis": [ + { + "advanced_security": [ + { + "status": "disabled" + } + ], + "secret_scanning": [ + { + "status": "disabled" + } + ], + "secret_scanning_push_protection": [ + { + "status": "disabled" + } + ] + } + ], + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "ssh_clone_url": "git@github.e.it.census.gov:CSVD/gh-actions-setup-node.git", + "svn_url": "https://github.e.it.census.gov/CSVD/gh-actions-setup-node", + "template": [], + "topics": [ + "terraform" + ], + "visibility": "public", + "vulnerability_alerts": false, + "web_commit_signoff_required": false + }, + "sensitive_values": { + "pages": [], + "security_and_analysis": [ + { + "advanced_security": [ + {} + ], + "secret_scanning": [ + {} + ], + "secret_scanning_push_protection": [ + {} + ] + } + ], + "template": [], + "topics": [ + false + ] + } + }, + { + "address": "module.repo_list[\"gh-actions-setup-node\"].github_repository_collaborator.collaborators[\"gomez385\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "gomez385", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "gh-actions-setup-node:gomez385", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "gh-actions-setup-node", + "username": "gomez385" + }, + "sensitive_values": {}, + "depends_on": [ + "module.repo_list.github_repository.repo" + ] + }, + { + "address": "module.repo_list[\"gh-actions-setup-node\"].github_repository_collaborator.collaborators[\"morga471\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "morga471", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "gh-actions-setup-node:morga471", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "gh-actions-setup-node", + "username": "morga471" + }, + "sensitive_values": {}, + "depends_on": [ + "module.repo_list.github_repository.repo" + ] + }, + { + "address": "module.repo_list[\"gh-actions-setup-node\"].github_repository_collaborator.collaborators[\"naray007\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "naray007", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "gh-actions-setup-node:naray007", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "gh-actions-setup-node", + "username": "naray007" + }, + "sensitive_values": {}, + "depends_on": [ + "module.repo_list.github_repository.repo" + ] + } + ], + "address": "module.repo_list[\"gh-actions-setup-node\"]" + }, + { + "resources": [ + { + "address": "module.repo_list[\"github-runner-image\"].data.github_user.pull_request_bypassers[\"arnol377\"]", + "mode": "data", + "type": "github_user", + "name": "pull_request_bypassers", + "index": "arnol377", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "avatar_url": "https://github.e.it.census.gov/avatars/u/549?", + "bio": "", + "blog": "", + "company": "", + "created_at": "2023-12-26 17:20:24 +0000 UTC", + "email": "", + "followers": 0, + "following": 0, + "gpg_keys": [], + "gravatar_id": "", + "id": "549", + "location": "", + "login": "arnol377", + "name": "David John Arnold Jr", + "node_id": "MDQ6VXNlcjU0OQ==", + "public_gists": 0, + "public_repos": 4, + "site_admin": false, + "ssh_keys": [ + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDBL3xJ3zSxE6Qv8k9b06oFB4dbq2+PiOmsnIfAgL2XZpEenD03jhCF28iAZVy9oovuBCbcyAE9BjTRdWFSjd1dmHthbGe5Jv0/DweNFB/YmX6wJ6knljTA3frkY9bVS9+rqY6N4GG3oG6lyyk7cBaUEagXF4VQQJqX4l7XG1xxUfKLFFhF3Lq+CDg39FwlKk+QxIWMrbRJdpRBDZ03VZnKcgP0m/5K8PrcyGbxOK8qeVREUaqvmQN2Rs4LD1REPZyr3GQ2gtgpqrJ3hym7TwJw3Xl5NW8Y7RAeENem2K3EKoq6qq/wB/YUqMhKD228w5J6B+CoI8nvDqAWZkNAz/uY/GJe4elRJCmFH2F+r3263R5oDnXWSluB7XIm3b+Xt24F8MwoltejSEma41c8FM/xbF3Kle8ofBGFPEXpNDAxICVbyZ6OE4TyqTGKA8xgg9vnR3hCGGERtLYHhPw0aVHY7Zew/6/QV9o6/reO96V92zpXVEpvO09Z40fvTd5cN68=", + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDXRnBg+dayTonnZY3i0dDEHXUFMhcJKtqiFO7Oe/ejasDeW2I+L0f1gg+7u1ms/g8E28/RARN3R1aMnbGvXWdP/yBrhtpWJc5TXK+f33S5lYYjptJ2F6vj7jiRU7pP4uL9wqknj0DoSD0krAEbA85mBJgIV1viL8ZBtT/8iBoD6kHGRXaHpRH5sIFaURRJCcUTJhdqMUPd6bYKE/Bc6ioQLAEow0JB4ju1jPa7fOxhgVrIYxRiMkismhR0WLopB5JxyYDNmIyjUL2vGt9Kpd41DELv+Pn7EaP2HLjubVruWFnxnhZ7nvQwMonnZvjD3f5yPkDUkWnwaVGqw8cm9PFM4buFRmGpsl8YqTFakYgqc+JVDQB8bb9a9sr5/6Hbn41VcXd+KV6dTMK4PKSQFKLaq54ExzlwnE/EHnduE8JgvsfAa316/etFlzTQOBv1KbL8RKK0/vy6wJpiK9laDbymsOJPjZekoc/TD1AIvfWF9oae6wAU86tBVGdEO/JMOMc=", + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCvlUlp/OjFsa4fINqqMXukveo+mCu0Ywp0wwVCURkfJpPFPMdmbp07WlULCX6VgmqH4joCA+LUyY+q6iBZw80lS66lpDcRHMTG4PV7IsPpoYN20bUnm30vdqug/P1wVDuOO9B83+s3QFeBl9WbHQB3YY5pBulZGLIGw26qrLwfM5UJ4P/Ffca7ca9PM7KEkwqOC9xMfJy3tFkzD2Rjo2AHN9s7xHtpf95m8MzToy1Q7ykU/8bhImOrkZKaJJtIfmykYhebKDpeETEWJiyyaubIl71KAsWacrvQnEfo2fe62kR3SGv2auPDxMaGKPqtDpe2e/Y9I85Fv3tfWk53DDFoZNzExT4jc825bCqqz2DBbz4Q/Miw3rcdHx7uaRHinEJsBveNhZSH31GMLtU/dVNF3TNhlEH62Zmjgu7IpWb6Tr/4KnLjf/0p7ye34jP49nv1iBj99j3p1hwgAGU56ag4j7TW/iMh+uH+pg1hm6xZjhFInZGzQqtMl/qjBlr1oJ8=", + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCNVaIVHzjCkmCyQnpHfgLLvPtc96PVg/+8/cT2ty6TFe3ALaZJSHTWXjOPJaSkhBef2PCmbcsd3+p+QDl87nRl9O5fV376mrGwsxlpI2a1FnzpBkAEpZ2KyE4B593xGlpmvrMOF9gY4qGdNHCXw2puZ/IkmYaiROYpL2ptiSfTGc1R/ZrEvs0fhYwyi4xYfb+iGVSvjhhTqzJYNW6IBmMZVbDCdYX+JvSKsZYydnkHg7d9QJORZ3TnPe3Tmnn+PAse9V0z9VKOScfoRNT+Co9ezLGWNY+Dnnwg0jouA76/CiIIjWunJzLsIeu7cqNwubKO8lsLX9O+6zKR46EEaVr1VoC395IPvBy8x+VWUSpI+M7GLh0iPE56EvwiVm8irTkmY6WPsQ8PMJ5IWZE/OA6w6fupiSgBd5myFpB/wa8yVdY+UPfh40HpEXt0+iPeWK9kz/fJQAgow/FJAAsnI65JdVP4woAUYnmoJ0l6qgDyFQbOxcq7NZdmedHtRz049hM=" + ], + "suspended_at": "0001-01-01 00:00:00 +0000 UTC", + "updated_at": "2024-09-19 17:49:11 +0000 UTC", + "username": "arnol377" + }, + "sensitive_values": { + "gpg_keys": [], + "ssh_keys": [ + false, + false, + false, + false + ] + } + }, + { + "address": "module.repo_list[\"github-runner-image\"].data.github_user.pull_request_bypassers[\"gomez385\"]", + "mode": "data", + "type": "github_user", + "name": "pull_request_bypassers", + "index": "gomez385", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "avatar_url": "https://github.e.it.census.gov/avatars/u/603?", + "bio": "", + "blog": "", + "company": "", + "created_at": "2024-06-13 14:57:04 +0000 UTC", + "email": "", + "followers": 0, + "following": 1, + "gpg_keys": [], + "gravatar_id": "", + "id": "603", + "location": "", + "login": "gomez385", + "name": "James Farr Gomez", + "node_id": "MDQ6VXNlcjYwMw==", + "public_gists": 0, + "public_repos": 0, + "site_admin": false, + "ssh_keys": [ + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDuGCb6WHZ8kex7gawtk2pmHd8t77HQ0LE+7sanVKoC5cWC/7RlefKBuH5c8F2RmmB1EaVFT2ylCsR0qnPT8xGH7gjrkRs/B8LAcwvXifev1BkPSE1gJT+lQpnwPkfqBuCbsewOR1XyPqQt5SZh4a9w7GDvBsfO2Ate9ADtX0nsI76t2DURR32ptBKnN2TtYqnD5D3VKV2lhiI2tnz8sO5FZzYycCONsv570N/itwT34gKSLVRsj+0YmPjmOU+7JWpXxdtjocw06ZEGnSyInIH4VJVROE0p3Z63xHQ9fxDtnW71zf0a9UeoY5Vb/b7PbK4NF3Dp9gG8iaL9dqeiZ1XTCcXHDyHGVFej3sl0CkB+BQ/Gz9ZCqkSBcA+n9WA5KclNuOMwe4eLXRwg/gxxmAJB707gXUk+nSPGwYTObtm0+lfspCNQxAFry8gX39mdVqnaCz1agzmwZo7rRls+BZPfDPg3YUkB3v9P8y/cbO6Bn5IRmYB2KQ73E7X8QJcW0+E=", + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQDROzDzCBisy3+PvtvvCt7XxuEpNAwBS6SoK2wKJNnGgYPs8zInboOVZWqRXujOWOySPCloBfYU5B2eg94cVoDnTnc9dArWhBOK0aY93XM7/0s3/01w3Kkyi25oJytr0NRI8liZq6DnF9hFiqxRVcJkoS4+I9t9G3MURjVbcNY10+bIs6Dp9sbnJaJEWvvsbAiz1WdZBAsF3eW20mNkzmQtYoASHWv3AD/j+xLRYvx2sVcPXIGQ4fw3FqQIUOkbVQUW2lCBp+BVZgR1U4dKh5lejddxd7bXblWxJ5qqWPXulqCnUrJBBTWxTPrUxBzcZtxLAj8C04PyZPJYWVVbhuxkMgA7VeUHeZ/iFT6LZeqVtwTDlEPCzShCdIC0JWKzxI+I663YeSf2y1Jh3qT/R+e0qcduEmL3bdE+PyyvQks8WCXVfXtJeHQfkPKcy9gARpQScY/6vSyZbJNfIW1VagCCRZp54AzOlhKTUy2r97zlrzB9gBPU2ycbmLFYOglVrw6Fo6ECV8slQIxuz0lS0RbEI/+c9jWxKqcSrb0zCEgoL+HEdGaElTRENPhApPXZO+YlFZkg9NY9t+uGWCu2xPgSiR2fn44QzfWypxCq05G0fNRQRRIuMnpjkXlv66O/hju+xMTG1fVyKSKq5CA1bDdDn9euZ7Q6OAFsQX73hdYn6Q==" + ], + "suspended_at": "0001-01-01 00:00:00 +0000 UTC", + "updated_at": "2024-09-26 18:00:48 +0000 UTC", + "username": "gomez385" + }, + "sensitive_values": { + "gpg_keys": [], + "ssh_keys": [ + false, + false + ] + } + }, + { + "address": "module.repo_list[\"github-runner-image\"].github_repository.repo", + "mode": "managed", + "type": "github_repository", + "name": "repo", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 1, + "values": { + "allow_auto_merge": false, + "allow_merge_commit": false, + "allow_rebase_merge": false, + "allow_squash_merge": true, + "allow_update_branch": false, + "archive_on_destroy": true, + "archived": false, + "auto_init": true, + "default_branch": "main", + "delete_branch_on_merge": true, + "description": "Managing AWS Github Runner Image", + "etag": "W/\"2f8b2aad3aa99bd7955bc07a7dcae9782069a56694437a8ac371df31cba7404c\"", + "full_name": "CSVD/github-runner-image", + "git_clone_url": "git://github.e.it.census.gov/CSVD/github-runner-image.git", + "gitignore_template": "", + "has_discussions": false, + "has_downloads": false, + "has_issues": true, + "has_projects": true, + "has_wiki": true, + "homepage_url": "", + "html_url": "https://github.e.it.census.gov/CSVD/github-runner-image", + "http_clone_url": "https://github.e.it.census.gov/CSVD/github-runner-image.git", + "id": "github-runner-image", + "ignore_vulnerability_alerts_during_read": null, + "is_template": false, + "license_template": null, + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "name": "github-runner-image", + "node_id": "MDEwOlJlcG9zaXRvcnkxMDkw", + "pages": [], + "primary_language": "", + "private": false, + "repo_id": 1090, + "security_and_analysis": [ + { + "advanced_security": [ + { + "status": "disabled" + } + ], + "secret_scanning": [ + { + "status": "disabled" + } + ], + "secret_scanning_push_protection": [ + { + "status": "disabled" + } + ] + } + ], + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "ssh_clone_url": "git@github.e.it.census.gov:CSVD/github-runner-image.git", + "svn_url": "https://github.e.it.census.gov/CSVD/github-runner-image", + "template": [], + "topics": [ + "terraform-tools" + ], + "visibility": "public", + "vulnerability_alerts": false, + "web_commit_signoff_required": false + }, + "sensitive_values": { + "pages": [], + "security_and_analysis": [ + { + "advanced_security": [ + {} + ], + "secret_scanning": [ + {} + ], + "secret_scanning_push_protection": [ + {} + ] + } + ], + "template": [], + "topics": [ + false + ] + } + }, + { + "address": "module.repo_list[\"github-runner-image\"].github_repository_collaborator.collaborators[\"gomez385\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "gomez385", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "github-runner-image:gomez385", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "github-runner-image", + "username": "gomez385" + }, + "sensitive_values": {}, + "depends_on": [ + "module.repo_list.github_repository.repo" + ] + }, + { + "address": "module.repo_list[\"github-runner-image\"].github_repository_collaborator.collaborators[\"morga471\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "morga471", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "github-runner-image:morga471", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "github-runner-image", + "username": "morga471" + }, + "sensitive_values": {}, + "depends_on": [ + "module.repo_list.github_repository.repo" + ] + }, + { + "address": "module.repo_list[\"github-runner-image\"].github_repository_collaborator.collaborators[\"naray007\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "naray007", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "github-runner-image:naray007", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "github-runner-image", + "username": "naray007" + }, + "sensitive_values": {}, + "depends_on": [ + "module.repo_list.github_repository.repo" + ] + } + ], + "address": "module.repo_list[\"github-runner-image\"]" + }, + { + "resources": [ + { + "address": "module.repo_list[\"github-runner-images\"].data.github_user.pull_request_bypassers[\"arnol377\"]", + "mode": "data", + "type": "github_user", + "name": "pull_request_bypassers", + "index": "arnol377", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "avatar_url": "https://github.e.it.census.gov/avatars/u/549?", + "bio": "", + "blog": "", + "company": "", + "created_at": "2023-12-26 17:20:24 +0000 UTC", + "email": "", + "followers": 0, + "following": 0, + "gpg_keys": [], + "gravatar_id": "", + "id": "549", + "location": "", + "login": "arnol377", + "name": "David John Arnold Jr", + "node_id": "MDQ6VXNlcjU0OQ==", + "public_gists": 0, + "public_repos": 4, + "site_admin": false, + "ssh_keys": [ + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDBL3xJ3zSxE6Qv8k9b06oFB4dbq2+PiOmsnIfAgL2XZpEenD03jhCF28iAZVy9oovuBCbcyAE9BjTRdWFSjd1dmHthbGe5Jv0/DweNFB/YmX6wJ6knljTA3frkY9bVS9+rqY6N4GG3oG6lyyk7cBaUEagXF4VQQJqX4l7XG1xxUfKLFFhF3Lq+CDg39FwlKk+QxIWMrbRJdpRBDZ03VZnKcgP0m/5K8PrcyGbxOK8qeVREUaqvmQN2Rs4LD1REPZyr3GQ2gtgpqrJ3hym7TwJw3Xl5NW8Y7RAeENem2K3EKoq6qq/wB/YUqMhKD228w5J6B+CoI8nvDqAWZkNAz/uY/GJe4elRJCmFH2F+r3263R5oDnXWSluB7XIm3b+Xt24F8MwoltejSEma41c8FM/xbF3Kle8ofBGFPEXpNDAxICVbyZ6OE4TyqTGKA8xgg9vnR3hCGGERtLYHhPw0aVHY7Zew/6/QV9o6/reO96V92zpXVEpvO09Z40fvTd5cN68=", + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDXRnBg+dayTonnZY3i0dDEHXUFMhcJKtqiFO7Oe/ejasDeW2I+L0f1gg+7u1ms/g8E28/RARN3R1aMnbGvXWdP/yBrhtpWJc5TXK+f33S5lYYjptJ2F6vj7jiRU7pP4uL9wqknj0DoSD0krAEbA85mBJgIV1viL8ZBtT/8iBoD6kHGRXaHpRH5sIFaURRJCcUTJhdqMUPd6bYKE/Bc6ioQLAEow0JB4ju1jPa7fOxhgVrIYxRiMkismhR0WLopB5JxyYDNmIyjUL2vGt9Kpd41DELv+Pn7EaP2HLjubVruWFnxnhZ7nvQwMonnZvjD3f5yPkDUkWnwaVGqw8cm9PFM4buFRmGpsl8YqTFakYgqc+JVDQB8bb9a9sr5/6Hbn41VcXd+KV6dTMK4PKSQFKLaq54ExzlwnE/EHnduE8JgvsfAa316/etFlzTQOBv1KbL8RKK0/vy6wJpiK9laDbymsOJPjZekoc/TD1AIvfWF9oae6wAU86tBVGdEO/JMOMc=", + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCvlUlp/OjFsa4fINqqMXukveo+mCu0Ywp0wwVCURkfJpPFPMdmbp07WlULCX6VgmqH4joCA+LUyY+q6iBZw80lS66lpDcRHMTG4PV7IsPpoYN20bUnm30vdqug/P1wVDuOO9B83+s3QFeBl9WbHQB3YY5pBulZGLIGw26qrLwfM5UJ4P/Ffca7ca9PM7KEkwqOC9xMfJy3tFkzD2Rjo2AHN9s7xHtpf95m8MzToy1Q7ykU/8bhImOrkZKaJJtIfmykYhebKDpeETEWJiyyaubIl71KAsWacrvQnEfo2fe62kR3SGv2auPDxMaGKPqtDpe2e/Y9I85Fv3tfWk53DDFoZNzExT4jc825bCqqz2DBbz4Q/Miw3rcdHx7uaRHinEJsBveNhZSH31GMLtU/dVNF3TNhlEH62Zmjgu7IpWb6Tr/4KnLjf/0p7ye34jP49nv1iBj99j3p1hwgAGU56ag4j7TW/iMh+uH+pg1hm6xZjhFInZGzQqtMl/qjBlr1oJ8=", + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCNVaIVHzjCkmCyQnpHfgLLvPtc96PVg/+8/cT2ty6TFe3ALaZJSHTWXjOPJaSkhBef2PCmbcsd3+p+QDl87nRl9O5fV376mrGwsxlpI2a1FnzpBkAEpZ2KyE4B593xGlpmvrMOF9gY4qGdNHCXw2puZ/IkmYaiROYpL2ptiSfTGc1R/ZrEvs0fhYwyi4xYfb+iGVSvjhhTqzJYNW6IBmMZVbDCdYX+JvSKsZYydnkHg7d9QJORZ3TnPe3Tmnn+PAse9V0z9VKOScfoRNT+Co9ezLGWNY+Dnnwg0jouA76/CiIIjWunJzLsIeu7cqNwubKO8lsLX9O+6zKR46EEaVr1VoC395IPvBy8x+VWUSpI+M7GLh0iPE56EvwiVm8irTkmY6WPsQ8PMJ5IWZE/OA6w6fupiSgBd5myFpB/wa8yVdY+UPfh40HpEXt0+iPeWK9kz/fJQAgow/FJAAsnI65JdVP4woAUYnmoJ0l6qgDyFQbOxcq7NZdmedHtRz049hM=" + ], + "suspended_at": "0001-01-01 00:00:00 +0000 UTC", + "updated_at": "2024-09-19 17:49:11 +0000 UTC", + "username": "arnol377" + }, + "sensitive_values": { + "gpg_keys": [], + "ssh_keys": [ + false, + false, + false, + false + ] + } + }, + { + "address": "module.repo_list[\"github-runner-images\"].data.github_user.pull_request_bypassers[\"gomez385\"]", + "mode": "data", + "type": "github_user", + "name": "pull_request_bypassers", + "index": "gomez385", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "avatar_url": "https://github.e.it.census.gov/avatars/u/603?", + "bio": "", + "blog": "", + "company": "", + "created_at": "2024-06-13 14:57:04 +0000 UTC", + "email": "", + "followers": 0, + "following": 1, + "gpg_keys": [], + "gravatar_id": "", + "id": "603", + "location": "", + "login": "gomez385", + "name": "James Farr Gomez", + "node_id": "MDQ6VXNlcjYwMw==", + "public_gists": 0, + "public_repos": 0, + "site_admin": false, + "ssh_keys": [ + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDuGCb6WHZ8kex7gawtk2pmHd8t77HQ0LE+7sanVKoC5cWC/7RlefKBuH5c8F2RmmB1EaVFT2ylCsR0qnPT8xGH7gjrkRs/B8LAcwvXifev1BkPSE1gJT+lQpnwPkfqBuCbsewOR1XyPqQt5SZh4a9w7GDvBsfO2Ate9ADtX0nsI76t2DURR32ptBKnN2TtYqnD5D3VKV2lhiI2tnz8sO5FZzYycCONsv570N/itwT34gKSLVRsj+0YmPjmOU+7JWpXxdtjocw06ZEGnSyInIH4VJVROE0p3Z63xHQ9fxDtnW71zf0a9UeoY5Vb/b7PbK4NF3Dp9gG8iaL9dqeiZ1XTCcXHDyHGVFej3sl0CkB+BQ/Gz9ZCqkSBcA+n9WA5KclNuOMwe4eLXRwg/gxxmAJB707gXUk+nSPGwYTObtm0+lfspCNQxAFry8gX39mdVqnaCz1agzmwZo7rRls+BZPfDPg3YUkB3v9P8y/cbO6Bn5IRmYB2KQ73E7X8QJcW0+E=", + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQDROzDzCBisy3+PvtvvCt7XxuEpNAwBS6SoK2wKJNnGgYPs8zInboOVZWqRXujOWOySPCloBfYU5B2eg94cVoDnTnc9dArWhBOK0aY93XM7/0s3/01w3Kkyi25oJytr0NRI8liZq6DnF9hFiqxRVcJkoS4+I9t9G3MURjVbcNY10+bIs6Dp9sbnJaJEWvvsbAiz1WdZBAsF3eW20mNkzmQtYoASHWv3AD/j+xLRYvx2sVcPXIGQ4fw3FqQIUOkbVQUW2lCBp+BVZgR1U4dKh5lejddxd7bXblWxJ5qqWPXulqCnUrJBBTWxTPrUxBzcZtxLAj8C04PyZPJYWVVbhuxkMgA7VeUHeZ/iFT6LZeqVtwTDlEPCzShCdIC0JWKzxI+I663YeSf2y1Jh3qT/R+e0qcduEmL3bdE+PyyvQks8WCXVfXtJeHQfkPKcy9gARpQScY/6vSyZbJNfIW1VagCCRZp54AzOlhKTUy2r97zlrzB9gBPU2ycbmLFYOglVrw6Fo6ECV8slQIxuz0lS0RbEI/+c9jWxKqcSrb0zCEgoL+HEdGaElTRENPhApPXZO+YlFZkg9NY9t+uGWCu2xPgSiR2fn44QzfWypxCq05G0fNRQRRIuMnpjkXlv66O/hju+xMTG1fVyKSKq5CA1bDdDn9euZ7Q6OAFsQX73hdYn6Q==" + ], + "suspended_at": "0001-01-01 00:00:00 +0000 UTC", + "updated_at": "2024-09-26 18:00:48 +0000 UTC", + "username": "gomez385" + }, + "sensitive_values": { + "gpg_keys": [], + "ssh_keys": [ + false, + false + ] + } + }, + { + "address": "module.repo_list[\"github-runner-images\"].github_repository.repo", + "mode": "managed", + "type": "github_repository", + "name": "repo", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 1, + "values": { + "allow_auto_merge": false, + "allow_merge_commit": false, + "allow_rebase_merge": false, + "allow_squash_merge": true, + "allow_update_branch": false, + "archive_on_destroy": true, + "archived": false, + "auto_init": true, + "default_branch": "main", + "delete_branch_on_merge": true, + "description": "Github Runner Images Import", + "etag": "W/\"dc287ae8ded798ee81678d17632ee54721af2a9e4955fb332971325a1a23ef43\"", + "full_name": "CSVD/github-runner-images", + "git_clone_url": "git://github.e.it.census.gov/CSVD/github-runner-images.git", + "gitignore_template": "", + "has_discussions": false, + "has_downloads": false, + "has_issues": true, + "has_projects": true, + "has_wiki": true, + "homepage_url": "", + "html_url": "https://github.e.it.census.gov/CSVD/github-runner-images", + "http_clone_url": "https://github.e.it.census.gov/CSVD/github-runner-images.git", + "id": "github-runner-images", + "ignore_vulnerability_alerts_during_read": null, + "is_template": false, + "license_template": null, + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "name": "github-runner-images", + "node_id": "MDEwOlJlcG9zaXRvcnkxMDM2", + "pages": [], + "primary_language": "HCL", + "private": true, + "repo_id": 1036, + "security_and_analysis": [ + { + "advanced_security": [ + { + "status": "disabled" + } + ], + "secret_scanning": [ + { + "status": "disabled" + } + ], + "secret_scanning_push_protection": [ + { + "status": "disabled" + } + ] + } + ], + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "ssh_clone_url": "git@github.e.it.census.gov:CSVD/github-runner-images.git", + "svn_url": "https://github.e.it.census.gov/CSVD/github-runner-images", + "template": [], + "topics": [ + "terraform" + ], + "visibility": "private", + "vulnerability_alerts": false, + "web_commit_signoff_required": false + }, + "sensitive_values": { + "pages": [], + "security_and_analysis": [ + { + "advanced_security": [ + {} + ], + "secret_scanning": [ + {} + ], + "secret_scanning_push_protection": [ + {} + ] + } + ], + "template": [], + "topics": [ + false + ] + } + }, + { + "address": "module.repo_list[\"github-runner-images\"].github_repository_collaborator.collaborators[\"gomez385\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "gomez385", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "github-runner-images:gomez385", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "github-runner-images", + "username": "gomez385" + }, + "sensitive_values": {}, + "depends_on": [ + "module.repo_list.github_repository.repo" + ] + }, + { + "address": "module.repo_list[\"github-runner-images\"].github_repository_collaborator.collaborators[\"morga471\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "morga471", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "github-runner-images:morga471", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "github-runner-images", + "username": "morga471" + }, + "sensitive_values": {}, + "depends_on": [ + "module.repo_list.github_repository.repo" + ] + }, + { + "address": "module.repo_list[\"github-runner-images\"].github_repository_collaborator.collaborators[\"naray007\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "naray007", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "github-runner-images:naray007", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "github-runner-images", + "username": "naray007" + }, + "sensitive_values": {}, + "depends_on": [ + "module.repo_list.github_repository.repo" + ] + } + ], + "address": "module.repo_list[\"github-runner-images\"]" + }, + { + "resources": [ + { + "address": "module.repo_list[\"github-runners-workspace\"].data.github_user.pull_request_bypassers[\"arnol377\"]", + "mode": "data", + "type": "github_user", + "name": "pull_request_bypassers", + "index": "arnol377", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "avatar_url": "https://github.e.it.census.gov/avatars/u/549?", + "bio": "", + "blog": "", + "company": "", + "created_at": "2023-12-26 17:20:24 +0000 UTC", + "email": "", + "followers": 0, + "following": 0, + "gpg_keys": [], + "gravatar_id": "", + "id": "549", + "location": "", + "login": "arnol377", + "name": "David John Arnold Jr", + "node_id": "MDQ6VXNlcjU0OQ==", + "public_gists": 0, + "public_repos": 4, + "site_admin": false, + "ssh_keys": [ + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDBL3xJ3zSxE6Qv8k9b06oFB4dbq2+PiOmsnIfAgL2XZpEenD03jhCF28iAZVy9oovuBCbcyAE9BjTRdWFSjd1dmHthbGe5Jv0/DweNFB/YmX6wJ6knljTA3frkY9bVS9+rqY6N4GG3oG6lyyk7cBaUEagXF4VQQJqX4l7XG1xxUfKLFFhF3Lq+CDg39FwlKk+QxIWMrbRJdpRBDZ03VZnKcgP0m/5K8PrcyGbxOK8qeVREUaqvmQN2Rs4LD1REPZyr3GQ2gtgpqrJ3hym7TwJw3Xl5NW8Y7RAeENem2K3EKoq6qq/wB/YUqMhKD228w5J6B+CoI8nvDqAWZkNAz/uY/GJe4elRJCmFH2F+r3263R5oDnXWSluB7XIm3b+Xt24F8MwoltejSEma41c8FM/xbF3Kle8ofBGFPEXpNDAxICVbyZ6OE4TyqTGKA8xgg9vnR3hCGGERtLYHhPw0aVHY7Zew/6/QV9o6/reO96V92zpXVEpvO09Z40fvTd5cN68=", + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDXRnBg+dayTonnZY3i0dDEHXUFMhcJKtqiFO7Oe/ejasDeW2I+L0f1gg+7u1ms/g8E28/RARN3R1aMnbGvXWdP/yBrhtpWJc5TXK+f33S5lYYjptJ2F6vj7jiRU7pP4uL9wqknj0DoSD0krAEbA85mBJgIV1viL8ZBtT/8iBoD6kHGRXaHpRH5sIFaURRJCcUTJhdqMUPd6bYKE/Bc6ioQLAEow0JB4ju1jPa7fOxhgVrIYxRiMkismhR0WLopB5JxyYDNmIyjUL2vGt9Kpd41DELv+Pn7EaP2HLjubVruWFnxnhZ7nvQwMonnZvjD3f5yPkDUkWnwaVGqw8cm9PFM4buFRmGpsl8YqTFakYgqc+JVDQB8bb9a9sr5/6Hbn41VcXd+KV6dTMK4PKSQFKLaq54ExzlwnE/EHnduE8JgvsfAa316/etFlzTQOBv1KbL8RKK0/vy6wJpiK9laDbymsOJPjZekoc/TD1AIvfWF9oae6wAU86tBVGdEO/JMOMc=", + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCvlUlp/OjFsa4fINqqMXukveo+mCu0Ywp0wwVCURkfJpPFPMdmbp07WlULCX6VgmqH4joCA+LUyY+q6iBZw80lS66lpDcRHMTG4PV7IsPpoYN20bUnm30vdqug/P1wVDuOO9B83+s3QFeBl9WbHQB3YY5pBulZGLIGw26qrLwfM5UJ4P/Ffca7ca9PM7KEkwqOC9xMfJy3tFkzD2Rjo2AHN9s7xHtpf95m8MzToy1Q7ykU/8bhImOrkZKaJJtIfmykYhebKDpeETEWJiyyaubIl71KAsWacrvQnEfo2fe62kR3SGv2auPDxMaGKPqtDpe2e/Y9I85Fv3tfWk53DDFoZNzExT4jc825bCqqz2DBbz4Q/Miw3rcdHx7uaRHinEJsBveNhZSH31GMLtU/dVNF3TNhlEH62Zmjgu7IpWb6Tr/4KnLjf/0p7ye34jP49nv1iBj99j3p1hwgAGU56ag4j7TW/iMh+uH+pg1hm6xZjhFInZGzQqtMl/qjBlr1oJ8=", + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCNVaIVHzjCkmCyQnpHfgLLvPtc96PVg/+8/cT2ty6TFe3ALaZJSHTWXjOPJaSkhBef2PCmbcsd3+p+QDl87nRl9O5fV376mrGwsxlpI2a1FnzpBkAEpZ2KyE4B593xGlpmvrMOF9gY4qGdNHCXw2puZ/IkmYaiROYpL2ptiSfTGc1R/ZrEvs0fhYwyi4xYfb+iGVSvjhhTqzJYNW6IBmMZVbDCdYX+JvSKsZYydnkHg7d9QJORZ3TnPe3Tmnn+PAse9V0z9VKOScfoRNT+Co9ezLGWNY+Dnnwg0jouA76/CiIIjWunJzLsIeu7cqNwubKO8lsLX9O+6zKR46EEaVr1VoC395IPvBy8x+VWUSpI+M7GLh0iPE56EvwiVm8irTkmY6WPsQ8PMJ5IWZE/OA6w6fupiSgBd5myFpB/wa8yVdY+UPfh40HpEXt0+iPeWK9kz/fJQAgow/FJAAsnI65JdVP4woAUYnmoJ0l6qgDyFQbOxcq7NZdmedHtRz049hM=" + ], + "suspended_at": "0001-01-01 00:00:00 +0000 UTC", + "updated_at": "2024-09-19 17:49:11 +0000 UTC", + "username": "arnol377" + }, + "sensitive_values": { + "gpg_keys": [], + "ssh_keys": [ + false, + false, + false, + false + ] + } + }, + { + "address": "module.repo_list[\"github-runners-workspace\"].data.github_user.pull_request_bypassers[\"gomez385\"]", + "mode": "data", + "type": "github_user", + "name": "pull_request_bypassers", + "index": "gomez385", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "avatar_url": "https://github.e.it.census.gov/avatars/u/603?", + "bio": "", + "blog": "", + "company": "", + "created_at": "2024-06-13 14:57:04 +0000 UTC", + "email": "", + "followers": 0, + "following": 1, + "gpg_keys": [], + "gravatar_id": "", + "id": "603", + "location": "", + "login": "gomez385", + "name": "James Farr Gomez", + "node_id": "MDQ6VXNlcjYwMw==", + "public_gists": 0, + "public_repos": 0, + "site_admin": false, + "ssh_keys": [ + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDuGCb6WHZ8kex7gawtk2pmHd8t77HQ0LE+7sanVKoC5cWC/7RlefKBuH5c8F2RmmB1EaVFT2ylCsR0qnPT8xGH7gjrkRs/B8LAcwvXifev1BkPSE1gJT+lQpnwPkfqBuCbsewOR1XyPqQt5SZh4a9w7GDvBsfO2Ate9ADtX0nsI76t2DURR32ptBKnN2TtYqnD5D3VKV2lhiI2tnz8sO5FZzYycCONsv570N/itwT34gKSLVRsj+0YmPjmOU+7JWpXxdtjocw06ZEGnSyInIH4VJVROE0p3Z63xHQ9fxDtnW71zf0a9UeoY5Vb/b7PbK4NF3Dp9gG8iaL9dqeiZ1XTCcXHDyHGVFej3sl0CkB+BQ/Gz9ZCqkSBcA+n9WA5KclNuOMwe4eLXRwg/gxxmAJB707gXUk+nSPGwYTObtm0+lfspCNQxAFry8gX39mdVqnaCz1agzmwZo7rRls+BZPfDPg3YUkB3v9P8y/cbO6Bn5IRmYB2KQ73E7X8QJcW0+E=", + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQDROzDzCBisy3+PvtvvCt7XxuEpNAwBS6SoK2wKJNnGgYPs8zInboOVZWqRXujOWOySPCloBfYU5B2eg94cVoDnTnc9dArWhBOK0aY93XM7/0s3/01w3Kkyi25oJytr0NRI8liZq6DnF9hFiqxRVcJkoS4+I9t9G3MURjVbcNY10+bIs6Dp9sbnJaJEWvvsbAiz1WdZBAsF3eW20mNkzmQtYoASHWv3AD/j+xLRYvx2sVcPXIGQ4fw3FqQIUOkbVQUW2lCBp+BVZgR1U4dKh5lejddxd7bXblWxJ5qqWPXulqCnUrJBBTWxTPrUxBzcZtxLAj8C04PyZPJYWVVbhuxkMgA7VeUHeZ/iFT6LZeqVtwTDlEPCzShCdIC0JWKzxI+I663YeSf2y1Jh3qT/R+e0qcduEmL3bdE+PyyvQks8WCXVfXtJeHQfkPKcy9gARpQScY/6vSyZbJNfIW1VagCCRZp54AzOlhKTUy2r97zlrzB9gBPU2ycbmLFYOglVrw6Fo6ECV8slQIxuz0lS0RbEI/+c9jWxKqcSrb0zCEgoL+HEdGaElTRENPhApPXZO+YlFZkg9NY9t+uGWCu2xPgSiR2fn44QzfWypxCq05G0fNRQRRIuMnpjkXlv66O/hju+xMTG1fVyKSKq5CA1bDdDn9euZ7Q6OAFsQX73hdYn6Q==" + ], + "suspended_at": "0001-01-01 00:00:00 +0000 UTC", + "updated_at": "2024-09-26 18:00:48 +0000 UTC", + "username": "gomez385" + }, + "sensitive_values": { + "gpg_keys": [], + "ssh_keys": [ + false, + false + ] + } + }, + { + "address": "module.repo_list[\"github-runners-workspace\"].github_repository.repo", + "mode": "managed", + "type": "github_repository", + "name": "repo", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 1, + "values": { + "allow_auto_merge": false, + "allow_merge_commit": false, + "allow_rebase_merge": false, + "allow_squash_merge": true, + "allow_update_branch": false, + "archive_on_destroy": true, + "archived": false, + "auto_init": true, + "default_branch": "main", + "delete_branch_on_merge": true, + "description": "Workspace for ghe-runners and github-runner-image", + "etag": "W/\"7559eec0909abf1f686d9290c2b78aa4f88dbdeee11ca5f1c2ffcd5b9624c02d\"", + "full_name": "CSVD/github-runners-workspace", + "git_clone_url": "git://github.e.it.census.gov/CSVD/github-runners-workspace.git", + "gitignore_template": "", + "has_discussions": false, + "has_downloads": false, + "has_issues": true, + "has_projects": true, + "has_wiki": true, + "homepage_url": "", + "html_url": "https://github.e.it.census.gov/CSVD/github-runners-workspace", + "http_clone_url": "https://github.e.it.census.gov/CSVD/github-runners-workspace.git", + "id": "github-runners-workspace", + "ignore_vulnerability_alerts_during_read": null, + "is_template": true, + "license_template": null, + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "name": "github-runners-workspace", + "node_id": "MDEwOlJlcG9zaXRvcnkxMTEz", + "pages": [], + "primary_language": "HCL", + "private": true, + "repo_id": 1113, + "security_and_analysis": [ + { + "advanced_security": [ + { + "status": "disabled" + } + ], + "secret_scanning": [ + { + "status": "disabled" + } + ], + "secret_scanning_push_protection": [ + { + "status": "disabled" + } + ] + } + ], + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "ssh_clone_url": "git@github.e.it.census.gov:CSVD/github-runners-workspace.git", + "svn_url": "https://github.e.it.census.gov/CSVD/github-runners-workspace", + "template": [], + "topics": [ + "github-actions", + "terraform-tools" + ], + "visibility": "private", + "vulnerability_alerts": false, + "web_commit_signoff_required": false + }, + "sensitive_values": { + "pages": [], + "security_and_analysis": [ + { + "advanced_security": [ + {} + ], + "secret_scanning": [ + {} + ], + "secret_scanning_push_protection": [ + {} + ] + } + ], + "template": [], + "topics": [ + false, + false + ] + } + }, + { + "address": "module.repo_list[\"github-runners-workspace\"].github_repository_collaborator.collaborators[\"gomez385\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "gomez385", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "github-runners-workspace:gomez385", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "github-runners-workspace", + "username": "gomez385" + }, + "sensitive_values": {}, + "depends_on": [ + "module.repo_list.github_repository.repo" + ] + }, + { + "address": "module.repo_list[\"github-runners-workspace\"].github_repository_collaborator.collaborators[\"morga471\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "morga471", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "github-runners-workspace:morga471", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "github-runners-workspace", + "username": "morga471" + }, + "sensitive_values": {}, + "depends_on": [ + "module.repo_list.github_repository.repo" + ] + }, + { + "address": "module.repo_list[\"github-runners-workspace\"].github_repository_collaborator.collaborators[\"naray007\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "naray007", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "github-runners-workspace:naray007", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "github-runners-workspace", + "username": "naray007" + }, + "sensitive_values": {}, + "depends_on": [ + "module.repo_list.github_repository.repo" + ] + } + ], + "address": "module.repo_list[\"github-runners-workspace\"]" + }, + { + "resources": [ + { + "address": "module.repo_list[\"github-workspaces\"].data.github_user.pull_request_bypassers[\"arnol377\"]", + "mode": "data", + "type": "github_user", + "name": "pull_request_bypassers", + "index": "arnol377", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "avatar_url": "https://github.e.it.census.gov/avatars/u/549?", + "bio": "", + "blog": "", + "company": "", + "created_at": "2023-12-26 17:20:24 +0000 UTC", + "email": "", + "followers": 0, + "following": 0, + "gpg_keys": [], + "gravatar_id": "", + "id": "549", + "location": "", + "login": "arnol377", + "name": "David John Arnold Jr", + "node_id": "MDQ6VXNlcjU0OQ==", + "public_gists": 0, + "public_repos": 4, + "site_admin": false, + "ssh_keys": [ + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDBL3xJ3zSxE6Qv8k9b06oFB4dbq2+PiOmsnIfAgL2XZpEenD03jhCF28iAZVy9oovuBCbcyAE9BjTRdWFSjd1dmHthbGe5Jv0/DweNFB/YmX6wJ6knljTA3frkY9bVS9+rqY6N4GG3oG6lyyk7cBaUEagXF4VQQJqX4l7XG1xxUfKLFFhF3Lq+CDg39FwlKk+QxIWMrbRJdpRBDZ03VZnKcgP0m/5K8PrcyGbxOK8qeVREUaqvmQN2Rs4LD1REPZyr3GQ2gtgpqrJ3hym7TwJw3Xl5NW8Y7RAeENem2K3EKoq6qq/wB/YUqMhKD228w5J6B+CoI8nvDqAWZkNAz/uY/GJe4elRJCmFH2F+r3263R5oDnXWSluB7XIm3b+Xt24F8MwoltejSEma41c8FM/xbF3Kle8ofBGFPEXpNDAxICVbyZ6OE4TyqTGKA8xgg9vnR3hCGGERtLYHhPw0aVHY7Zew/6/QV9o6/reO96V92zpXVEpvO09Z40fvTd5cN68=", + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDXRnBg+dayTonnZY3i0dDEHXUFMhcJKtqiFO7Oe/ejasDeW2I+L0f1gg+7u1ms/g8E28/RARN3R1aMnbGvXWdP/yBrhtpWJc5TXK+f33S5lYYjptJ2F6vj7jiRU7pP4uL9wqknj0DoSD0krAEbA85mBJgIV1viL8ZBtT/8iBoD6kHGRXaHpRH5sIFaURRJCcUTJhdqMUPd6bYKE/Bc6ioQLAEow0JB4ju1jPa7fOxhgVrIYxRiMkismhR0WLopB5JxyYDNmIyjUL2vGt9Kpd41DELv+Pn7EaP2HLjubVruWFnxnhZ7nvQwMonnZvjD3f5yPkDUkWnwaVGqw8cm9PFM4buFRmGpsl8YqTFakYgqc+JVDQB8bb9a9sr5/6Hbn41VcXd+KV6dTMK4PKSQFKLaq54ExzlwnE/EHnduE8JgvsfAa316/etFlzTQOBv1KbL8RKK0/vy6wJpiK9laDbymsOJPjZekoc/TD1AIvfWF9oae6wAU86tBVGdEO/JMOMc=", + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCvlUlp/OjFsa4fINqqMXukveo+mCu0Ywp0wwVCURkfJpPFPMdmbp07WlULCX6VgmqH4joCA+LUyY+q6iBZw80lS66lpDcRHMTG4PV7IsPpoYN20bUnm30vdqug/P1wVDuOO9B83+s3QFeBl9WbHQB3YY5pBulZGLIGw26qrLwfM5UJ4P/Ffca7ca9PM7KEkwqOC9xMfJy3tFkzD2Rjo2AHN9s7xHtpf95m8MzToy1Q7ykU/8bhImOrkZKaJJtIfmykYhebKDpeETEWJiyyaubIl71KAsWacrvQnEfo2fe62kR3SGv2auPDxMaGKPqtDpe2e/Y9I85Fv3tfWk53DDFoZNzExT4jc825bCqqz2DBbz4Q/Miw3rcdHx7uaRHinEJsBveNhZSH31GMLtU/dVNF3TNhlEH62Zmjgu7IpWb6Tr/4KnLjf/0p7ye34jP49nv1iBj99j3p1hwgAGU56ag4j7TW/iMh+uH+pg1hm6xZjhFInZGzQqtMl/qjBlr1oJ8=", + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCNVaIVHzjCkmCyQnpHfgLLvPtc96PVg/+8/cT2ty6TFe3ALaZJSHTWXjOPJaSkhBef2PCmbcsd3+p+QDl87nRl9O5fV376mrGwsxlpI2a1FnzpBkAEpZ2KyE4B593xGlpmvrMOF9gY4qGdNHCXw2puZ/IkmYaiROYpL2ptiSfTGc1R/ZrEvs0fhYwyi4xYfb+iGVSvjhhTqzJYNW6IBmMZVbDCdYX+JvSKsZYydnkHg7d9QJORZ3TnPe3Tmnn+PAse9V0z9VKOScfoRNT+Co9ezLGWNY+Dnnwg0jouA76/CiIIjWunJzLsIeu7cqNwubKO8lsLX9O+6zKR46EEaVr1VoC395IPvBy8x+VWUSpI+M7GLh0iPE56EvwiVm8irTkmY6WPsQ8PMJ5IWZE/OA6w6fupiSgBd5myFpB/wa8yVdY+UPfh40HpEXt0+iPeWK9kz/fJQAgow/FJAAsnI65JdVP4woAUYnmoJ0l6qgDyFQbOxcq7NZdmedHtRz049hM=" + ], + "suspended_at": "0001-01-01 00:00:00 +0000 UTC", + "updated_at": "2024-09-19 17:49:11 +0000 UTC", + "username": "arnol377" + }, + "sensitive_values": { + "gpg_keys": [], + "ssh_keys": [ + false, + false, + false, + false + ] + } + }, + { + "address": "module.repo_list[\"github-workspaces\"].data.github_user.pull_request_bypassers[\"gomez385\"]", + "mode": "data", + "type": "github_user", + "name": "pull_request_bypassers", + "index": "gomez385", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "avatar_url": "https://github.e.it.census.gov/avatars/u/603?", + "bio": "", + "blog": "", + "company": "", + "created_at": "2024-06-13 14:57:04 +0000 UTC", + "email": "", + "followers": 0, + "following": 1, + "gpg_keys": [], + "gravatar_id": "", + "id": "603", + "location": "", + "login": "gomez385", + "name": "James Farr Gomez", + "node_id": "MDQ6VXNlcjYwMw==", + "public_gists": 0, + "public_repos": 0, + "site_admin": false, + "ssh_keys": [ + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDuGCb6WHZ8kex7gawtk2pmHd8t77HQ0LE+7sanVKoC5cWC/7RlefKBuH5c8F2RmmB1EaVFT2ylCsR0qnPT8xGH7gjrkRs/B8LAcwvXifev1BkPSE1gJT+lQpnwPkfqBuCbsewOR1XyPqQt5SZh4a9w7GDvBsfO2Ate9ADtX0nsI76t2DURR32ptBKnN2TtYqnD5D3VKV2lhiI2tnz8sO5FZzYycCONsv570N/itwT34gKSLVRsj+0YmPjmOU+7JWpXxdtjocw06ZEGnSyInIH4VJVROE0p3Z63xHQ9fxDtnW71zf0a9UeoY5Vb/b7PbK4NF3Dp9gG8iaL9dqeiZ1XTCcXHDyHGVFej3sl0CkB+BQ/Gz9ZCqkSBcA+n9WA5KclNuOMwe4eLXRwg/gxxmAJB707gXUk+nSPGwYTObtm0+lfspCNQxAFry8gX39mdVqnaCz1agzmwZo7rRls+BZPfDPg3YUkB3v9P8y/cbO6Bn5IRmYB2KQ73E7X8QJcW0+E=", + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQDROzDzCBisy3+PvtvvCt7XxuEpNAwBS6SoK2wKJNnGgYPs8zInboOVZWqRXujOWOySPCloBfYU5B2eg94cVoDnTnc9dArWhBOK0aY93XM7/0s3/01w3Kkyi25oJytr0NRI8liZq6DnF9hFiqxRVcJkoS4+I9t9G3MURjVbcNY10+bIs6Dp9sbnJaJEWvvsbAiz1WdZBAsF3eW20mNkzmQtYoASHWv3AD/j+xLRYvx2sVcPXIGQ4fw3FqQIUOkbVQUW2lCBp+BVZgR1U4dKh5lejddxd7bXblWxJ5qqWPXulqCnUrJBBTWxTPrUxBzcZtxLAj8C04PyZPJYWVVbhuxkMgA7VeUHeZ/iFT6LZeqVtwTDlEPCzShCdIC0JWKzxI+I663YeSf2y1Jh3qT/R+e0qcduEmL3bdE+PyyvQks8WCXVfXtJeHQfkPKcy9gARpQScY/6vSyZbJNfIW1VagCCRZp54AzOlhKTUy2r97zlrzB9gBPU2ycbmLFYOglVrw6Fo6ECV8slQIxuz0lS0RbEI/+c9jWxKqcSrb0zCEgoL+HEdGaElTRENPhApPXZO+YlFZkg9NY9t+uGWCu2xPgSiR2fn44QzfWypxCq05G0fNRQRRIuMnpjkXlv66O/hju+xMTG1fVyKSKq5CA1bDdDn9euZ7Q6OAFsQX73hdYn6Q==" + ], + "suspended_at": "0001-01-01 00:00:00 +0000 UTC", + "updated_at": "2024-09-26 18:00:48 +0000 UTC", + "username": "gomez385" + }, + "sensitive_values": { + "gpg_keys": [], + "ssh_keys": [ + false, + false + ] + } + }, + { + "address": "module.repo_list[\"github-workspaces\"].github_repository.repo", + "mode": "managed", + "type": "github_repository", + "name": "repo", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 1, + "values": { + "allow_auto_merge": false, + "allow_merge_commit": false, + "allow_rebase_merge": false, + "allow_squash_merge": true, + "allow_update_branch": false, + "archive_on_destroy": true, + "archived": false, + "auto_init": true, + "default_branch": "main", + "delete_branch_on_merge": true, + "description": "Home for github-terraform workspaces", + "etag": "W/\"2a9dc15ac188990158412de4b7c238fe6b8285a323225b76e80553be384aef91\"", + "full_name": "CSVD/github-workspaces", + "git_clone_url": "git://github.e.it.census.gov/CSVD/github-workspaces.git", + "gitignore_template": "", + "has_discussions": false, + "has_downloads": false, + "has_issues": true, + "has_projects": true, + "has_wiki": true, + "homepage_url": "", + "html_url": "https://github.e.it.census.gov/CSVD/github-workspaces", + "http_clone_url": "https://github.e.it.census.gov/CSVD/github-workspaces.git", + "id": "github-workspaces", + "ignore_vulnerability_alerts_during_read": null, + "is_template": false, + "license_template": null, + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "name": "github-workspaces", + "node_id": "MDEwOlJlcG9zaXRvcnkxMTAy", + "pages": [], + "primary_language": "HCL", + "private": false, + "repo_id": 1102, + "security_and_analysis": [ + { + "advanced_security": [ + { + "status": "disabled" + } + ], + "secret_scanning": [ + { + "status": "disabled" + } + ], + "secret_scanning_push_protection": [ + { + "status": "disabled" + } + ] + } + ], + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "ssh_clone_url": "git@github.e.it.census.gov:CSVD/github-workspaces.git", + "svn_url": "https://github.e.it.census.gov/CSVD/github-workspaces", + "template": [], + "topics": [ + "github-actions", + "github-workspace" + ], + "visibility": "public", + "vulnerability_alerts": false, + "web_commit_signoff_required": false + }, + "sensitive_values": { + "pages": [], + "security_and_analysis": [ + { + "advanced_security": [ + {} + ], + "secret_scanning": [ + {} + ], + "secret_scanning_push_protection": [ + {} + ] + } + ], + "template": [], + "topics": [ + false, + false + ] + } + }, + { + "address": "module.repo_list[\"github-workspaces\"].github_repository_collaborator.collaborators[\"gomez385\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "gomez385", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "github-workspaces:gomez385", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "github-workspaces", + "username": "gomez385" + }, + "sensitive_values": {}, + "depends_on": [ + "module.repo_list.github_repository.repo" + ] + }, + { + "address": "module.repo_list[\"github-workspaces\"].github_repository_collaborator.collaborators[\"morga471\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "morga471", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "github-workspaces:morga471", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "github-workspaces", + "username": "morga471" + }, + "sensitive_values": {}, + "depends_on": [ + "module.repo_list.github_repository.repo" + ] + }, + { + "address": "module.repo_list[\"github-workspaces\"].github_repository_collaborator.collaborators[\"naray007\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "naray007", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "github-workspaces:naray007", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "github-workspaces", + "username": "naray007" + }, + "sensitive_values": {}, + "depends_on": [ + "module.repo_list.github_repository.repo" + ] + } + ], + "address": "module.repo_list[\"github-workspaces\"]" + }, + { + "resources": [ + { + "address": "module.repo_list[\"image-pipeline-ansible-playbooks\"].data.github_user.pull_request_bypassers[\"arnol377\"]", + "mode": "data", + "type": "github_user", + "name": "pull_request_bypassers", + "index": "arnol377", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "avatar_url": "https://github.e.it.census.gov/avatars/u/549?", + "bio": "", + "blog": "", + "company": "", + "created_at": "2023-12-26 17:20:24 +0000 UTC", + "email": "", + "followers": 0, + "following": 0, + "gpg_keys": [], + "gravatar_id": "", + "id": "549", + "location": "", + "login": "arnol377", + "name": "David John Arnold Jr", + "node_id": "MDQ6VXNlcjU0OQ==", + "public_gists": 0, + "public_repos": 4, + "site_admin": false, + "ssh_keys": [ + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDBL3xJ3zSxE6Qv8k9b06oFB4dbq2+PiOmsnIfAgL2XZpEenD03jhCF28iAZVy9oovuBCbcyAE9BjTRdWFSjd1dmHthbGe5Jv0/DweNFB/YmX6wJ6knljTA3frkY9bVS9+rqY6N4GG3oG6lyyk7cBaUEagXF4VQQJqX4l7XG1xxUfKLFFhF3Lq+CDg39FwlKk+QxIWMrbRJdpRBDZ03VZnKcgP0m/5K8PrcyGbxOK8qeVREUaqvmQN2Rs4LD1REPZyr3GQ2gtgpqrJ3hym7TwJw3Xl5NW8Y7RAeENem2K3EKoq6qq/wB/YUqMhKD228w5J6B+CoI8nvDqAWZkNAz/uY/GJe4elRJCmFH2F+r3263R5oDnXWSluB7XIm3b+Xt24F8MwoltejSEma41c8FM/xbF3Kle8ofBGFPEXpNDAxICVbyZ6OE4TyqTGKA8xgg9vnR3hCGGERtLYHhPw0aVHY7Zew/6/QV9o6/reO96V92zpXVEpvO09Z40fvTd5cN68=", + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDXRnBg+dayTonnZY3i0dDEHXUFMhcJKtqiFO7Oe/ejasDeW2I+L0f1gg+7u1ms/g8E28/RARN3R1aMnbGvXWdP/yBrhtpWJc5TXK+f33S5lYYjptJ2F6vj7jiRU7pP4uL9wqknj0DoSD0krAEbA85mBJgIV1viL8ZBtT/8iBoD6kHGRXaHpRH5sIFaURRJCcUTJhdqMUPd6bYKE/Bc6ioQLAEow0JB4ju1jPa7fOxhgVrIYxRiMkismhR0WLopB5JxyYDNmIyjUL2vGt9Kpd41DELv+Pn7EaP2HLjubVruWFnxnhZ7nvQwMonnZvjD3f5yPkDUkWnwaVGqw8cm9PFM4buFRmGpsl8YqTFakYgqc+JVDQB8bb9a9sr5/6Hbn41VcXd+KV6dTMK4PKSQFKLaq54ExzlwnE/EHnduE8JgvsfAa316/etFlzTQOBv1KbL8RKK0/vy6wJpiK9laDbymsOJPjZekoc/TD1AIvfWF9oae6wAU86tBVGdEO/JMOMc=", + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCvlUlp/OjFsa4fINqqMXukveo+mCu0Ywp0wwVCURkfJpPFPMdmbp07WlULCX6VgmqH4joCA+LUyY+q6iBZw80lS66lpDcRHMTG4PV7IsPpoYN20bUnm30vdqug/P1wVDuOO9B83+s3QFeBl9WbHQB3YY5pBulZGLIGw26qrLwfM5UJ4P/Ffca7ca9PM7KEkwqOC9xMfJy3tFkzD2Rjo2AHN9s7xHtpf95m8MzToy1Q7ykU/8bhImOrkZKaJJtIfmykYhebKDpeETEWJiyyaubIl71KAsWacrvQnEfo2fe62kR3SGv2auPDxMaGKPqtDpe2e/Y9I85Fv3tfWk53DDFoZNzExT4jc825bCqqz2DBbz4Q/Miw3rcdHx7uaRHinEJsBveNhZSH31GMLtU/dVNF3TNhlEH62Zmjgu7IpWb6Tr/4KnLjf/0p7ye34jP49nv1iBj99j3p1hwgAGU56ag4j7TW/iMh+uH+pg1hm6xZjhFInZGzQqtMl/qjBlr1oJ8=", + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCNVaIVHzjCkmCyQnpHfgLLvPtc96PVg/+8/cT2ty6TFe3ALaZJSHTWXjOPJaSkhBef2PCmbcsd3+p+QDl87nRl9O5fV376mrGwsxlpI2a1FnzpBkAEpZ2KyE4B593xGlpmvrMOF9gY4qGdNHCXw2puZ/IkmYaiROYpL2ptiSfTGc1R/ZrEvs0fhYwyi4xYfb+iGVSvjhhTqzJYNW6IBmMZVbDCdYX+JvSKsZYydnkHg7d9QJORZ3TnPe3Tmnn+PAse9V0z9VKOScfoRNT+Co9ezLGWNY+Dnnwg0jouA76/CiIIjWunJzLsIeu7cqNwubKO8lsLX9O+6zKR46EEaVr1VoC395IPvBy8x+VWUSpI+M7GLh0iPE56EvwiVm8irTkmY6WPsQ8PMJ5IWZE/OA6w6fupiSgBd5myFpB/wa8yVdY+UPfh40HpEXt0+iPeWK9kz/fJQAgow/FJAAsnI65JdVP4woAUYnmoJ0l6qgDyFQbOxcq7NZdmedHtRz049hM=" + ], + "suspended_at": "0001-01-01 00:00:00 +0000 UTC", + "updated_at": "2024-09-19 17:49:11 +0000 UTC", + "username": "arnol377" + }, + "sensitive_values": { + "gpg_keys": [], + "ssh_keys": [ + false, + false, + false, + false + ] + } + }, + { + "address": "module.repo_list[\"image-pipeline-ansible-playbooks\"].data.github_user.pull_request_bypassers[\"gomez385\"]", + "mode": "data", + "type": "github_user", + "name": "pull_request_bypassers", + "index": "gomez385", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "avatar_url": "https://github.e.it.census.gov/avatars/u/603?", + "bio": "", + "blog": "", + "company": "", + "created_at": "2024-06-13 14:57:04 +0000 UTC", + "email": "", + "followers": 0, + "following": 1, + "gpg_keys": [], + "gravatar_id": "", + "id": "603", + "location": "", + "login": "gomez385", + "name": "James Farr Gomez", + "node_id": "MDQ6VXNlcjYwMw==", + "public_gists": 0, + "public_repos": 0, + "site_admin": false, + "ssh_keys": [ + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDuGCb6WHZ8kex7gawtk2pmHd8t77HQ0LE+7sanVKoC5cWC/7RlefKBuH5c8F2RmmB1EaVFT2ylCsR0qnPT8xGH7gjrkRs/B8LAcwvXifev1BkPSE1gJT+lQpnwPkfqBuCbsewOR1XyPqQt5SZh4a9w7GDvBsfO2Ate9ADtX0nsI76t2DURR32ptBKnN2TtYqnD5D3VKV2lhiI2tnz8sO5FZzYycCONsv570N/itwT34gKSLVRsj+0YmPjmOU+7JWpXxdtjocw06ZEGnSyInIH4VJVROE0p3Z63xHQ9fxDtnW71zf0a9UeoY5Vb/b7PbK4NF3Dp9gG8iaL9dqeiZ1XTCcXHDyHGVFej3sl0CkB+BQ/Gz9ZCqkSBcA+n9WA5KclNuOMwe4eLXRwg/gxxmAJB707gXUk+nSPGwYTObtm0+lfspCNQxAFry8gX39mdVqnaCz1agzmwZo7rRls+BZPfDPg3YUkB3v9P8y/cbO6Bn5IRmYB2KQ73E7X8QJcW0+E=", + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQDROzDzCBisy3+PvtvvCt7XxuEpNAwBS6SoK2wKJNnGgYPs8zInboOVZWqRXujOWOySPCloBfYU5B2eg94cVoDnTnc9dArWhBOK0aY93XM7/0s3/01w3Kkyi25oJytr0NRI8liZq6DnF9hFiqxRVcJkoS4+I9t9G3MURjVbcNY10+bIs6Dp9sbnJaJEWvvsbAiz1WdZBAsF3eW20mNkzmQtYoASHWv3AD/j+xLRYvx2sVcPXIGQ4fw3FqQIUOkbVQUW2lCBp+BVZgR1U4dKh5lejddxd7bXblWxJ5qqWPXulqCnUrJBBTWxTPrUxBzcZtxLAj8C04PyZPJYWVVbhuxkMgA7VeUHeZ/iFT6LZeqVtwTDlEPCzShCdIC0JWKzxI+I663YeSf2y1Jh3qT/R+e0qcduEmL3bdE+PyyvQks8WCXVfXtJeHQfkPKcy9gARpQScY/6vSyZbJNfIW1VagCCRZp54AzOlhKTUy2r97zlrzB9gBPU2ycbmLFYOglVrw6Fo6ECV8slQIxuz0lS0RbEI/+c9jWxKqcSrb0zCEgoL+HEdGaElTRENPhApPXZO+YlFZkg9NY9t+uGWCu2xPgSiR2fn44QzfWypxCq05G0fNRQRRIuMnpjkXlv66O/hju+xMTG1fVyKSKq5CA1bDdDn9euZ7Q6OAFsQX73hdYn6Q==" + ], + "suspended_at": "0001-01-01 00:00:00 +0000 UTC", + "updated_at": "2024-09-26 18:00:48 +0000 UTC", + "username": "gomez385" + }, + "sensitive_values": { + "gpg_keys": [], + "ssh_keys": [ + false, + false + ] + } + }, + { + "address": "module.repo_list[\"image-pipeline-ansible-playbooks\"].github_repository.repo", + "mode": "managed", + "type": "github_repository", + "name": "repo", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 1, + "values": { + "allow_auto_merge": false, + "allow_merge_commit": false, + "allow_rebase_merge": false, + "allow_squash_merge": true, + "allow_update_branch": false, + "archive_on_destroy": true, + "archived": false, + "auto_init": true, + "default_branch": "main", + "delete_branch_on_merge": true, + "description": "Template repo for windows image pipelines", + "etag": "W/\"b6086d5086cc020c80a50173dc4dd1ccc503a1a3c913b5e594f7a87aa8c5f704\"", + "full_name": "CSVD/image-pipeline-ansible-playbooks", + "git_clone_url": "git://github.e.it.census.gov/CSVD/image-pipeline-ansible-playbooks.git", + "gitignore_template": "", + "has_discussions": false, + "has_downloads": false, + "has_issues": true, + "has_projects": true, + "has_wiki": true, + "homepage_url": "", + "html_url": "https://github.e.it.census.gov/CSVD/image-pipeline-ansible-playbooks", + "http_clone_url": "https://github.e.it.census.gov/CSVD/image-pipeline-ansible-playbooks.git", + "id": "image-pipeline-ansible-playbooks", + "ignore_vulnerability_alerts_during_read": null, + "is_template": false, + "license_template": null, + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "name": "image-pipeline-ansible-playbooks", + "node_id": "MDEwOlJlcG9zaXRvcnk5ODM=", + "pages": [], + "primary_language": "Jinja", + "private": true, + "repo_id": 983, + "security_and_analysis": [ + { + "advanced_security": [ + { + "status": "disabled" + } + ], + "secret_scanning": [ + { + "status": "disabled" + } + ], + "secret_scanning_push_protection": [ + { + "status": "disabled" + } + ] + } + ], + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "ssh_clone_url": "git@github.e.it.census.gov:CSVD/image-pipeline-ansible-playbooks.git", + "svn_url": "https://github.e.it.census.gov/CSVD/image-pipeline-ansible-playbooks", + "template": [], + "topics": [ + "terraform" + ], + "visibility": "private", + "vulnerability_alerts": false, + "web_commit_signoff_required": false + }, + "sensitive_values": { + "pages": [], + "security_and_analysis": [ + { + "advanced_security": [ + {} + ], + "secret_scanning": [ + {} + ], + "secret_scanning_push_protection": [ + {} + ] + } + ], + "template": [], + "topics": [ + false + ] + } + }, + { + "address": "module.repo_list[\"image-pipeline-ansible-playbooks\"].github_repository_collaborator.collaborators[\"gomez385\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "gomez385", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "image-pipeline-ansible-playbooks:gomez385", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "image-pipeline-ansible-playbooks", + "username": "gomez385" + }, + "sensitive_values": {}, + "depends_on": [ + "module.repo_list.github_repository.repo" + ] + }, + { + "address": "module.repo_list[\"image-pipeline-ansible-playbooks\"].github_repository_collaborator.collaborators[\"morga471\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "morga471", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "image-pipeline-ansible-playbooks:morga471", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "image-pipeline-ansible-playbooks", + "username": "morga471" + }, + "sensitive_values": {}, + "depends_on": [ + "module.repo_list.github_repository.repo" + ] + }, + { + "address": "module.repo_list[\"image-pipeline-ansible-playbooks\"].github_repository_collaborator.collaborators[\"naray007\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "naray007", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "image-pipeline-ansible-playbooks:naray007", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "image-pipeline-ansible-playbooks", + "username": "naray007" + }, + "sensitive_values": {}, + "depends_on": [ + "module.repo_list.github_repository.repo" + ] + }, + { + "address": "module.repo_list[\"image-pipeline-ansible-playbooks\"].github_repository_file.managed_extra_files[\"s3_upload.yaml\"]", + "mode": "managed", + "type": "github_repository_file", + "name": "managed_extra_files", + "index": "s3_upload.yaml", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "autocreate_branch": false, + "autocreate_branch_source_branch": "main", + "autocreate_branch_source_sha": null, + "branch": "main", + "commit_author": null, + "commit_email": null, + "commit_message": "Update .github/workflows/s3_upload.yaml", + "commit_sha": "7f23027c238c8bf99e393275563dd49777ca5902", + "content": "# This is a basic workflow to help you get started with Actions\nname: S3 Upload\n\non:\n push:\n branches: [ \"main\" ]\n # Allows you to run this workflow manually from the Actions tab\n workflow_dispatch:\n \n# A workflow run is made up of one or more jobs that can run sequentially or in parallel\njobs:\n # This workflow contains a single job called \"build\"\n build:\n # The type of runner that the job will run on\n runs-on: [ \"229685449397\" ]\n \n # Steps represent a sequence of tasks that will be executed as part of the job\n steps:\n # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it\n - uses: CSVD/gh-actions-checkout@v4\n id: checkout\n with:\n persist-credentials: false\n\n - uses: CSVD/gh-actions-setup-node@v3\n with:\n node-version: 16\n \n - name: AWS Auth\n id: aws_auth\n uses: CSVD/aws-auth@main\n with:\n ecs: true\n\n - run: |\n zip -r image-pipeline-ansible-playbooks.zip *\n aws s3 cp image-pipeline-ansible-playbooks.zip s3://csvd-dev-ew-github-actions\n env:\n AWS_ACCESS_KEY_ID: ${{ steps.aws_auth.outputs.aws_access_key_id }}\n AWS_SECRET_ACCESS_KEY: ${{ steps.aws_auth.outputs.aws_secret_access_key }}\n AWS_SESSION_TOKEN: ${{ steps.aws_auth.outputs.aws_session_token }}\n", + "file": ".github/workflows/s3_upload.yaml", + "id": "image-pipeline-ansible-playbooks/.github/workflows/s3_upload.yaml", + "overwrite_on_create": true, + "ref": "main", + "repository": "image-pipeline-ansible-playbooks", + "sha": "7c3c97e79ac47c6da4eb9aaf913d458cd3d48ca8" + }, + "sensitive_values": {}, + "depends_on": [ + "module.image_pipeline_repos.github_repository.repo" + ] + } + ], + "address": "module.repo_list[\"image-pipeline-ansible-playbooks\"]" + }, + { + "resources": [ + { + "address": "module.repo_list[\"image-pipeline-asset-releases\"].data.github_user.pull_request_bypassers[\"arnol377\"]", + "mode": "data", + "type": "github_user", + "name": "pull_request_bypassers", + "index": "arnol377", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "avatar_url": "https://github.e.it.census.gov/avatars/u/549?", + "bio": "", + "blog": "", + "company": "", + "created_at": "2023-12-26 17:20:24 +0000 UTC", + "email": "", + "followers": 0, + "following": 0, + "gpg_keys": [], + "gravatar_id": "", + "id": "549", + "location": "", + "login": "arnol377", + "name": "David John Arnold Jr", + "node_id": "MDQ6VXNlcjU0OQ==", + "public_gists": 0, + "public_repos": 4, + "site_admin": false, + "ssh_keys": [ + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDBL3xJ3zSxE6Qv8k9b06oFB4dbq2+PiOmsnIfAgL2XZpEenD03jhCF28iAZVy9oovuBCbcyAE9BjTRdWFSjd1dmHthbGe5Jv0/DweNFB/YmX6wJ6knljTA3frkY9bVS9+rqY6N4GG3oG6lyyk7cBaUEagXF4VQQJqX4l7XG1xxUfKLFFhF3Lq+CDg39FwlKk+QxIWMrbRJdpRBDZ03VZnKcgP0m/5K8PrcyGbxOK8qeVREUaqvmQN2Rs4LD1REPZyr3GQ2gtgpqrJ3hym7TwJw3Xl5NW8Y7RAeENem2K3EKoq6qq/wB/YUqMhKD228w5J6B+CoI8nvDqAWZkNAz/uY/GJe4elRJCmFH2F+r3263R5oDnXWSluB7XIm3b+Xt24F8MwoltejSEma41c8FM/xbF3Kle8ofBGFPEXpNDAxICVbyZ6OE4TyqTGKA8xgg9vnR3hCGGERtLYHhPw0aVHY7Zew/6/QV9o6/reO96V92zpXVEpvO09Z40fvTd5cN68=", + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDXRnBg+dayTonnZY3i0dDEHXUFMhcJKtqiFO7Oe/ejasDeW2I+L0f1gg+7u1ms/g8E28/RARN3R1aMnbGvXWdP/yBrhtpWJc5TXK+f33S5lYYjptJ2F6vj7jiRU7pP4uL9wqknj0DoSD0krAEbA85mBJgIV1viL8ZBtT/8iBoD6kHGRXaHpRH5sIFaURRJCcUTJhdqMUPd6bYKE/Bc6ioQLAEow0JB4ju1jPa7fOxhgVrIYxRiMkismhR0WLopB5JxyYDNmIyjUL2vGt9Kpd41DELv+Pn7EaP2HLjubVruWFnxnhZ7nvQwMonnZvjD3f5yPkDUkWnwaVGqw8cm9PFM4buFRmGpsl8YqTFakYgqc+JVDQB8bb9a9sr5/6Hbn41VcXd+KV6dTMK4PKSQFKLaq54ExzlwnE/EHnduE8JgvsfAa316/etFlzTQOBv1KbL8RKK0/vy6wJpiK9laDbymsOJPjZekoc/TD1AIvfWF9oae6wAU86tBVGdEO/JMOMc=", + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCvlUlp/OjFsa4fINqqMXukveo+mCu0Ywp0wwVCURkfJpPFPMdmbp07WlULCX6VgmqH4joCA+LUyY+q6iBZw80lS66lpDcRHMTG4PV7IsPpoYN20bUnm30vdqug/P1wVDuOO9B83+s3QFeBl9WbHQB3YY5pBulZGLIGw26qrLwfM5UJ4P/Ffca7ca9PM7KEkwqOC9xMfJy3tFkzD2Rjo2AHN9s7xHtpf95m8MzToy1Q7ykU/8bhImOrkZKaJJtIfmykYhebKDpeETEWJiyyaubIl71KAsWacrvQnEfo2fe62kR3SGv2auPDxMaGKPqtDpe2e/Y9I85Fv3tfWk53DDFoZNzExT4jc825bCqqz2DBbz4Q/Miw3rcdHx7uaRHinEJsBveNhZSH31GMLtU/dVNF3TNhlEH62Zmjgu7IpWb6Tr/4KnLjf/0p7ye34jP49nv1iBj99j3p1hwgAGU56ag4j7TW/iMh+uH+pg1hm6xZjhFInZGzQqtMl/qjBlr1oJ8=", + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCNVaIVHzjCkmCyQnpHfgLLvPtc96PVg/+8/cT2ty6TFe3ALaZJSHTWXjOPJaSkhBef2PCmbcsd3+p+QDl87nRl9O5fV376mrGwsxlpI2a1FnzpBkAEpZ2KyE4B593xGlpmvrMOF9gY4qGdNHCXw2puZ/IkmYaiROYpL2ptiSfTGc1R/ZrEvs0fhYwyi4xYfb+iGVSvjhhTqzJYNW6IBmMZVbDCdYX+JvSKsZYydnkHg7d9QJORZ3TnPe3Tmnn+PAse9V0z9VKOScfoRNT+Co9ezLGWNY+Dnnwg0jouA76/CiIIjWunJzLsIeu7cqNwubKO8lsLX9O+6zKR46EEaVr1VoC395IPvBy8x+VWUSpI+M7GLh0iPE56EvwiVm8irTkmY6WPsQ8PMJ5IWZE/OA6w6fupiSgBd5myFpB/wa8yVdY+UPfh40HpEXt0+iPeWK9kz/fJQAgow/FJAAsnI65JdVP4woAUYnmoJ0l6qgDyFQbOxcq7NZdmedHtRz049hM=" + ], + "suspended_at": "0001-01-01 00:00:00 +0000 UTC", + "updated_at": "2024-09-19 17:49:11 +0000 UTC", + "username": "arnol377" + }, + "sensitive_values": { + "gpg_keys": [], + "ssh_keys": [ + false, + false, + false, + false + ] + } + }, + { + "address": "module.repo_list[\"image-pipeline-asset-releases\"].data.github_user.pull_request_bypassers[\"gomez385\"]", + "mode": "data", + "type": "github_user", + "name": "pull_request_bypassers", + "index": "gomez385", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "avatar_url": "https://github.e.it.census.gov/avatars/u/603?", + "bio": "", + "blog": "", + "company": "", + "created_at": "2024-06-13 14:57:04 +0000 UTC", + "email": "", + "followers": 0, + "following": 1, + "gpg_keys": [], + "gravatar_id": "", + "id": "603", + "location": "", + "login": "gomez385", + "name": "James Farr Gomez", + "node_id": "MDQ6VXNlcjYwMw==", + "public_gists": 0, + "public_repos": 0, + "site_admin": false, + "ssh_keys": [ + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDuGCb6WHZ8kex7gawtk2pmHd8t77HQ0LE+7sanVKoC5cWC/7RlefKBuH5c8F2RmmB1EaVFT2ylCsR0qnPT8xGH7gjrkRs/B8LAcwvXifev1BkPSE1gJT+lQpnwPkfqBuCbsewOR1XyPqQt5SZh4a9w7GDvBsfO2Ate9ADtX0nsI76t2DURR32ptBKnN2TtYqnD5D3VKV2lhiI2tnz8sO5FZzYycCONsv570N/itwT34gKSLVRsj+0YmPjmOU+7JWpXxdtjocw06ZEGnSyInIH4VJVROE0p3Z63xHQ9fxDtnW71zf0a9UeoY5Vb/b7PbK4NF3Dp9gG8iaL9dqeiZ1XTCcXHDyHGVFej3sl0CkB+BQ/Gz9ZCqkSBcA+n9WA5KclNuOMwe4eLXRwg/gxxmAJB707gXUk+nSPGwYTObtm0+lfspCNQxAFry8gX39mdVqnaCz1agzmwZo7rRls+BZPfDPg3YUkB3v9P8y/cbO6Bn5IRmYB2KQ73E7X8QJcW0+E=", + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQDROzDzCBisy3+PvtvvCt7XxuEpNAwBS6SoK2wKJNnGgYPs8zInboOVZWqRXujOWOySPCloBfYU5B2eg94cVoDnTnc9dArWhBOK0aY93XM7/0s3/01w3Kkyi25oJytr0NRI8liZq6DnF9hFiqxRVcJkoS4+I9t9G3MURjVbcNY10+bIs6Dp9sbnJaJEWvvsbAiz1WdZBAsF3eW20mNkzmQtYoASHWv3AD/j+xLRYvx2sVcPXIGQ4fw3FqQIUOkbVQUW2lCBp+BVZgR1U4dKh5lejddxd7bXblWxJ5qqWPXulqCnUrJBBTWxTPrUxBzcZtxLAj8C04PyZPJYWVVbhuxkMgA7VeUHeZ/iFT6LZeqVtwTDlEPCzShCdIC0JWKzxI+I663YeSf2y1Jh3qT/R+e0qcduEmL3bdE+PyyvQks8WCXVfXtJeHQfkPKcy9gARpQScY/6vSyZbJNfIW1VagCCRZp54AzOlhKTUy2r97zlrzB9gBPU2ycbmLFYOglVrw6Fo6ECV8slQIxuz0lS0RbEI/+c9jWxKqcSrb0zCEgoL+HEdGaElTRENPhApPXZO+YlFZkg9NY9t+uGWCu2xPgSiR2fn44QzfWypxCq05G0fNRQRRIuMnpjkXlv66O/hju+xMTG1fVyKSKq5CA1bDdDn9euZ7Q6OAFsQX73hdYn6Q==" + ], + "suspended_at": "0001-01-01 00:00:00 +0000 UTC", + "updated_at": "2024-09-26 18:00:48 +0000 UTC", + "username": "gomez385" + }, + "sensitive_values": { + "gpg_keys": [], + "ssh_keys": [ + false, + false + ] + } + }, + { + "address": "module.repo_list[\"image-pipeline-asset-releases\"].github_repository.repo", + "mode": "managed", + "type": "github_repository", + "name": "repo", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 1, + "values": { + "allow_auto_merge": false, + "allow_merge_commit": false, + "allow_rebase_merge": false, + "allow_squash_merge": true, + "allow_update_branch": false, + "archive_on_destroy": true, + "archived": false, + "auto_init": true, + "default_branch": "main", + "delete_branch_on_merge": true, + "description": "Terraform Workspace for publishing image-pipeline-assets", + "etag": "W/\"0ab07eaa67048940e6aaeee8819f106057c3a7df91c159850dfbf6d69d34d1e3\"", + "full_name": "CSVD/image-pipeline-asset-releases", + "git_clone_url": "git://github.e.it.census.gov/CSVD/image-pipeline-asset-releases.git", + "gitignore_template": "", + "has_discussions": false, + "has_downloads": false, + "has_issues": true, + "has_projects": true, + "has_wiki": true, + "homepage_url": "", + "html_url": "https://github.e.it.census.gov/CSVD/image-pipeline-asset-releases", + "http_clone_url": "https://github.e.it.census.gov/CSVD/image-pipeline-asset-releases.git", + "id": "image-pipeline-asset-releases", + "ignore_vulnerability_alerts_during_read": null, + "is_template": false, + "license_template": null, + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "name": "image-pipeline-asset-releases", + "node_id": "MDEwOlJlcG9zaXRvcnk5OTY=", + "pages": [], + "primary_language": "", + "private": true, + "repo_id": 996, + "security_and_analysis": [ + { + "advanced_security": [ + { + "status": "disabled" + } + ], + "secret_scanning": [ + { + "status": "disabled" + } + ], + "secret_scanning_push_protection": [ + { + "status": "disabled" + } + ] + } + ], + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "ssh_clone_url": "git@github.e.it.census.gov:CSVD/image-pipeline-asset-releases.git", + "svn_url": "https://github.e.it.census.gov/CSVD/image-pipeline-asset-releases", + "template": [], + "topics": [ + "terraform" + ], + "visibility": "private", + "vulnerability_alerts": false, + "web_commit_signoff_required": false + }, + "sensitive_values": { + "pages": [], + "security_and_analysis": [ + { + "advanced_security": [ + {} + ], + "secret_scanning": [ + {} + ], + "secret_scanning_push_protection": [ + {} + ] + } + ], + "template": [], + "topics": [ + false + ] + } + }, + { + "address": "module.repo_list[\"image-pipeline-asset-releases\"].github_repository_collaborator.collaborators[\"gomez385\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "gomez385", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "image-pipeline-asset-releases:gomez385", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "image-pipeline-asset-releases", + "username": "gomez385" + }, + "sensitive_values": {}, + "depends_on": [ + "module.repo_list.github_repository.repo" + ] + }, + { + "address": "module.repo_list[\"image-pipeline-asset-releases\"].github_repository_collaborator.collaborators[\"morga471\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "morga471", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "image-pipeline-asset-releases:morga471", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "image-pipeline-asset-releases", + "username": "morga471" + }, + "sensitive_values": {}, + "depends_on": [ + "module.repo_list.github_repository.repo" + ] + }, + { + "address": "module.repo_list[\"image-pipeline-asset-releases\"].github_repository_collaborator.collaborators[\"naray007\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "naray007", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "image-pipeline-asset-releases:naray007", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "image-pipeline-asset-releases", + "username": "naray007" + }, + "sensitive_values": {}, + "depends_on": [ + "module.repo_list.github_repository.repo" + ] + } + ], + "address": "module.repo_list[\"image-pipeline-asset-releases\"]" + }, + { + "resources": [ + { + "address": "module.repo_list[\"image-pipeline-goss\"].data.github_user.pull_request_bypassers[\"arnol377\"]", + "mode": "data", + "type": "github_user", + "name": "pull_request_bypassers", + "index": "arnol377", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "avatar_url": "https://github.e.it.census.gov/avatars/u/549?", + "bio": "", + "blog": "", + "company": "", + "created_at": "2023-12-26 17:20:24 +0000 UTC", + "email": "", + "followers": 0, + "following": 0, + "gpg_keys": [], + "gravatar_id": "", + "id": "549", + "location": "", + "login": "arnol377", + "name": "David John Arnold Jr", + "node_id": "MDQ6VXNlcjU0OQ==", + "public_gists": 0, + "public_repos": 4, + "site_admin": false, + "ssh_keys": [ + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDBL3xJ3zSxE6Qv8k9b06oFB4dbq2+PiOmsnIfAgL2XZpEenD03jhCF28iAZVy9oovuBCbcyAE9BjTRdWFSjd1dmHthbGe5Jv0/DweNFB/YmX6wJ6knljTA3frkY9bVS9+rqY6N4GG3oG6lyyk7cBaUEagXF4VQQJqX4l7XG1xxUfKLFFhF3Lq+CDg39FwlKk+QxIWMrbRJdpRBDZ03VZnKcgP0m/5K8PrcyGbxOK8qeVREUaqvmQN2Rs4LD1REPZyr3GQ2gtgpqrJ3hym7TwJw3Xl5NW8Y7RAeENem2K3EKoq6qq/wB/YUqMhKD228w5J6B+CoI8nvDqAWZkNAz/uY/GJe4elRJCmFH2F+r3263R5oDnXWSluB7XIm3b+Xt24F8MwoltejSEma41c8FM/xbF3Kle8ofBGFPEXpNDAxICVbyZ6OE4TyqTGKA8xgg9vnR3hCGGERtLYHhPw0aVHY7Zew/6/QV9o6/reO96V92zpXVEpvO09Z40fvTd5cN68=", + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDXRnBg+dayTonnZY3i0dDEHXUFMhcJKtqiFO7Oe/ejasDeW2I+L0f1gg+7u1ms/g8E28/RARN3R1aMnbGvXWdP/yBrhtpWJc5TXK+f33S5lYYjptJ2F6vj7jiRU7pP4uL9wqknj0DoSD0krAEbA85mBJgIV1viL8ZBtT/8iBoD6kHGRXaHpRH5sIFaURRJCcUTJhdqMUPd6bYKE/Bc6ioQLAEow0JB4ju1jPa7fOxhgVrIYxRiMkismhR0WLopB5JxyYDNmIyjUL2vGt9Kpd41DELv+Pn7EaP2HLjubVruWFnxnhZ7nvQwMonnZvjD3f5yPkDUkWnwaVGqw8cm9PFM4buFRmGpsl8YqTFakYgqc+JVDQB8bb9a9sr5/6Hbn41VcXd+KV6dTMK4PKSQFKLaq54ExzlwnE/EHnduE8JgvsfAa316/etFlzTQOBv1KbL8RKK0/vy6wJpiK9laDbymsOJPjZekoc/TD1AIvfWF9oae6wAU86tBVGdEO/JMOMc=", + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCvlUlp/OjFsa4fINqqMXukveo+mCu0Ywp0wwVCURkfJpPFPMdmbp07WlULCX6VgmqH4joCA+LUyY+q6iBZw80lS66lpDcRHMTG4PV7IsPpoYN20bUnm30vdqug/P1wVDuOO9B83+s3QFeBl9WbHQB3YY5pBulZGLIGw26qrLwfM5UJ4P/Ffca7ca9PM7KEkwqOC9xMfJy3tFkzD2Rjo2AHN9s7xHtpf95m8MzToy1Q7ykU/8bhImOrkZKaJJtIfmykYhebKDpeETEWJiyyaubIl71KAsWacrvQnEfo2fe62kR3SGv2auPDxMaGKPqtDpe2e/Y9I85Fv3tfWk53DDFoZNzExT4jc825bCqqz2DBbz4Q/Miw3rcdHx7uaRHinEJsBveNhZSH31GMLtU/dVNF3TNhlEH62Zmjgu7IpWb6Tr/4KnLjf/0p7ye34jP49nv1iBj99j3p1hwgAGU56ag4j7TW/iMh+uH+pg1hm6xZjhFInZGzQqtMl/qjBlr1oJ8=", + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCNVaIVHzjCkmCyQnpHfgLLvPtc96PVg/+8/cT2ty6TFe3ALaZJSHTWXjOPJaSkhBef2PCmbcsd3+p+QDl87nRl9O5fV376mrGwsxlpI2a1FnzpBkAEpZ2KyE4B593xGlpmvrMOF9gY4qGdNHCXw2puZ/IkmYaiROYpL2ptiSfTGc1R/ZrEvs0fhYwyi4xYfb+iGVSvjhhTqzJYNW6IBmMZVbDCdYX+JvSKsZYydnkHg7d9QJORZ3TnPe3Tmnn+PAse9V0z9VKOScfoRNT+Co9ezLGWNY+Dnnwg0jouA76/CiIIjWunJzLsIeu7cqNwubKO8lsLX9O+6zKR46EEaVr1VoC395IPvBy8x+VWUSpI+M7GLh0iPE56EvwiVm8irTkmY6WPsQ8PMJ5IWZE/OA6w6fupiSgBd5myFpB/wa8yVdY+UPfh40HpEXt0+iPeWK9kz/fJQAgow/FJAAsnI65JdVP4woAUYnmoJ0l6qgDyFQbOxcq7NZdmedHtRz049hM=" + ], + "suspended_at": "0001-01-01 00:00:00 +0000 UTC", + "updated_at": "2024-09-19 17:49:11 +0000 UTC", + "username": "arnol377" + }, + "sensitive_values": { + "gpg_keys": [], + "ssh_keys": [ + false, + false, + false, + false + ] + } + }, + { + "address": "module.repo_list[\"image-pipeline-goss\"].data.github_user.pull_request_bypassers[\"gomez385\"]", + "mode": "data", + "type": "github_user", + "name": "pull_request_bypassers", + "index": "gomez385", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "avatar_url": "https://github.e.it.census.gov/avatars/u/603?", + "bio": "", + "blog": "", + "company": "", + "created_at": "2024-06-13 14:57:04 +0000 UTC", + "email": "", + "followers": 0, + "following": 1, + "gpg_keys": [], + "gravatar_id": "", + "id": "603", + "location": "", + "login": "gomez385", + "name": "James Farr Gomez", + "node_id": "MDQ6VXNlcjYwMw==", + "public_gists": 0, + "public_repos": 0, + "site_admin": false, + "ssh_keys": [ + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDuGCb6WHZ8kex7gawtk2pmHd8t77HQ0LE+7sanVKoC5cWC/7RlefKBuH5c8F2RmmB1EaVFT2ylCsR0qnPT8xGH7gjrkRs/B8LAcwvXifev1BkPSE1gJT+lQpnwPkfqBuCbsewOR1XyPqQt5SZh4a9w7GDvBsfO2Ate9ADtX0nsI76t2DURR32ptBKnN2TtYqnD5D3VKV2lhiI2tnz8sO5FZzYycCONsv570N/itwT34gKSLVRsj+0YmPjmOU+7JWpXxdtjocw06ZEGnSyInIH4VJVROE0p3Z63xHQ9fxDtnW71zf0a9UeoY5Vb/b7PbK4NF3Dp9gG8iaL9dqeiZ1XTCcXHDyHGVFej3sl0CkB+BQ/Gz9ZCqkSBcA+n9WA5KclNuOMwe4eLXRwg/gxxmAJB707gXUk+nSPGwYTObtm0+lfspCNQxAFry8gX39mdVqnaCz1agzmwZo7rRls+BZPfDPg3YUkB3v9P8y/cbO6Bn5IRmYB2KQ73E7X8QJcW0+E=", + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQDROzDzCBisy3+PvtvvCt7XxuEpNAwBS6SoK2wKJNnGgYPs8zInboOVZWqRXujOWOySPCloBfYU5B2eg94cVoDnTnc9dArWhBOK0aY93XM7/0s3/01w3Kkyi25oJytr0NRI8liZq6DnF9hFiqxRVcJkoS4+I9t9G3MURjVbcNY10+bIs6Dp9sbnJaJEWvvsbAiz1WdZBAsF3eW20mNkzmQtYoASHWv3AD/j+xLRYvx2sVcPXIGQ4fw3FqQIUOkbVQUW2lCBp+BVZgR1U4dKh5lejddxd7bXblWxJ5qqWPXulqCnUrJBBTWxTPrUxBzcZtxLAj8C04PyZPJYWVVbhuxkMgA7VeUHeZ/iFT6LZeqVtwTDlEPCzShCdIC0JWKzxI+I663YeSf2y1Jh3qT/R+e0qcduEmL3bdE+PyyvQks8WCXVfXtJeHQfkPKcy9gARpQScY/6vSyZbJNfIW1VagCCRZp54AzOlhKTUy2r97zlrzB9gBPU2ycbmLFYOglVrw6Fo6ECV8slQIxuz0lS0RbEI/+c9jWxKqcSrb0zCEgoL+HEdGaElTRENPhApPXZO+YlFZkg9NY9t+uGWCu2xPgSiR2fn44QzfWypxCq05G0fNRQRRIuMnpjkXlv66O/hju+xMTG1fVyKSKq5CA1bDdDn9euZ7Q6OAFsQX73hdYn6Q==" + ], + "suspended_at": "0001-01-01 00:00:00 +0000 UTC", + "updated_at": "2024-09-26 18:00:48 +0000 UTC", + "username": "gomez385" + }, + "sensitive_values": { + "gpg_keys": [], + "ssh_keys": [ + false, + false + ] + } + }, + { + "address": "module.repo_list[\"image-pipeline-goss\"].github_repository.repo", + "mode": "managed", + "type": "github_repository", + "name": "repo", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 1, + "values": { + "allow_auto_merge": false, + "allow_merge_commit": false, + "allow_rebase_merge": false, + "allow_squash_merge": true, + "allow_update_branch": false, + "archive_on_destroy": true, + "archived": false, + "auto_init": true, + "default_branch": "main", + "delete_branch_on_merge": true, + "description": "Template repo for windows image pipelines", + "etag": "W/\"22dac3c252584dd6571e43bf63438b36fbe8a1a4d3d07e0c0c134a9c5d3cf462\"", + "full_name": "CSVD/image-pipeline-goss", + "git_clone_url": "git://github.e.it.census.gov/CSVD/image-pipeline-goss.git", + "gitignore_template": "", + "has_discussions": false, + "has_downloads": false, + "has_issues": true, + "has_projects": true, + "has_wiki": true, + "homepage_url": "", + "html_url": "https://github.e.it.census.gov/CSVD/image-pipeline-goss", + "http_clone_url": "https://github.e.it.census.gov/CSVD/image-pipeline-goss.git", + "id": "image-pipeline-goss", + "ignore_vulnerability_alerts_during_read": null, + "is_template": false, + "license_template": null, + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "name": "image-pipeline-goss", + "node_id": "MDEwOlJlcG9zaXRvcnk5NDI=", + "pages": [], + "primary_language": "HCL", + "private": true, + "repo_id": 942, + "security_and_analysis": [ + { + "advanced_security": [ + { + "status": "disabled" + } + ], + "secret_scanning": [ + { + "status": "disabled" + } + ], + "secret_scanning_push_protection": [ + { + "status": "disabled" + } + ] + } + ], + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "ssh_clone_url": "git@github.e.it.census.gov:CSVD/image-pipeline-goss.git", + "svn_url": "https://github.e.it.census.gov/CSVD/image-pipeline-goss", + "template": [], + "topics": [ + "terraform" + ], + "visibility": "private", + "vulnerability_alerts": false, + "web_commit_signoff_required": false + }, + "sensitive_values": { + "pages": [], + "security_and_analysis": [ + { + "advanced_security": [ + {} + ], + "secret_scanning": [ + {} + ], + "secret_scanning_push_protection": [ + {} + ] + } + ], + "template": [], + "topics": [ + false + ] + } + }, + { + "address": "module.repo_list[\"image-pipeline-goss\"].github_repository_collaborator.collaborators[\"gomez385\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "gomez385", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "image-pipeline-goss:gomez385", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "image-pipeline-goss", + "username": "gomez385" + }, + "sensitive_values": {}, + "depends_on": [ + "module.repo_list.github_repository.repo" + ] + }, + { + "address": "module.repo_list[\"image-pipeline-goss\"].github_repository_collaborator.collaborators[\"morga471\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "morga471", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "image-pipeline-goss:morga471", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "image-pipeline-goss", + "username": "morga471" + }, + "sensitive_values": {}, + "depends_on": [ + "module.repo_list.github_repository.repo" + ] + }, + { + "address": "module.repo_list[\"image-pipeline-goss\"].github_repository_collaborator.collaborators[\"naray007\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "naray007", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "image-pipeline-goss:naray007", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "image-pipeline-goss", + "username": "naray007" + }, + "sensitive_values": {}, + "depends_on": [ + "module.repo_list.github_repository.repo" + ] + }, + { + "address": "module.repo_list[\"image-pipeline-goss\"].github_repository_file.managed_extra_files[\"s3_upload.yaml\"]", + "mode": "managed", + "type": "github_repository_file", + "name": "managed_extra_files", + "index": "s3_upload.yaml", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "autocreate_branch": null, + "autocreate_branch_source_branch": null, + "autocreate_branch_source_sha": null, + "branch": "main", + "commit_author": null, + "commit_email": null, + "commit_message": "Update .github/workflows/s3_upload.yaml", + "commit_sha": "8d51313ba5db9331411e60b91afef3ef6323a9c3", + "content": "# This is a basic workflow to help you get started with Actions\nname: S3 Upload\n\non:\n push:\n branches: [ \"main\" ]\n # Allows you to run this workflow manually from the Actions tab\n workflow_dispatch:\n \n# A workflow run is made up of one or more jobs that can run sequentially or in parallel\njobs:\n # This workflow contains a single job called \"build\"\n build:\n # The type of runner that the job will run on\n runs-on: [ \"229685449397\" ]\n \n # Steps represent a sequence of tasks that will be executed as part of the job\n steps:\n # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it\n - uses: CSVD/gh-actions-checkout@v4\n id: checkout\n with:\n persist-credentials: false\n\n - uses: CSVD/gh-actions-setup-node@v3\n with:\n node-version: 16\n \n - name: AWS Auth\n id: aws_auth\n uses: CSVD/aws-auth@main\n with:\n ecs: true\n\n - run: |\n zip -r image-pipeline-goss.zip *\n aws s3 cp image-pipeline-goss.zip s3://csvd-dev-ew-github-actions\n env:\n AWS_ACCESS_KEY_ID: ${{ steps.aws_auth.outputs.aws_access_key_id }}\n AWS_SECRET_ACCESS_KEY: ${{ steps.aws_auth.outputs.aws_secret_access_key }}\n AWS_SESSION_TOKEN: ${{ steps.aws_auth.outputs.aws_session_token }}\n", + "file": ".github/workflows/s3_upload.yaml", + "id": "image-pipeline-goss/.github/workflows/s3_upload.yaml", + "overwrite_on_create": true, + "ref": "main", + "repository": "image-pipeline-goss", + "sha": "b88a02be66eb1974b5b766d622f4316a2a8061b9" + }, + "sensitive_values": {}, + "depends_on": [ + "module.image_pipeline_repos.github_repository.repo", + "module.repo_list.github_repository.repo" + ] + } + ], + "address": "module.repo_list[\"image-pipeline-goss\"]" + }, + { + "resources": [ + { + "address": "module.repo_list[\"image-pipeline-packer\"].data.github_user.pull_request_bypassers[\"arnol377\"]", + "mode": "data", + "type": "github_user", + "name": "pull_request_bypassers", + "index": "arnol377", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "avatar_url": "https://github.e.it.census.gov/avatars/u/549?", + "bio": "", + "blog": "", + "company": "", + "created_at": "2023-12-26 17:20:24 +0000 UTC", + "email": "", + "followers": 0, + "following": 0, + "gpg_keys": [], + "gravatar_id": "", + "id": "549", + "location": "", + "login": "arnol377", + "name": "David John Arnold Jr", + "node_id": "MDQ6VXNlcjU0OQ==", + "public_gists": 0, + "public_repos": 4, + "site_admin": false, + "ssh_keys": [ + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDBL3xJ3zSxE6Qv8k9b06oFB4dbq2+PiOmsnIfAgL2XZpEenD03jhCF28iAZVy9oovuBCbcyAE9BjTRdWFSjd1dmHthbGe5Jv0/DweNFB/YmX6wJ6knljTA3frkY9bVS9+rqY6N4GG3oG6lyyk7cBaUEagXF4VQQJqX4l7XG1xxUfKLFFhF3Lq+CDg39FwlKk+QxIWMrbRJdpRBDZ03VZnKcgP0m/5K8PrcyGbxOK8qeVREUaqvmQN2Rs4LD1REPZyr3GQ2gtgpqrJ3hym7TwJw3Xl5NW8Y7RAeENem2K3EKoq6qq/wB/YUqMhKD228w5J6B+CoI8nvDqAWZkNAz/uY/GJe4elRJCmFH2F+r3263R5oDnXWSluB7XIm3b+Xt24F8MwoltejSEma41c8FM/xbF3Kle8ofBGFPEXpNDAxICVbyZ6OE4TyqTGKA8xgg9vnR3hCGGERtLYHhPw0aVHY7Zew/6/QV9o6/reO96V92zpXVEpvO09Z40fvTd5cN68=", + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDXRnBg+dayTonnZY3i0dDEHXUFMhcJKtqiFO7Oe/ejasDeW2I+L0f1gg+7u1ms/g8E28/RARN3R1aMnbGvXWdP/yBrhtpWJc5TXK+f33S5lYYjptJ2F6vj7jiRU7pP4uL9wqknj0DoSD0krAEbA85mBJgIV1viL8ZBtT/8iBoD6kHGRXaHpRH5sIFaURRJCcUTJhdqMUPd6bYKE/Bc6ioQLAEow0JB4ju1jPa7fOxhgVrIYxRiMkismhR0WLopB5JxyYDNmIyjUL2vGt9Kpd41DELv+Pn7EaP2HLjubVruWFnxnhZ7nvQwMonnZvjD3f5yPkDUkWnwaVGqw8cm9PFM4buFRmGpsl8YqTFakYgqc+JVDQB8bb9a9sr5/6Hbn41VcXd+KV6dTMK4PKSQFKLaq54ExzlwnE/EHnduE8JgvsfAa316/etFlzTQOBv1KbL8RKK0/vy6wJpiK9laDbymsOJPjZekoc/TD1AIvfWF9oae6wAU86tBVGdEO/JMOMc=", + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCvlUlp/OjFsa4fINqqMXukveo+mCu0Ywp0wwVCURkfJpPFPMdmbp07WlULCX6VgmqH4joCA+LUyY+q6iBZw80lS66lpDcRHMTG4PV7IsPpoYN20bUnm30vdqug/P1wVDuOO9B83+s3QFeBl9WbHQB3YY5pBulZGLIGw26qrLwfM5UJ4P/Ffca7ca9PM7KEkwqOC9xMfJy3tFkzD2Rjo2AHN9s7xHtpf95m8MzToy1Q7ykU/8bhImOrkZKaJJtIfmykYhebKDpeETEWJiyyaubIl71KAsWacrvQnEfo2fe62kR3SGv2auPDxMaGKPqtDpe2e/Y9I85Fv3tfWk53DDFoZNzExT4jc825bCqqz2DBbz4Q/Miw3rcdHx7uaRHinEJsBveNhZSH31GMLtU/dVNF3TNhlEH62Zmjgu7IpWb6Tr/4KnLjf/0p7ye34jP49nv1iBj99j3p1hwgAGU56ag4j7TW/iMh+uH+pg1hm6xZjhFInZGzQqtMl/qjBlr1oJ8=", + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCNVaIVHzjCkmCyQnpHfgLLvPtc96PVg/+8/cT2ty6TFe3ALaZJSHTWXjOPJaSkhBef2PCmbcsd3+p+QDl87nRl9O5fV376mrGwsxlpI2a1FnzpBkAEpZ2KyE4B593xGlpmvrMOF9gY4qGdNHCXw2puZ/IkmYaiROYpL2ptiSfTGc1R/ZrEvs0fhYwyi4xYfb+iGVSvjhhTqzJYNW6IBmMZVbDCdYX+JvSKsZYydnkHg7d9QJORZ3TnPe3Tmnn+PAse9V0z9VKOScfoRNT+Co9ezLGWNY+Dnnwg0jouA76/CiIIjWunJzLsIeu7cqNwubKO8lsLX9O+6zKR46EEaVr1VoC395IPvBy8x+VWUSpI+M7GLh0iPE56EvwiVm8irTkmY6WPsQ8PMJ5IWZE/OA6w6fupiSgBd5myFpB/wa8yVdY+UPfh40HpEXt0+iPeWK9kz/fJQAgow/FJAAsnI65JdVP4woAUYnmoJ0l6qgDyFQbOxcq7NZdmedHtRz049hM=" + ], + "suspended_at": "0001-01-01 00:00:00 +0000 UTC", + "updated_at": "2024-09-19 17:49:11 +0000 UTC", + "username": "arnol377" + }, + "sensitive_values": { + "gpg_keys": [], + "ssh_keys": [ + false, + false, + false, + false + ] + } + }, + { + "address": "module.repo_list[\"image-pipeline-packer\"].data.github_user.pull_request_bypassers[\"gomez385\"]", + "mode": "data", + "type": "github_user", + "name": "pull_request_bypassers", + "index": "gomez385", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "avatar_url": "https://github.e.it.census.gov/avatars/u/603?", + "bio": "", + "blog": "", + "company": "", + "created_at": "2024-06-13 14:57:04 +0000 UTC", + "email": "", + "followers": 0, + "following": 1, + "gpg_keys": [], + "gravatar_id": "", + "id": "603", + "location": "", + "login": "gomez385", + "name": "James Farr Gomez", + "node_id": "MDQ6VXNlcjYwMw==", + "public_gists": 0, + "public_repos": 0, + "site_admin": false, + "ssh_keys": [ + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDuGCb6WHZ8kex7gawtk2pmHd8t77HQ0LE+7sanVKoC5cWC/7RlefKBuH5c8F2RmmB1EaVFT2ylCsR0qnPT8xGH7gjrkRs/B8LAcwvXifev1BkPSE1gJT+lQpnwPkfqBuCbsewOR1XyPqQt5SZh4a9w7GDvBsfO2Ate9ADtX0nsI76t2DURR32ptBKnN2TtYqnD5D3VKV2lhiI2tnz8sO5FZzYycCONsv570N/itwT34gKSLVRsj+0YmPjmOU+7JWpXxdtjocw06ZEGnSyInIH4VJVROE0p3Z63xHQ9fxDtnW71zf0a9UeoY5Vb/b7PbK4NF3Dp9gG8iaL9dqeiZ1XTCcXHDyHGVFej3sl0CkB+BQ/Gz9ZCqkSBcA+n9WA5KclNuOMwe4eLXRwg/gxxmAJB707gXUk+nSPGwYTObtm0+lfspCNQxAFry8gX39mdVqnaCz1agzmwZo7rRls+BZPfDPg3YUkB3v9P8y/cbO6Bn5IRmYB2KQ73E7X8QJcW0+E=", + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQDROzDzCBisy3+PvtvvCt7XxuEpNAwBS6SoK2wKJNnGgYPs8zInboOVZWqRXujOWOySPCloBfYU5B2eg94cVoDnTnc9dArWhBOK0aY93XM7/0s3/01w3Kkyi25oJytr0NRI8liZq6DnF9hFiqxRVcJkoS4+I9t9G3MURjVbcNY10+bIs6Dp9sbnJaJEWvvsbAiz1WdZBAsF3eW20mNkzmQtYoASHWv3AD/j+xLRYvx2sVcPXIGQ4fw3FqQIUOkbVQUW2lCBp+BVZgR1U4dKh5lejddxd7bXblWxJ5qqWPXulqCnUrJBBTWxTPrUxBzcZtxLAj8C04PyZPJYWVVbhuxkMgA7VeUHeZ/iFT6LZeqVtwTDlEPCzShCdIC0JWKzxI+I663YeSf2y1Jh3qT/R+e0qcduEmL3bdE+PyyvQks8WCXVfXtJeHQfkPKcy9gARpQScY/6vSyZbJNfIW1VagCCRZp54AzOlhKTUy2r97zlrzB9gBPU2ycbmLFYOglVrw6Fo6ECV8slQIxuz0lS0RbEI/+c9jWxKqcSrb0zCEgoL+HEdGaElTRENPhApPXZO+YlFZkg9NY9t+uGWCu2xPgSiR2fn44QzfWypxCq05G0fNRQRRIuMnpjkXlv66O/hju+xMTG1fVyKSKq5CA1bDdDn9euZ7Q6OAFsQX73hdYn6Q==" + ], + "suspended_at": "0001-01-01 00:00:00 +0000 UTC", + "updated_at": "2024-09-26 18:00:48 +0000 UTC", + "username": "gomez385" + }, + "sensitive_values": { + "gpg_keys": [], + "ssh_keys": [ + false, + false + ] + } + }, + { + "address": "module.repo_list[\"image-pipeline-packer\"].github_repository.repo", + "mode": "managed", + "type": "github_repository", + "name": "repo", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 1, + "values": { + "allow_auto_merge": false, + "allow_merge_commit": false, + "allow_rebase_merge": false, + "allow_squash_merge": true, + "allow_update_branch": false, + "archive_on_destroy": true, + "archived": false, + "auto_init": true, + "default_branch": "main", + "delete_branch_on_merge": true, + "description": "Template repo for windows image pipelines", + "etag": "W/\"f098082b026cdb8e23a98afebcf9839b4863bb9ac228647ac57cb0dcc1096587\"", + "full_name": "CSVD/image-pipeline-packer", + "git_clone_url": "git://github.e.it.census.gov/CSVD/image-pipeline-packer.git", + "gitignore_template": "", + "has_discussions": false, + "has_downloads": false, + "has_issues": true, + "has_projects": true, + "has_wiki": true, + "homepage_url": "", + "html_url": "https://github.e.it.census.gov/CSVD/image-pipeline-packer", + "http_clone_url": "https://github.e.it.census.gov/CSVD/image-pipeline-packer.git", + "id": "image-pipeline-packer", + "ignore_vulnerability_alerts_during_read": null, + "is_template": false, + "license_template": null, + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "name": "image-pipeline-packer", + "node_id": "MDEwOlJlcG9zaXRvcnk5OTU=", + "pages": [], + "primary_language": "HCL", + "private": true, + "repo_id": 995, + "security_and_analysis": [ + { + "advanced_security": [ + { + "status": "disabled" + } + ], + "secret_scanning": [ + { + "status": "disabled" + } + ], + "secret_scanning_push_protection": [ + { + "status": "disabled" + } + ] + } + ], + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "ssh_clone_url": "git@github.e.it.census.gov:CSVD/image-pipeline-packer.git", + "svn_url": "https://github.e.it.census.gov/CSVD/image-pipeline-packer", + "template": [], + "topics": [ + "terraform" + ], + "visibility": "private", + "vulnerability_alerts": false, + "web_commit_signoff_required": false + }, + "sensitive_values": { + "pages": [], + "security_and_analysis": [ + { + "advanced_security": [ + {} + ], + "secret_scanning": [ + {} + ], + "secret_scanning_push_protection": [ + {} + ] + } + ], + "template": [], + "topics": [ + false + ] + } + }, + { + "address": "module.repo_list[\"image-pipeline-packer\"].github_repository_collaborator.collaborators[\"gomez385\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "gomez385", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "image-pipeline-packer:gomez385", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "image-pipeline-packer", + "username": "gomez385" + }, + "sensitive_values": {}, + "depends_on": [ + "module.repo_list.github_repository.repo" + ] + }, + { + "address": "module.repo_list[\"image-pipeline-packer\"].github_repository_collaborator.collaborators[\"morga471\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "morga471", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "image-pipeline-packer:morga471", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "image-pipeline-packer", + "username": "morga471" + }, + "sensitive_values": {}, + "depends_on": [ + "module.repo_list.github_repository.repo" + ] + }, + { + "address": "module.repo_list[\"image-pipeline-packer\"].github_repository_collaborator.collaborators[\"naray007\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "naray007", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "image-pipeline-packer:naray007", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "image-pipeline-packer", + "username": "naray007" + }, + "sensitive_values": {}, + "depends_on": [ + "module.repo_list.github_repository.repo" + ] + }, + { + "address": "module.repo_list[\"image-pipeline-packer\"].github_repository_file.managed_extra_files[\"s3_upload.yaml\"]", + "mode": "managed", + "type": "github_repository_file", + "name": "managed_extra_files", + "index": "s3_upload.yaml", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "autocreate_branch": null, + "autocreate_branch_source_branch": null, + "autocreate_branch_source_sha": null, + "branch": "main", + "commit_author": null, + "commit_email": null, + "commit_message": "Update .github/workflows/s3_upload.yaml", + "commit_sha": "7c7de00000db4d4edf11680621326723efa82327", + "content": "# This is a basic workflow to help you get started with Actions\nname: S3 Upload\n\non:\n push:\n branches: [ \"main\" ]\n # Allows you to run this workflow manually from the Actions tab\n workflow_dispatch:\n \n# A workflow run is made up of one or more jobs that can run sequentially or in parallel\njobs:\n # This workflow contains a single job called \"build\"\n build:\n # The type of runner that the job will run on\n runs-on: [ \"229685449397\" ]\n \n # Steps represent a sequence of tasks that will be executed as part of the job\n steps:\n # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it\n - uses: CSVD/gh-actions-checkout@v4\n id: checkout\n with:\n persist-credentials: false\n\n - uses: CSVD/gh-actions-setup-node@v3\n with:\n node-version: 16\n \n - name: AWS Auth\n id: aws_auth\n uses: CSVD/aws-auth@main\n with:\n ecs: true\n\n - run: |\n zip -r image-pipeline-packer.zip *\n aws s3 cp image-pipeline-packer.zip s3://csvd-dev-ew-github-actions\n env:\n AWS_ACCESS_KEY_ID: ${{ steps.aws_auth.outputs.aws_access_key_id }}\n AWS_SECRET_ACCESS_KEY: ${{ steps.aws_auth.outputs.aws_secret_access_key }}\n AWS_SESSION_TOKEN: ${{ steps.aws_auth.outputs.aws_session_token }}\n", + "file": ".github/workflows/s3_upload.yaml", + "id": "image-pipeline-packer/.github/workflows/s3_upload.yaml", + "overwrite_on_create": true, + "ref": "main", + "repository": "image-pipeline-packer", + "sha": "e3ab58756b0eb54540f8a4b06bc43d88e86aeee7" + }, + "sensitive_values": {}, + "depends_on": [ + "module.image_pipeline_repos.github_repository.repo" + ] + } + ], + "address": "module.repo_list[\"image-pipeline-packer\"]" + }, + { + "resources": [ + { + "address": "module.repo_list[\"morpheus-clouds\"].data.github_user.pull_request_bypassers[\"arnol377\"]", + "mode": "data", + "type": "github_user", + "name": "pull_request_bypassers", + "index": "arnol377", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "avatar_url": "https://github.e.it.census.gov/avatars/u/549?", + "bio": "", + "blog": "", + "company": "", + "created_at": "2023-12-26 17:20:24 +0000 UTC", + "email": "", + "followers": 0, + "following": 0, + "gpg_keys": [], + "gravatar_id": "", + "id": "549", + "location": "", + "login": "arnol377", + "name": "David John Arnold Jr", + "node_id": "MDQ6VXNlcjU0OQ==", + "public_gists": 0, + "public_repos": 4, + "site_admin": false, + "ssh_keys": [ + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDBL3xJ3zSxE6Qv8k9b06oFB4dbq2+PiOmsnIfAgL2XZpEenD03jhCF28iAZVy9oovuBCbcyAE9BjTRdWFSjd1dmHthbGe5Jv0/DweNFB/YmX6wJ6knljTA3frkY9bVS9+rqY6N4GG3oG6lyyk7cBaUEagXF4VQQJqX4l7XG1xxUfKLFFhF3Lq+CDg39FwlKk+QxIWMrbRJdpRBDZ03VZnKcgP0m/5K8PrcyGbxOK8qeVREUaqvmQN2Rs4LD1REPZyr3GQ2gtgpqrJ3hym7TwJw3Xl5NW8Y7RAeENem2K3EKoq6qq/wB/YUqMhKD228w5J6B+CoI8nvDqAWZkNAz/uY/GJe4elRJCmFH2F+r3263R5oDnXWSluB7XIm3b+Xt24F8MwoltejSEma41c8FM/xbF3Kle8ofBGFPEXpNDAxICVbyZ6OE4TyqTGKA8xgg9vnR3hCGGERtLYHhPw0aVHY7Zew/6/QV9o6/reO96V92zpXVEpvO09Z40fvTd5cN68=", + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDXRnBg+dayTonnZY3i0dDEHXUFMhcJKtqiFO7Oe/ejasDeW2I+L0f1gg+7u1ms/g8E28/RARN3R1aMnbGvXWdP/yBrhtpWJc5TXK+f33S5lYYjptJ2F6vj7jiRU7pP4uL9wqknj0DoSD0krAEbA85mBJgIV1viL8ZBtT/8iBoD6kHGRXaHpRH5sIFaURRJCcUTJhdqMUPd6bYKE/Bc6ioQLAEow0JB4ju1jPa7fOxhgVrIYxRiMkismhR0WLopB5JxyYDNmIyjUL2vGt9Kpd41DELv+Pn7EaP2HLjubVruWFnxnhZ7nvQwMonnZvjD3f5yPkDUkWnwaVGqw8cm9PFM4buFRmGpsl8YqTFakYgqc+JVDQB8bb9a9sr5/6Hbn41VcXd+KV6dTMK4PKSQFKLaq54ExzlwnE/EHnduE8JgvsfAa316/etFlzTQOBv1KbL8RKK0/vy6wJpiK9laDbymsOJPjZekoc/TD1AIvfWF9oae6wAU86tBVGdEO/JMOMc=", + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCvlUlp/OjFsa4fINqqMXukveo+mCu0Ywp0wwVCURkfJpPFPMdmbp07WlULCX6VgmqH4joCA+LUyY+q6iBZw80lS66lpDcRHMTG4PV7IsPpoYN20bUnm30vdqug/P1wVDuOO9B83+s3QFeBl9WbHQB3YY5pBulZGLIGw26qrLwfM5UJ4P/Ffca7ca9PM7KEkwqOC9xMfJy3tFkzD2Rjo2AHN9s7xHtpf95m8MzToy1Q7ykU/8bhImOrkZKaJJtIfmykYhebKDpeETEWJiyyaubIl71KAsWacrvQnEfo2fe62kR3SGv2auPDxMaGKPqtDpe2e/Y9I85Fv3tfWk53DDFoZNzExT4jc825bCqqz2DBbz4Q/Miw3rcdHx7uaRHinEJsBveNhZSH31GMLtU/dVNF3TNhlEH62Zmjgu7IpWb6Tr/4KnLjf/0p7ye34jP49nv1iBj99j3p1hwgAGU56ag4j7TW/iMh+uH+pg1hm6xZjhFInZGzQqtMl/qjBlr1oJ8=", + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCNVaIVHzjCkmCyQnpHfgLLvPtc96PVg/+8/cT2ty6TFe3ALaZJSHTWXjOPJaSkhBef2PCmbcsd3+p+QDl87nRl9O5fV376mrGwsxlpI2a1FnzpBkAEpZ2KyE4B593xGlpmvrMOF9gY4qGdNHCXw2puZ/IkmYaiROYpL2ptiSfTGc1R/ZrEvs0fhYwyi4xYfb+iGVSvjhhTqzJYNW6IBmMZVbDCdYX+JvSKsZYydnkHg7d9QJORZ3TnPe3Tmnn+PAse9V0z9VKOScfoRNT+Co9ezLGWNY+Dnnwg0jouA76/CiIIjWunJzLsIeu7cqNwubKO8lsLX9O+6zKR46EEaVr1VoC395IPvBy8x+VWUSpI+M7GLh0iPE56EvwiVm8irTkmY6WPsQ8PMJ5IWZE/OA6w6fupiSgBd5myFpB/wa8yVdY+UPfh40HpEXt0+iPeWK9kz/fJQAgow/FJAAsnI65JdVP4woAUYnmoJ0l6qgDyFQbOxcq7NZdmedHtRz049hM=" + ], + "suspended_at": "0001-01-01 00:00:00 +0000 UTC", + "updated_at": "2024-09-19 17:49:11 +0000 UTC", + "username": "arnol377" + }, + "sensitive_values": { + "gpg_keys": [], + "ssh_keys": [ + false, + false, + false, + false + ] + } + }, + { + "address": "module.repo_list[\"morpheus-clouds\"].data.github_user.pull_request_bypassers[\"gomez385\"]", + "mode": "data", + "type": "github_user", + "name": "pull_request_bypassers", + "index": "gomez385", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "avatar_url": "https://github.e.it.census.gov/avatars/u/603?", + "bio": "", + "blog": "", + "company": "", + "created_at": "2024-06-13 14:57:04 +0000 UTC", + "email": "", + "followers": 0, + "following": 1, + "gpg_keys": [], + "gravatar_id": "", + "id": "603", + "location": "", + "login": "gomez385", + "name": "James Farr Gomez", + "node_id": "MDQ6VXNlcjYwMw==", + "public_gists": 0, + "public_repos": 0, + "site_admin": false, + "ssh_keys": [ + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDuGCb6WHZ8kex7gawtk2pmHd8t77HQ0LE+7sanVKoC5cWC/7RlefKBuH5c8F2RmmB1EaVFT2ylCsR0qnPT8xGH7gjrkRs/B8LAcwvXifev1BkPSE1gJT+lQpnwPkfqBuCbsewOR1XyPqQt5SZh4a9w7GDvBsfO2Ate9ADtX0nsI76t2DURR32ptBKnN2TtYqnD5D3VKV2lhiI2tnz8sO5FZzYycCONsv570N/itwT34gKSLVRsj+0YmPjmOU+7JWpXxdtjocw06ZEGnSyInIH4VJVROE0p3Z63xHQ9fxDtnW71zf0a9UeoY5Vb/b7PbK4NF3Dp9gG8iaL9dqeiZ1XTCcXHDyHGVFej3sl0CkB+BQ/Gz9ZCqkSBcA+n9WA5KclNuOMwe4eLXRwg/gxxmAJB707gXUk+nSPGwYTObtm0+lfspCNQxAFry8gX39mdVqnaCz1agzmwZo7rRls+BZPfDPg3YUkB3v9P8y/cbO6Bn5IRmYB2KQ73E7X8QJcW0+E=", + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQDROzDzCBisy3+PvtvvCt7XxuEpNAwBS6SoK2wKJNnGgYPs8zInboOVZWqRXujOWOySPCloBfYU5B2eg94cVoDnTnc9dArWhBOK0aY93XM7/0s3/01w3Kkyi25oJytr0NRI8liZq6DnF9hFiqxRVcJkoS4+I9t9G3MURjVbcNY10+bIs6Dp9sbnJaJEWvvsbAiz1WdZBAsF3eW20mNkzmQtYoASHWv3AD/j+xLRYvx2sVcPXIGQ4fw3FqQIUOkbVQUW2lCBp+BVZgR1U4dKh5lejddxd7bXblWxJ5qqWPXulqCnUrJBBTWxTPrUxBzcZtxLAj8C04PyZPJYWVVbhuxkMgA7VeUHeZ/iFT6LZeqVtwTDlEPCzShCdIC0JWKzxI+I663YeSf2y1Jh3qT/R+e0qcduEmL3bdE+PyyvQks8WCXVfXtJeHQfkPKcy9gARpQScY/6vSyZbJNfIW1VagCCRZp54AzOlhKTUy2r97zlrzB9gBPU2ycbmLFYOglVrw6Fo6ECV8slQIxuz0lS0RbEI/+c9jWxKqcSrb0zCEgoL+HEdGaElTRENPhApPXZO+YlFZkg9NY9t+uGWCu2xPgSiR2fn44QzfWypxCq05G0fNRQRRIuMnpjkXlv66O/hju+xMTG1fVyKSKq5CA1bDdDn9euZ7Q6OAFsQX73hdYn6Q==" + ], + "suspended_at": "0001-01-01 00:00:00 +0000 UTC", + "updated_at": "2024-09-26 18:00:48 +0000 UTC", + "username": "gomez385" + }, + "sensitive_values": { + "gpg_keys": [], + "ssh_keys": [ + false, + false + ] + } + }, + { + "address": "module.repo_list[\"morpheus-clouds\"].github_repository.repo", + "mode": "managed", + "type": "github_repository", + "name": "repo", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 1, + "values": { + "allow_auto_merge": false, + "allow_merge_commit": false, + "allow_rebase_merge": false, + "allow_squash_merge": true, + "allow_update_branch": false, + "archive_on_destroy": true, + "archived": false, + "auto_init": true, + "default_branch": "main", + "delete_branch_on_merge": true, + "description": "Repo for morpheus cloud", + "etag": "W/\"821214079c1450c9472028120d6a9c503f186a8f0a1b660a9745f68c96d16832\"", + "full_name": "CSVD/morpheus-clouds", + "git_clone_url": "git://github.e.it.census.gov/CSVD/morpheus-clouds.git", + "gitignore_template": "", + "has_discussions": false, + "has_downloads": false, + "has_issues": true, + "has_projects": true, + "has_wiki": true, + "homepage_url": "", + "html_url": "https://github.e.it.census.gov/CSVD/morpheus-clouds", + "http_clone_url": "https://github.e.it.census.gov/CSVD/morpheus-clouds.git", + "id": "morpheus-clouds", + "ignore_vulnerability_alerts_during_read": null, + "is_template": false, + "license_template": null, + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "name": "morpheus-clouds", + "node_id": "MDEwOlJlcG9zaXRvcnkxMDEy", + "pages": [], + "primary_language": "HCL", + "private": true, + "repo_id": 1012, + "security_and_analysis": [ + { + "advanced_security": [ + { + "status": "disabled" + } + ], + "secret_scanning": [ + { + "status": "disabled" + } + ], + "secret_scanning_push_protection": [ + { + "status": "disabled" + } + ] + } + ], + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "ssh_clone_url": "git@github.e.it.census.gov:CSVD/morpheus-clouds.git", + "svn_url": "https://github.e.it.census.gov/CSVD/morpheus-clouds", + "template": [], + "topics": [ + "morpheus", + "terraform" + ], + "visibility": "private", + "vulnerability_alerts": false, + "web_commit_signoff_required": false + }, + "sensitive_values": { + "pages": [], + "security_and_analysis": [ + { + "advanced_security": [ + {} + ], + "secret_scanning": [ + {} + ], + "secret_scanning_push_protection": [ + {} + ] + } + ], + "template": [], + "topics": [ + false, + false + ] + } + }, + { + "address": "module.repo_list[\"morpheus-clouds\"].github_repository_collaborator.collaborators[\"arnol377\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "arnol377", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "morpheus-clouds:arnol377", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "morpheus-clouds", + "username": "arnol377" + }, + "sensitive_values": {}, + "depends_on": [ + "module.morpheus_repos.github_repository.repo" + ] + }, + { + "address": "module.repo_list[\"morpheus-clouds\"].github_repository_collaborator.collaborators[\"gomez385\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "gomez385", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "morpheus-clouds:gomez385", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "morpheus-clouds", + "username": "gomez385" + }, + "sensitive_values": {}, + "depends_on": [ + "module.repo_list.github_repository.repo" + ] + }, + { + "address": "module.repo_list[\"morpheus-clouds\"].github_repository_file.managed_extra_files[\"terraform-apply.yaml\"]", + "mode": "managed", + "type": "github_repository_file", + "name": "managed_extra_files", + "index": "terraform-apply.yaml", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "autocreate_branch": false, + "autocreate_branch_source_branch": "main", + "autocreate_branch_source_sha": null, + "branch": "main", + "commit_author": null, + "commit_email": null, + "commit_message": "Add .github/workflows/terraform-apply.yaml", + "commit_sha": "df0bc5e9b8949e856f1b91e276de446a8c5bee3f", + "content": "# This is a basic workflow to help you get started with Actions\nname: Terraform Apply\n\n# Controls when the workflow will run\non:\n # Triggers the workflow on push or pull request events but only for the \"main\" branch\n push:\n branches: [ \"main\" ]\n # Allows you to run this workflow manually from the Actions tab\n workflow_dispatch:\n\n# A workflow run is made up of one or more jobs that can run sequentially or in parallel\njobs:\n # This workflow contains a single job called \"build\"\n build:\n # The type of runner that the job will run on\n runs-on: [ morpheus-clouds ]\n env:\n AWS_SECRET_ACCESS_KEY: \"${{ secrets.AWS_SECRET_ACCESS_KEY }}\"\n AWS_ACCESS_KEY_ID: \"${{ vars.AWS_ACCESS_KEY_ID }}\"\n AWS_SESSION_TOKEN: \"${{ secrets.AWS_SESSION_TOKEN }}\"\n \n\n # Steps represent a sequence of tasks that will be executed as part of the job\n steps:\n # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it\n - uses: actions/checkout@v3\n\n\n - uses: CSVD/gh-actions-setup-node@v3\n with:\n node-version: 16\n \n - uses: CSVD/gh-actions-setup-terraform@v2\n with:\n terraform_version: ${{ vars.terraform_version }}\n \n - name: Terraform Format\n id: fmt\n \n run: |\n terraform fmt -check\n\n - name: Autoformat Halt\n if: env.auto_format == 'true'\n \n run: exit 1\n\n - name: Terraform Init\n id: init\n \n run: terraform init -upgrade\n\n - name: Terraform Validate\n id: validate\n \n run: terraform validate\n\n - name: Terraform Apply\n id: apply\n \n run: terraform apply -auto-approve\n continue-on-error: true\n", + "file": ".github/workflows/terraform-apply.yaml", + "id": "morpheus-clouds/.github/workflows/terraform-apply.yaml", + "overwrite_on_create": true, + "ref": "main", + "repository": "morpheus-clouds", + "sha": "5f982c12ec363310f48fdf45ab4ad02afb54aa51" + }, + "sensitive_values": {}, + "depends_on": [ + "module.morpheus_repos.github_repository.repo" + ] + }, + { + "address": "module.repo_list[\"morpheus-clouds\"].github_repository_file.managed_extra_files[\"terraform-plan.yaml\"]", + "mode": "managed", + "type": "github_repository_file", + "name": "managed_extra_files", + "index": "terraform-plan.yaml", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "autocreate_branch": false, + "autocreate_branch_source_branch": "main", + "autocreate_branch_source_sha": null, + "branch": "main", + "commit_author": null, + "commit_email": null, + "commit_message": "Add .github/workflows/terraform-plan.yaml", + "commit_sha": "63f1a5748d00cebeca1d686ddee6a5e8118f8bba", + "content": "\n# This is a basic workflow to help you get started with Actions\n\nname: Terraform Plan\n\n\n# Controls when the workflow will run\non:\n pull_request:\n\n# A workflow run is made up of one or more jobs that can run sequentially or in parallel\njobs:\n # This workflow contains a single job called \"build\"\n build:\n # The type of runner that the job will run on\n runs-on: [ morpheus-clouds ]\n env:\n AWS_SECRET_ACCESS_KEY: \"${{ secrets.AWS_SECRET_ACCESS_KEY }}\"\n AWS_ACCESS_KEY_ID: \"${{ vars.AWS_ACCESS_KEY_ID }}\"\n AWS_SESSION_TOKEN: \"${{ secrets.AWS_SESSION_TOKEN }}\"\n \n\n # Steps represent a sequence of tasks that will be executed as part of the job\n steps:\n # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it\n - uses: actions/checkout@v3\n with:\n ref: ${{ github.head_ref }}\n token: ${{ secrets.GH_TOKEN }}\n\n - uses: CSVD/gh-actions-setup-node@v3\n with:\n node-version: 16\n \n - uses: CSVD/gh-actions-setup-terraform@v2\n with:\n terraform_version: ${{ vars.terraform_version }}\n\n - name: Terraform Format\n id: fmt\n run: |\n terraform fmt\n if ! git diff-index --quiet HEAD; then \n git config --global user.name 'gomez385'\n git config --global user.email 'james.f.gomez@census.gov'\n git commit -am \"Autoformatting TF Code\"\n git push\n echo \"auto_format=true\" >> $GITHUB_ENV \n fi\n\n - name: Autoformat Halt\n if: env.auto_format == 'true'\n run: exit 0\n\n - name: Terraform Init\n id: init\n \n run: terraform init -upgrade\n\n - name: Terraform Validate\n id: validate\n \n run: terraform validate\n\n - name: Terraform Plan\n id: plan\n \n run: terraform plan\n continue-on-error: true\n\n - name: Update Pull Request\n uses: CSVD/gh-actions-github-script@v6\n if: github.event_name == 'pull_request'\n with:\n github-token: ${{ secrets.GH_TOKEN }}\n script: |\n const output = `#### Terraform Format and Style 🖌\\`${{ steps.fmt.outcome }}\\`\n #### Terraform Initialization ⚙️\\`${{ steps.init.outcome }}\\`\n #### Terraform Validation 🤖\\`${{ steps.validate.outcome }}\\`\n #### Terraform Plan:\n ${{ steps.plan.outcome }}\n *Pushed by: @${{ github.actor }}, Action: \\`${{ github.event_name }}\\`*`;\n\n github.rest.issues.createComment({\n issue_number: context.issue.number,\n owner: context.repo.owner,\n repo: context.repo.repo,\n body: output\n })\n", + "file": ".github/workflows/terraform-plan.yaml", + "id": "morpheus-clouds/.github/workflows/terraform-plan.yaml", + "overwrite_on_create": true, + "ref": "main", + "repository": "morpheus-clouds", + "sha": "ad6457305e1d68ad20f4efa2a97fc011c289343d" + }, + "sensitive_values": {}, + "depends_on": [ + "module.morpheus_repos.github_repository.repo" + ] + } + ], + "address": "module.repo_list[\"morpheus-clouds\"]" + }, + { + "resources": [ + { + "address": "module.repo_list[\"morpheus-repos\"].data.github_user.pull_request_bypassers[\"arnol377\"]", + "mode": "data", + "type": "github_user", + "name": "pull_request_bypassers", + "index": "arnol377", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "avatar_url": "https://github.e.it.census.gov/avatars/u/549?", + "bio": "", + "blog": "", + "company": "", + "created_at": "2023-12-26 17:20:24 +0000 UTC", + "email": "", + "followers": 0, + "following": 0, + "gpg_keys": [], + "gravatar_id": "", + "id": "549", + "location": "", + "login": "arnol377", + "name": "David John Arnold Jr", + "node_id": "MDQ6VXNlcjU0OQ==", + "public_gists": 0, + "public_repos": 4, + "site_admin": false, + "ssh_keys": [ + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDBL3xJ3zSxE6Qv8k9b06oFB4dbq2+PiOmsnIfAgL2XZpEenD03jhCF28iAZVy9oovuBCbcyAE9BjTRdWFSjd1dmHthbGe5Jv0/DweNFB/YmX6wJ6knljTA3frkY9bVS9+rqY6N4GG3oG6lyyk7cBaUEagXF4VQQJqX4l7XG1xxUfKLFFhF3Lq+CDg39FwlKk+QxIWMrbRJdpRBDZ03VZnKcgP0m/5K8PrcyGbxOK8qeVREUaqvmQN2Rs4LD1REPZyr3GQ2gtgpqrJ3hym7TwJw3Xl5NW8Y7RAeENem2K3EKoq6qq/wB/YUqMhKD228w5J6B+CoI8nvDqAWZkNAz/uY/GJe4elRJCmFH2F+r3263R5oDnXWSluB7XIm3b+Xt24F8MwoltejSEma41c8FM/xbF3Kle8ofBGFPEXpNDAxICVbyZ6OE4TyqTGKA8xgg9vnR3hCGGERtLYHhPw0aVHY7Zew/6/QV9o6/reO96V92zpXVEpvO09Z40fvTd5cN68=", + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDXRnBg+dayTonnZY3i0dDEHXUFMhcJKtqiFO7Oe/ejasDeW2I+L0f1gg+7u1ms/g8E28/RARN3R1aMnbGvXWdP/yBrhtpWJc5TXK+f33S5lYYjptJ2F6vj7jiRU7pP4uL9wqknj0DoSD0krAEbA85mBJgIV1viL8ZBtT/8iBoD6kHGRXaHpRH5sIFaURRJCcUTJhdqMUPd6bYKE/Bc6ioQLAEow0JB4ju1jPa7fOxhgVrIYxRiMkismhR0WLopB5JxyYDNmIyjUL2vGt9Kpd41DELv+Pn7EaP2HLjubVruWFnxnhZ7nvQwMonnZvjD3f5yPkDUkWnwaVGqw8cm9PFM4buFRmGpsl8YqTFakYgqc+JVDQB8bb9a9sr5/6Hbn41VcXd+KV6dTMK4PKSQFKLaq54ExzlwnE/EHnduE8JgvsfAa316/etFlzTQOBv1KbL8RKK0/vy6wJpiK9laDbymsOJPjZekoc/TD1AIvfWF9oae6wAU86tBVGdEO/JMOMc=", + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCvlUlp/OjFsa4fINqqMXukveo+mCu0Ywp0wwVCURkfJpPFPMdmbp07WlULCX6VgmqH4joCA+LUyY+q6iBZw80lS66lpDcRHMTG4PV7IsPpoYN20bUnm30vdqug/P1wVDuOO9B83+s3QFeBl9WbHQB3YY5pBulZGLIGw26qrLwfM5UJ4P/Ffca7ca9PM7KEkwqOC9xMfJy3tFkzD2Rjo2AHN9s7xHtpf95m8MzToy1Q7ykU/8bhImOrkZKaJJtIfmykYhebKDpeETEWJiyyaubIl71KAsWacrvQnEfo2fe62kR3SGv2auPDxMaGKPqtDpe2e/Y9I85Fv3tfWk53DDFoZNzExT4jc825bCqqz2DBbz4Q/Miw3rcdHx7uaRHinEJsBveNhZSH31GMLtU/dVNF3TNhlEH62Zmjgu7IpWb6Tr/4KnLjf/0p7ye34jP49nv1iBj99j3p1hwgAGU56ag4j7TW/iMh+uH+pg1hm6xZjhFInZGzQqtMl/qjBlr1oJ8=", + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCNVaIVHzjCkmCyQnpHfgLLvPtc96PVg/+8/cT2ty6TFe3ALaZJSHTWXjOPJaSkhBef2PCmbcsd3+p+QDl87nRl9O5fV376mrGwsxlpI2a1FnzpBkAEpZ2KyE4B593xGlpmvrMOF9gY4qGdNHCXw2puZ/IkmYaiROYpL2ptiSfTGc1R/ZrEvs0fhYwyi4xYfb+iGVSvjhhTqzJYNW6IBmMZVbDCdYX+JvSKsZYydnkHg7d9QJORZ3TnPe3Tmnn+PAse9V0z9VKOScfoRNT+Co9ezLGWNY+Dnnwg0jouA76/CiIIjWunJzLsIeu7cqNwubKO8lsLX9O+6zKR46EEaVr1VoC395IPvBy8x+VWUSpI+M7GLh0iPE56EvwiVm8irTkmY6WPsQ8PMJ5IWZE/OA6w6fupiSgBd5myFpB/wa8yVdY+UPfh40HpEXt0+iPeWK9kz/fJQAgow/FJAAsnI65JdVP4woAUYnmoJ0l6qgDyFQbOxcq7NZdmedHtRz049hM=" + ], + "suspended_at": "0001-01-01 00:00:00 +0000 UTC", + "updated_at": "2024-09-19 17:49:11 +0000 UTC", + "username": "arnol377" + }, + "sensitive_values": { + "gpg_keys": [], + "ssh_keys": [ + false, + false, + false, + false + ] + } + }, + { + "address": "module.repo_list[\"morpheus-repos\"].data.github_user.pull_request_bypassers[\"gomez385\"]", + "mode": "data", + "type": "github_user", + "name": "pull_request_bypassers", + "index": "gomez385", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "avatar_url": "https://github.e.it.census.gov/avatars/u/603?", + "bio": "", + "blog": "", + "company": "", + "created_at": "2024-06-13 14:57:04 +0000 UTC", + "email": "", + "followers": 0, + "following": 1, + "gpg_keys": [], + "gravatar_id": "", + "id": "603", + "location": "", + "login": "gomez385", + "name": "James Farr Gomez", + "node_id": "MDQ6VXNlcjYwMw==", + "public_gists": 0, + "public_repos": 0, + "site_admin": false, + "ssh_keys": [ + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDuGCb6WHZ8kex7gawtk2pmHd8t77HQ0LE+7sanVKoC5cWC/7RlefKBuH5c8F2RmmB1EaVFT2ylCsR0qnPT8xGH7gjrkRs/B8LAcwvXifev1BkPSE1gJT+lQpnwPkfqBuCbsewOR1XyPqQt5SZh4a9w7GDvBsfO2Ate9ADtX0nsI76t2DURR32ptBKnN2TtYqnD5D3VKV2lhiI2tnz8sO5FZzYycCONsv570N/itwT34gKSLVRsj+0YmPjmOU+7JWpXxdtjocw06ZEGnSyInIH4VJVROE0p3Z63xHQ9fxDtnW71zf0a9UeoY5Vb/b7PbK4NF3Dp9gG8iaL9dqeiZ1XTCcXHDyHGVFej3sl0CkB+BQ/Gz9ZCqkSBcA+n9WA5KclNuOMwe4eLXRwg/gxxmAJB707gXUk+nSPGwYTObtm0+lfspCNQxAFry8gX39mdVqnaCz1agzmwZo7rRls+BZPfDPg3YUkB3v9P8y/cbO6Bn5IRmYB2KQ73E7X8QJcW0+E=", + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQDROzDzCBisy3+PvtvvCt7XxuEpNAwBS6SoK2wKJNnGgYPs8zInboOVZWqRXujOWOySPCloBfYU5B2eg94cVoDnTnc9dArWhBOK0aY93XM7/0s3/01w3Kkyi25oJytr0NRI8liZq6DnF9hFiqxRVcJkoS4+I9t9G3MURjVbcNY10+bIs6Dp9sbnJaJEWvvsbAiz1WdZBAsF3eW20mNkzmQtYoASHWv3AD/j+xLRYvx2sVcPXIGQ4fw3FqQIUOkbVQUW2lCBp+BVZgR1U4dKh5lejddxd7bXblWxJ5qqWPXulqCnUrJBBTWxTPrUxBzcZtxLAj8C04PyZPJYWVVbhuxkMgA7VeUHeZ/iFT6LZeqVtwTDlEPCzShCdIC0JWKzxI+I663YeSf2y1Jh3qT/R+e0qcduEmL3bdE+PyyvQks8WCXVfXtJeHQfkPKcy9gARpQScY/6vSyZbJNfIW1VagCCRZp54AzOlhKTUy2r97zlrzB9gBPU2ycbmLFYOglVrw6Fo6ECV8slQIxuz0lS0RbEI/+c9jWxKqcSrb0zCEgoL+HEdGaElTRENPhApPXZO+YlFZkg9NY9t+uGWCu2xPgSiR2fn44QzfWypxCq05G0fNRQRRIuMnpjkXlv66O/hju+xMTG1fVyKSKq5CA1bDdDn9euZ7Q6OAFsQX73hdYn6Q==" + ], + "suspended_at": "0001-01-01 00:00:00 +0000 UTC", + "updated_at": "2024-09-26 18:00:48 +0000 UTC", + "username": "gomez385" + }, + "sensitive_values": { + "gpg_keys": [], + "ssh_keys": [ + false, + false + ] + } + }, + { + "address": "module.repo_list[\"morpheus-repos\"].github_repository.repo", + "mode": "managed", + "type": "github_repository", + "name": "repo", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 1, + "values": { + "allow_auto_merge": false, + "allow_merge_commit": false, + "allow_rebase_merge": false, + "allow_squash_merge": true, + "allow_update_branch": false, + "archive_on_destroy": true, + "archived": false, + "auto_init": true, + "default_branch": "main", + "delete_branch_on_merge": true, + "description": "morpheus-repos", + "etag": "W/\"28dd1636e9ea975361ed55223c9896be94752c7e3f6dea9cdb48c87c477a9706\"", + "full_name": "CSVD/morpheus-repos", + "git_clone_url": "git://github.e.it.census.gov/CSVD/morpheus-repos.git", + "gitignore_template": "", + "has_discussions": false, + "has_downloads": false, + "has_issues": true, + "has_projects": true, + "has_wiki": true, + "homepage_url": "", + "html_url": "https://github.e.it.census.gov/CSVD/morpheus-repos", + "http_clone_url": "https://github.e.it.census.gov/CSVD/morpheus-repos.git", + "id": "morpheus-repos", + "ignore_vulnerability_alerts_during_read": null, + "is_template": false, + "license_template": null, + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "name": "morpheus-repos", + "node_id": "MDEwOlJlcG9zaXRvcnkxMDY5", + "pages": [], + "primary_language": "HCL", + "private": false, + "repo_id": 1069, + "security_and_analysis": [ + { + "advanced_security": [ + { + "status": "disabled" + } + ], + "secret_scanning": [ + { + "status": "disabled" + } + ], + "secret_scanning_push_protection": [ + { + "status": "disabled" + } + ] + } + ], + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "ssh_clone_url": "git@github.e.it.census.gov:CSVD/morpheus-repos.git", + "svn_url": "https://github.e.it.census.gov/CSVD/morpheus-repos", + "template": [], + "topics": [ + "morpheus" + ], + "visibility": "public", + "vulnerability_alerts": false, + "web_commit_signoff_required": false + }, + "sensitive_values": { + "pages": [], + "security_and_analysis": [ + { + "advanced_security": [ + {} + ], + "secret_scanning": [ + {} + ], + "secret_scanning_push_protection": [ + {} + ] + } + ], + "template": [], + "topics": [ + false + ] + } + }, + { + "address": "module.repo_list[\"morpheus-repos\"].github_repository_collaborator.collaborators[\"gomez385\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "gomez385", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "morpheus-repos:gomez385", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "morpheus-repos", + "username": "gomez385" + }, + "sensitive_values": {}, + "depends_on": [ + "module.repo_list.github_repository.repo" + ] + }, + { + "address": "module.repo_list[\"morpheus-repos\"].github_repository_collaborator.collaborators[\"morga471\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "morga471", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "morpheus-repos:morga471", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "morpheus-repos", + "username": "morga471" + }, + "sensitive_values": {}, + "depends_on": [ + "module.repo_list.github_repository.repo" + ] + }, + { + "address": "module.repo_list[\"morpheus-repos\"].github_repository_collaborator.collaborators[\"naray007\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "naray007", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "morpheus-repos:naray007", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "morpheus-repos", + "username": "naray007" + }, + "sensitive_values": {}, + "depends_on": [ + "module.repo_list.github_repository.repo" + ] + } + ], + "address": "module.repo_list[\"morpheus-repos\"]" + }, + { + "resources": [ + { + "address": "module.repo_list[\"opensearch\"].data.github_user.pull_request_bypassers[\"arnol377\"]", + "mode": "data", + "type": "github_user", + "name": "pull_request_bypassers", + "index": "arnol377", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "avatar_url": "https://github.e.it.census.gov/avatars/u/549?", + "bio": "", + "blog": "", + "company": "", + "created_at": "2023-12-26 17:20:24 +0000 UTC", + "email": "", + "followers": 0, + "following": 0, + "gpg_keys": [], + "gravatar_id": "", + "id": "549", + "location": "", + "login": "arnol377", + "name": "David John Arnold Jr", + "node_id": "MDQ6VXNlcjU0OQ==", + "public_gists": 0, + "public_repos": 4, + "site_admin": false, + "ssh_keys": [ + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDBL3xJ3zSxE6Qv8k9b06oFB4dbq2+PiOmsnIfAgL2XZpEenD03jhCF28iAZVy9oovuBCbcyAE9BjTRdWFSjd1dmHthbGe5Jv0/DweNFB/YmX6wJ6knljTA3frkY9bVS9+rqY6N4GG3oG6lyyk7cBaUEagXF4VQQJqX4l7XG1xxUfKLFFhF3Lq+CDg39FwlKk+QxIWMrbRJdpRBDZ03VZnKcgP0m/5K8PrcyGbxOK8qeVREUaqvmQN2Rs4LD1REPZyr3GQ2gtgpqrJ3hym7TwJw3Xl5NW8Y7RAeENem2K3EKoq6qq/wB/YUqMhKD228w5J6B+CoI8nvDqAWZkNAz/uY/GJe4elRJCmFH2F+r3263R5oDnXWSluB7XIm3b+Xt24F8MwoltejSEma41c8FM/xbF3Kle8ofBGFPEXpNDAxICVbyZ6OE4TyqTGKA8xgg9vnR3hCGGERtLYHhPw0aVHY7Zew/6/QV9o6/reO96V92zpXVEpvO09Z40fvTd5cN68=", + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDXRnBg+dayTonnZY3i0dDEHXUFMhcJKtqiFO7Oe/ejasDeW2I+L0f1gg+7u1ms/g8E28/RARN3R1aMnbGvXWdP/yBrhtpWJc5TXK+f33S5lYYjptJ2F6vj7jiRU7pP4uL9wqknj0DoSD0krAEbA85mBJgIV1viL8ZBtT/8iBoD6kHGRXaHpRH5sIFaURRJCcUTJhdqMUPd6bYKE/Bc6ioQLAEow0JB4ju1jPa7fOxhgVrIYxRiMkismhR0WLopB5JxyYDNmIyjUL2vGt9Kpd41DELv+Pn7EaP2HLjubVruWFnxnhZ7nvQwMonnZvjD3f5yPkDUkWnwaVGqw8cm9PFM4buFRmGpsl8YqTFakYgqc+JVDQB8bb9a9sr5/6Hbn41VcXd+KV6dTMK4PKSQFKLaq54ExzlwnE/EHnduE8JgvsfAa316/etFlzTQOBv1KbL8RKK0/vy6wJpiK9laDbymsOJPjZekoc/TD1AIvfWF9oae6wAU86tBVGdEO/JMOMc=", + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCvlUlp/OjFsa4fINqqMXukveo+mCu0Ywp0wwVCURkfJpPFPMdmbp07WlULCX6VgmqH4joCA+LUyY+q6iBZw80lS66lpDcRHMTG4PV7IsPpoYN20bUnm30vdqug/P1wVDuOO9B83+s3QFeBl9WbHQB3YY5pBulZGLIGw26qrLwfM5UJ4P/Ffca7ca9PM7KEkwqOC9xMfJy3tFkzD2Rjo2AHN9s7xHtpf95m8MzToy1Q7ykU/8bhImOrkZKaJJtIfmykYhebKDpeETEWJiyyaubIl71KAsWacrvQnEfo2fe62kR3SGv2auPDxMaGKPqtDpe2e/Y9I85Fv3tfWk53DDFoZNzExT4jc825bCqqz2DBbz4Q/Miw3rcdHx7uaRHinEJsBveNhZSH31GMLtU/dVNF3TNhlEH62Zmjgu7IpWb6Tr/4KnLjf/0p7ye34jP49nv1iBj99j3p1hwgAGU56ag4j7TW/iMh+uH+pg1hm6xZjhFInZGzQqtMl/qjBlr1oJ8=", + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCNVaIVHzjCkmCyQnpHfgLLvPtc96PVg/+8/cT2ty6TFe3ALaZJSHTWXjOPJaSkhBef2PCmbcsd3+p+QDl87nRl9O5fV376mrGwsxlpI2a1FnzpBkAEpZ2KyE4B593xGlpmvrMOF9gY4qGdNHCXw2puZ/IkmYaiROYpL2ptiSfTGc1R/ZrEvs0fhYwyi4xYfb+iGVSvjhhTqzJYNW6IBmMZVbDCdYX+JvSKsZYydnkHg7d9QJORZ3TnPe3Tmnn+PAse9V0z9VKOScfoRNT+Co9ezLGWNY+Dnnwg0jouA76/CiIIjWunJzLsIeu7cqNwubKO8lsLX9O+6zKR46EEaVr1VoC395IPvBy8x+VWUSpI+M7GLh0iPE56EvwiVm8irTkmY6WPsQ8PMJ5IWZE/OA6w6fupiSgBd5myFpB/wa8yVdY+UPfh40HpEXt0+iPeWK9kz/fJQAgow/FJAAsnI65JdVP4woAUYnmoJ0l6qgDyFQbOxcq7NZdmedHtRz049hM=" + ], + "suspended_at": "0001-01-01 00:00:00 +0000 UTC", + "updated_at": "2024-09-19 17:49:11 +0000 UTC", + "username": "arnol377" + }, + "sensitive_values": { + "gpg_keys": [], + "ssh_keys": [ + false, + false, + false, + false + ] + } + }, + { + "address": "module.repo_list[\"opensearch\"].data.github_user.pull_request_bypassers[\"gomez385\"]", + "mode": "data", + "type": "github_user", + "name": "pull_request_bypassers", + "index": "gomez385", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "avatar_url": "https://github.e.it.census.gov/avatars/u/603?", + "bio": "", + "blog": "", + "company": "", + "created_at": "2024-06-13 14:57:04 +0000 UTC", + "email": "", + "followers": 0, + "following": 1, + "gpg_keys": [], + "gravatar_id": "", + "id": "603", + "location": "", + "login": "gomez385", + "name": "James Farr Gomez", + "node_id": "MDQ6VXNlcjYwMw==", + "public_gists": 0, + "public_repos": 0, + "site_admin": false, + "ssh_keys": [ + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDuGCb6WHZ8kex7gawtk2pmHd8t77HQ0LE+7sanVKoC5cWC/7RlefKBuH5c8F2RmmB1EaVFT2ylCsR0qnPT8xGH7gjrkRs/B8LAcwvXifev1BkPSE1gJT+lQpnwPkfqBuCbsewOR1XyPqQt5SZh4a9w7GDvBsfO2Ate9ADtX0nsI76t2DURR32ptBKnN2TtYqnD5D3VKV2lhiI2tnz8sO5FZzYycCONsv570N/itwT34gKSLVRsj+0YmPjmOU+7JWpXxdtjocw06ZEGnSyInIH4VJVROE0p3Z63xHQ9fxDtnW71zf0a9UeoY5Vb/b7PbK4NF3Dp9gG8iaL9dqeiZ1XTCcXHDyHGVFej3sl0CkB+BQ/Gz9ZCqkSBcA+n9WA5KclNuOMwe4eLXRwg/gxxmAJB707gXUk+nSPGwYTObtm0+lfspCNQxAFry8gX39mdVqnaCz1agzmwZo7rRls+BZPfDPg3YUkB3v9P8y/cbO6Bn5IRmYB2KQ73E7X8QJcW0+E=", + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQDROzDzCBisy3+PvtvvCt7XxuEpNAwBS6SoK2wKJNnGgYPs8zInboOVZWqRXujOWOySPCloBfYU5B2eg94cVoDnTnc9dArWhBOK0aY93XM7/0s3/01w3Kkyi25oJytr0NRI8liZq6DnF9hFiqxRVcJkoS4+I9t9G3MURjVbcNY10+bIs6Dp9sbnJaJEWvvsbAiz1WdZBAsF3eW20mNkzmQtYoASHWv3AD/j+xLRYvx2sVcPXIGQ4fw3FqQIUOkbVQUW2lCBp+BVZgR1U4dKh5lejddxd7bXblWxJ5qqWPXulqCnUrJBBTWxTPrUxBzcZtxLAj8C04PyZPJYWVVbhuxkMgA7VeUHeZ/iFT6LZeqVtwTDlEPCzShCdIC0JWKzxI+I663YeSf2y1Jh3qT/R+e0qcduEmL3bdE+PyyvQks8WCXVfXtJeHQfkPKcy9gARpQScY/6vSyZbJNfIW1VagCCRZp54AzOlhKTUy2r97zlrzB9gBPU2ycbmLFYOglVrw6Fo6ECV8slQIxuz0lS0RbEI/+c9jWxKqcSrb0zCEgoL+HEdGaElTRENPhApPXZO+YlFZkg9NY9t+uGWCu2xPgSiR2fn44QzfWypxCq05G0fNRQRRIuMnpjkXlv66O/hju+xMTG1fVyKSKq5CA1bDdDn9euZ7Q6OAFsQX73hdYn6Q==" + ], + "suspended_at": "0001-01-01 00:00:00 +0000 UTC", + "updated_at": "2024-09-26 18:00:48 +0000 UTC", + "username": "gomez385" + }, + "sensitive_values": { + "gpg_keys": [], + "ssh_keys": [ + false, + false + ] + } + }, + { + "address": "module.repo_list[\"opensearch\"].github_repository.repo", + "mode": "managed", + "type": "github_repository", + "name": "repo", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 1, + "values": { + "allow_auto_merge": false, + "allow_merge_commit": false, + "allow_rebase_merge": false, + "allow_squash_merge": true, + "allow_update_branch": false, + "archive_on_destroy": true, + "archived": false, + "auto_init": true, + "default_branch": "main", + "delete_branch_on_merge": true, + "description": "Terraform workspace for managing OpenSearch", + "etag": "W/\"ed0854ff73d6fcd5dfbfed8e4200a480520dae3d435c3f91cb37719d8470452c\"", + "full_name": "CSVD/opensearch", + "git_clone_url": "git://github.e.it.census.gov/CSVD/opensearch.git", + "gitignore_template": "", + "has_discussions": false, + "has_downloads": false, + "has_issues": true, + "has_projects": true, + "has_wiki": true, + "homepage_url": "", + "html_url": "https://github.e.it.census.gov/CSVD/opensearch", + "http_clone_url": "https://github.e.it.census.gov/CSVD/opensearch.git", + "id": "opensearch", + "ignore_vulnerability_alerts_during_read": null, + "is_template": false, + "license_template": null, + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "name": "opensearch", + "node_id": "MDEwOlJlcG9zaXRvcnkxMDQ4", + "pages": [], + "primary_language": "HCL", + "private": false, + "repo_id": 1048, + "security_and_analysis": [ + { + "advanced_security": [ + { + "status": "disabled" + } + ], + "secret_scanning": [ + { + "status": "disabled" + } + ], + "secret_scanning_push_protection": [ + { + "status": "disabled" + } + ] + } + ], + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "ssh_clone_url": "git@github.e.it.census.gov:CSVD/opensearch.git", + "svn_url": "https://github.e.it.census.gov/CSVD/opensearch", + "template": [], + "topics": [ + "terraform" + ], + "visibility": "public", + "vulnerability_alerts": false, + "web_commit_signoff_required": false + }, + "sensitive_values": { + "pages": [], + "security_and_analysis": [ + { + "advanced_security": [ + {} + ], + "secret_scanning": [ + {} + ], + "secret_scanning_push_protection": [ + {} + ] + } + ], + "template": [], + "topics": [ + false + ] + } + }, + { + "address": "module.repo_list[\"opensearch\"].github_repository_collaborator.collaborators[\"gomez385\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "gomez385", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "opensearch:gomez385", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "opensearch", + "username": "gomez385" + }, + "sensitive_values": {}, + "depends_on": [ + "module.repo_list.github_repository.repo" + ] + }, + { + "address": "module.repo_list[\"opensearch\"].github_repository_collaborator.collaborators[\"morga471\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "morga471", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "opensearch:morga471", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "opensearch", + "username": "morga471" + }, + "sensitive_values": {}, + "depends_on": [ + "module.repo_list.github_repository.repo" + ] + }, + { + "address": "module.repo_list[\"opensearch\"].github_repository_collaborator.collaborators[\"naray007\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "naray007", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "opensearch:naray007", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "opensearch", + "username": "naray007" + }, + "sensitive_values": {}, + "depends_on": [ + "module.repo_list.github_repository.repo" + ] + } + ], + "address": "module.repo_list[\"opensearch\"]" + }, + { + "resources": [ + { + "address": "module.repo_list[\"pip-config\"].data.github_user.pull_request_bypassers[\"arnol377\"]", + "mode": "data", + "type": "github_user", + "name": "pull_request_bypassers", + "index": "arnol377", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "avatar_url": "https://github.e.it.census.gov/avatars/u/549?", + "bio": "", + "blog": "", + "company": "", + "created_at": "2023-12-26 17:20:24 +0000 UTC", + "email": "", + "followers": 0, + "following": 0, + "gpg_keys": [], + "gravatar_id": "", + "id": "549", + "location": "", + "login": "arnol377", + "name": "David John Arnold Jr", + "node_id": "MDQ6VXNlcjU0OQ==", + "public_gists": 0, + "public_repos": 4, + "site_admin": false, + "ssh_keys": [ + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDBL3xJ3zSxE6Qv8k9b06oFB4dbq2+PiOmsnIfAgL2XZpEenD03jhCF28iAZVy9oovuBCbcyAE9BjTRdWFSjd1dmHthbGe5Jv0/DweNFB/YmX6wJ6knljTA3frkY9bVS9+rqY6N4GG3oG6lyyk7cBaUEagXF4VQQJqX4l7XG1xxUfKLFFhF3Lq+CDg39FwlKk+QxIWMrbRJdpRBDZ03VZnKcgP0m/5K8PrcyGbxOK8qeVREUaqvmQN2Rs4LD1REPZyr3GQ2gtgpqrJ3hym7TwJw3Xl5NW8Y7RAeENem2K3EKoq6qq/wB/YUqMhKD228w5J6B+CoI8nvDqAWZkNAz/uY/GJe4elRJCmFH2F+r3263R5oDnXWSluB7XIm3b+Xt24F8MwoltejSEma41c8FM/xbF3Kle8ofBGFPEXpNDAxICVbyZ6OE4TyqTGKA8xgg9vnR3hCGGERtLYHhPw0aVHY7Zew/6/QV9o6/reO96V92zpXVEpvO09Z40fvTd5cN68=", + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDXRnBg+dayTonnZY3i0dDEHXUFMhcJKtqiFO7Oe/ejasDeW2I+L0f1gg+7u1ms/g8E28/RARN3R1aMnbGvXWdP/yBrhtpWJc5TXK+f33S5lYYjptJ2F6vj7jiRU7pP4uL9wqknj0DoSD0krAEbA85mBJgIV1viL8ZBtT/8iBoD6kHGRXaHpRH5sIFaURRJCcUTJhdqMUPd6bYKE/Bc6ioQLAEow0JB4ju1jPa7fOxhgVrIYxRiMkismhR0WLopB5JxyYDNmIyjUL2vGt9Kpd41DELv+Pn7EaP2HLjubVruWFnxnhZ7nvQwMonnZvjD3f5yPkDUkWnwaVGqw8cm9PFM4buFRmGpsl8YqTFakYgqc+JVDQB8bb9a9sr5/6Hbn41VcXd+KV6dTMK4PKSQFKLaq54ExzlwnE/EHnduE8JgvsfAa316/etFlzTQOBv1KbL8RKK0/vy6wJpiK9laDbymsOJPjZekoc/TD1AIvfWF9oae6wAU86tBVGdEO/JMOMc=", + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCvlUlp/OjFsa4fINqqMXukveo+mCu0Ywp0wwVCURkfJpPFPMdmbp07WlULCX6VgmqH4joCA+LUyY+q6iBZw80lS66lpDcRHMTG4PV7IsPpoYN20bUnm30vdqug/P1wVDuOO9B83+s3QFeBl9WbHQB3YY5pBulZGLIGw26qrLwfM5UJ4P/Ffca7ca9PM7KEkwqOC9xMfJy3tFkzD2Rjo2AHN9s7xHtpf95m8MzToy1Q7ykU/8bhImOrkZKaJJtIfmykYhebKDpeETEWJiyyaubIl71KAsWacrvQnEfo2fe62kR3SGv2auPDxMaGKPqtDpe2e/Y9I85Fv3tfWk53DDFoZNzExT4jc825bCqqz2DBbz4Q/Miw3rcdHx7uaRHinEJsBveNhZSH31GMLtU/dVNF3TNhlEH62Zmjgu7IpWb6Tr/4KnLjf/0p7ye34jP49nv1iBj99j3p1hwgAGU56ag4j7TW/iMh+uH+pg1hm6xZjhFInZGzQqtMl/qjBlr1oJ8=", + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCNVaIVHzjCkmCyQnpHfgLLvPtc96PVg/+8/cT2ty6TFe3ALaZJSHTWXjOPJaSkhBef2PCmbcsd3+p+QDl87nRl9O5fV376mrGwsxlpI2a1FnzpBkAEpZ2KyE4B593xGlpmvrMOF9gY4qGdNHCXw2puZ/IkmYaiROYpL2ptiSfTGc1R/ZrEvs0fhYwyi4xYfb+iGVSvjhhTqzJYNW6IBmMZVbDCdYX+JvSKsZYydnkHg7d9QJORZ3TnPe3Tmnn+PAse9V0z9VKOScfoRNT+Co9ezLGWNY+Dnnwg0jouA76/CiIIjWunJzLsIeu7cqNwubKO8lsLX9O+6zKR46EEaVr1VoC395IPvBy8x+VWUSpI+M7GLh0iPE56EvwiVm8irTkmY6WPsQ8PMJ5IWZE/OA6w6fupiSgBd5myFpB/wa8yVdY+UPfh40HpEXt0+iPeWK9kz/fJQAgow/FJAAsnI65JdVP4woAUYnmoJ0l6qgDyFQbOxcq7NZdmedHtRz049hM=" + ], + "suspended_at": "0001-01-01 00:00:00 +0000 UTC", + "updated_at": "2024-09-19 17:49:11 +0000 UTC", + "username": "arnol377" + }, + "sensitive_values": { + "gpg_keys": [], + "ssh_keys": [ + false, + false, + false, + false + ] + } + }, + { + "address": "module.repo_list[\"pip-config\"].data.github_user.pull_request_bypassers[\"gomez385\"]", + "mode": "data", + "type": "github_user", + "name": "pull_request_bypassers", + "index": "gomez385", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "avatar_url": "https://github.e.it.census.gov/avatars/u/603?", + "bio": "", + "blog": "", + "company": "", + "created_at": "2024-06-13 14:57:04 +0000 UTC", + "email": "", + "followers": 0, + "following": 1, + "gpg_keys": [], + "gravatar_id": "", + "id": "603", + "location": "", + "login": "gomez385", + "name": "James Farr Gomez", + "node_id": "MDQ6VXNlcjYwMw==", + "public_gists": 0, + "public_repos": 0, + "site_admin": false, + "ssh_keys": [ + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDuGCb6WHZ8kex7gawtk2pmHd8t77HQ0LE+7sanVKoC5cWC/7RlefKBuH5c8F2RmmB1EaVFT2ylCsR0qnPT8xGH7gjrkRs/B8LAcwvXifev1BkPSE1gJT+lQpnwPkfqBuCbsewOR1XyPqQt5SZh4a9w7GDvBsfO2Ate9ADtX0nsI76t2DURR32ptBKnN2TtYqnD5D3VKV2lhiI2tnz8sO5FZzYycCONsv570N/itwT34gKSLVRsj+0YmPjmOU+7JWpXxdtjocw06ZEGnSyInIH4VJVROE0p3Z63xHQ9fxDtnW71zf0a9UeoY5Vb/b7PbK4NF3Dp9gG8iaL9dqeiZ1XTCcXHDyHGVFej3sl0CkB+BQ/Gz9ZCqkSBcA+n9WA5KclNuOMwe4eLXRwg/gxxmAJB707gXUk+nSPGwYTObtm0+lfspCNQxAFry8gX39mdVqnaCz1agzmwZo7rRls+BZPfDPg3YUkB3v9P8y/cbO6Bn5IRmYB2KQ73E7X8QJcW0+E=", + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQDROzDzCBisy3+PvtvvCt7XxuEpNAwBS6SoK2wKJNnGgYPs8zInboOVZWqRXujOWOySPCloBfYU5B2eg94cVoDnTnc9dArWhBOK0aY93XM7/0s3/01w3Kkyi25oJytr0NRI8liZq6DnF9hFiqxRVcJkoS4+I9t9G3MURjVbcNY10+bIs6Dp9sbnJaJEWvvsbAiz1WdZBAsF3eW20mNkzmQtYoASHWv3AD/j+xLRYvx2sVcPXIGQ4fw3FqQIUOkbVQUW2lCBp+BVZgR1U4dKh5lejddxd7bXblWxJ5qqWPXulqCnUrJBBTWxTPrUxBzcZtxLAj8C04PyZPJYWVVbhuxkMgA7VeUHeZ/iFT6LZeqVtwTDlEPCzShCdIC0JWKzxI+I663YeSf2y1Jh3qT/R+e0qcduEmL3bdE+PyyvQks8WCXVfXtJeHQfkPKcy9gARpQScY/6vSyZbJNfIW1VagCCRZp54AzOlhKTUy2r97zlrzB9gBPU2ycbmLFYOglVrw6Fo6ECV8slQIxuz0lS0RbEI/+c9jWxKqcSrb0zCEgoL+HEdGaElTRENPhApPXZO+YlFZkg9NY9t+uGWCu2xPgSiR2fn44QzfWypxCq05G0fNRQRRIuMnpjkXlv66O/hju+xMTG1fVyKSKq5CA1bDdDn9euZ7Q6OAFsQX73hdYn6Q==" + ], + "suspended_at": "0001-01-01 00:00:00 +0000 UTC", + "updated_at": "2024-09-26 18:00:48 +0000 UTC", + "username": "gomez385" + }, + "sensitive_values": { + "gpg_keys": [], + "ssh_keys": [ + false, + false + ] + } + }, + { + "address": "module.repo_list[\"pip-config\"].github_repository.repo", + "mode": "managed", + "type": "github_repository", + "name": "repo", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 1, + "values": { + "allow_auto_merge": false, + "allow_merge_commit": false, + "allow_rebase_merge": false, + "allow_squash_merge": true, + "allow_update_branch": false, + "archive_on_destroy": true, + "archived": false, + "auto_init": true, + "default_branch": "main", + "delete_branch_on_merge": true, + "description": "Composite Action for configuring pip", + "etag": "W/\"7e8a2a753cb91dc12e3c99dc0e6796cbf734f11a57b6eb89643b41880dac2df8\"", + "full_name": "CSVD/pip-config", + "git_clone_url": "git://github.e.it.census.gov/CSVD/pip-config.git", + "gitignore_template": null, + "has_discussions": false, + "has_downloads": false, + "has_issues": true, + "has_projects": true, + "has_wiki": true, + "homepage_url": "", + "html_url": "https://github.e.it.census.gov/CSVD/pip-config", + "http_clone_url": "https://github.e.it.census.gov/CSVD/pip-config.git", + "id": "pip-config", + "ignore_vulnerability_alerts_during_read": null, + "is_template": false, + "license_template": null, + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "name": "pip-config", + "node_id": "MDEwOlJlcG9zaXRvcnkxMjc3", + "pages": [], + "primary_language": "", + "private": false, + "repo_id": 1277, + "security_and_analysis": [ + { + "advanced_security": [ + { + "status": "disabled" + } + ], + "secret_scanning": [ + { + "status": "disabled" + } + ], + "secret_scanning_push_protection": [ + { + "status": "disabled" + } + ] + } + ], + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "ssh_clone_url": "git@github.e.it.census.gov:CSVD/pip-config.git", + "svn_url": "https://github.e.it.census.gov/CSVD/pip-config", + "template": [], + "topics": [ + "github-actions", + "pip" + ], + "visibility": "public", + "vulnerability_alerts": false, + "web_commit_signoff_required": false + }, + "sensitive_values": { + "pages": [], + "security_and_analysis": [ + { + "advanced_security": [ + {} + ], + "secret_scanning": [ + {} + ], + "secret_scanning_push_protection": [ + {} + ] + } + ], + "template": [], + "topics": [ + false, + false + ] + } + }, + { + "address": "module.repo_list[\"pip-config\"].github_repository_collaborator.collaborators[\"gomez385\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "gomez385", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "pip-config:gomez385", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "pip-config", + "username": "gomez385" + }, + "sensitive_values": {}, + "depends_on": [ + "module.repo_list.github_repository.repo" + ] + }, + { + "address": "module.repo_list[\"pip-config\"].github_repository_collaborator.collaborators[\"morga471\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "morga471", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "pip-config:morga471", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "pip-config", + "username": "morga471" + }, + "sensitive_values": {}, + "depends_on": [ + "module.repo_list.github_repository.repo" + ] + }, + { + "address": "module.repo_list[\"pip-config\"].github_repository_collaborator.collaborators[\"naray007\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "naray007", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "pip-config:naray007", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "pip-config", + "username": "naray007" + }, + "sensitive_values": {}, + "depends_on": [ + "module.repo_list.github_repository.repo" + ] + } + ], + "address": "module.repo_list[\"pip-config\"]" + }, + { + "resources": [ + { + "address": "module.repo_list[\"service-catalog-workspace\"].data.github_user.pull_request_bypassers[\"arnol377\"]", + "mode": "data", + "type": "github_user", + "name": "pull_request_bypassers", + "index": "arnol377", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "avatar_url": "https://github.e.it.census.gov/avatars/u/549?", + "bio": "", + "blog": "", + "company": "", + "created_at": "2023-12-26 17:20:24 +0000 UTC", + "email": "", + "followers": 0, + "following": 0, + "gpg_keys": [], + "gravatar_id": "", + "id": "549", + "location": "", + "login": "arnol377", + "name": "David John Arnold Jr", + "node_id": "MDQ6VXNlcjU0OQ==", + "public_gists": 0, + "public_repos": 4, + "site_admin": false, + "ssh_keys": [ + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDBL3xJ3zSxE6Qv8k9b06oFB4dbq2+PiOmsnIfAgL2XZpEenD03jhCF28iAZVy9oovuBCbcyAE9BjTRdWFSjd1dmHthbGe5Jv0/DweNFB/YmX6wJ6knljTA3frkY9bVS9+rqY6N4GG3oG6lyyk7cBaUEagXF4VQQJqX4l7XG1xxUfKLFFhF3Lq+CDg39FwlKk+QxIWMrbRJdpRBDZ03VZnKcgP0m/5K8PrcyGbxOK8qeVREUaqvmQN2Rs4LD1REPZyr3GQ2gtgpqrJ3hym7TwJw3Xl5NW8Y7RAeENem2K3EKoq6qq/wB/YUqMhKD228w5J6B+CoI8nvDqAWZkNAz/uY/GJe4elRJCmFH2F+r3263R5oDnXWSluB7XIm3b+Xt24F8MwoltejSEma41c8FM/xbF3Kle8ofBGFPEXpNDAxICVbyZ6OE4TyqTGKA8xgg9vnR3hCGGERtLYHhPw0aVHY7Zew/6/QV9o6/reO96V92zpXVEpvO09Z40fvTd5cN68=", + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDXRnBg+dayTonnZY3i0dDEHXUFMhcJKtqiFO7Oe/ejasDeW2I+L0f1gg+7u1ms/g8E28/RARN3R1aMnbGvXWdP/yBrhtpWJc5TXK+f33S5lYYjptJ2F6vj7jiRU7pP4uL9wqknj0DoSD0krAEbA85mBJgIV1viL8ZBtT/8iBoD6kHGRXaHpRH5sIFaURRJCcUTJhdqMUPd6bYKE/Bc6ioQLAEow0JB4ju1jPa7fOxhgVrIYxRiMkismhR0WLopB5JxyYDNmIyjUL2vGt9Kpd41DELv+Pn7EaP2HLjubVruWFnxnhZ7nvQwMonnZvjD3f5yPkDUkWnwaVGqw8cm9PFM4buFRmGpsl8YqTFakYgqc+JVDQB8bb9a9sr5/6Hbn41VcXd+KV6dTMK4PKSQFKLaq54ExzlwnE/EHnduE8JgvsfAa316/etFlzTQOBv1KbL8RKK0/vy6wJpiK9laDbymsOJPjZekoc/TD1AIvfWF9oae6wAU86tBVGdEO/JMOMc=", + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCvlUlp/OjFsa4fINqqMXukveo+mCu0Ywp0wwVCURkfJpPFPMdmbp07WlULCX6VgmqH4joCA+LUyY+q6iBZw80lS66lpDcRHMTG4PV7IsPpoYN20bUnm30vdqug/P1wVDuOO9B83+s3QFeBl9WbHQB3YY5pBulZGLIGw26qrLwfM5UJ4P/Ffca7ca9PM7KEkwqOC9xMfJy3tFkzD2Rjo2AHN9s7xHtpf95m8MzToy1Q7ykU/8bhImOrkZKaJJtIfmykYhebKDpeETEWJiyyaubIl71KAsWacrvQnEfo2fe62kR3SGv2auPDxMaGKPqtDpe2e/Y9I85Fv3tfWk53DDFoZNzExT4jc825bCqqz2DBbz4Q/Miw3rcdHx7uaRHinEJsBveNhZSH31GMLtU/dVNF3TNhlEH62Zmjgu7IpWb6Tr/4KnLjf/0p7ye34jP49nv1iBj99j3p1hwgAGU56ag4j7TW/iMh+uH+pg1hm6xZjhFInZGzQqtMl/qjBlr1oJ8=", + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCNVaIVHzjCkmCyQnpHfgLLvPtc96PVg/+8/cT2ty6TFe3ALaZJSHTWXjOPJaSkhBef2PCmbcsd3+p+QDl87nRl9O5fV376mrGwsxlpI2a1FnzpBkAEpZ2KyE4B593xGlpmvrMOF9gY4qGdNHCXw2puZ/IkmYaiROYpL2ptiSfTGc1R/ZrEvs0fhYwyi4xYfb+iGVSvjhhTqzJYNW6IBmMZVbDCdYX+JvSKsZYydnkHg7d9QJORZ3TnPe3Tmnn+PAse9V0z9VKOScfoRNT+Co9ezLGWNY+Dnnwg0jouA76/CiIIjWunJzLsIeu7cqNwubKO8lsLX9O+6zKR46EEaVr1VoC395IPvBy8x+VWUSpI+M7GLh0iPE56EvwiVm8irTkmY6WPsQ8PMJ5IWZE/OA6w6fupiSgBd5myFpB/wa8yVdY+UPfh40HpEXt0+iPeWK9kz/fJQAgow/FJAAsnI65JdVP4woAUYnmoJ0l6qgDyFQbOxcq7NZdmedHtRz049hM=" + ], + "suspended_at": "0001-01-01 00:00:00 +0000 UTC", + "updated_at": "2024-09-19 17:49:11 +0000 UTC", + "username": "arnol377" + }, + "sensitive_values": { + "gpg_keys": [], + "ssh_keys": [ + false, + false, + false, + false + ] + } + }, + { + "address": "module.repo_list[\"service-catalog-workspace\"].data.github_user.pull_request_bypassers[\"gomez385\"]", + "mode": "data", + "type": "github_user", + "name": "pull_request_bypassers", + "index": "gomez385", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "avatar_url": "https://github.e.it.census.gov/avatars/u/603?", + "bio": "", + "blog": "", + "company": "", + "created_at": "2024-06-13 14:57:04 +0000 UTC", + "email": "", + "followers": 0, + "following": 1, + "gpg_keys": [], + "gravatar_id": "", + "id": "603", + "location": "", + "login": "gomez385", + "name": "James Farr Gomez", + "node_id": "MDQ6VXNlcjYwMw==", + "public_gists": 0, + "public_repos": 0, + "site_admin": false, + "ssh_keys": [ + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDuGCb6WHZ8kex7gawtk2pmHd8t77HQ0LE+7sanVKoC5cWC/7RlefKBuH5c8F2RmmB1EaVFT2ylCsR0qnPT8xGH7gjrkRs/B8LAcwvXifev1BkPSE1gJT+lQpnwPkfqBuCbsewOR1XyPqQt5SZh4a9w7GDvBsfO2Ate9ADtX0nsI76t2DURR32ptBKnN2TtYqnD5D3VKV2lhiI2tnz8sO5FZzYycCONsv570N/itwT34gKSLVRsj+0YmPjmOU+7JWpXxdtjocw06ZEGnSyInIH4VJVROE0p3Z63xHQ9fxDtnW71zf0a9UeoY5Vb/b7PbK4NF3Dp9gG8iaL9dqeiZ1XTCcXHDyHGVFej3sl0CkB+BQ/Gz9ZCqkSBcA+n9WA5KclNuOMwe4eLXRwg/gxxmAJB707gXUk+nSPGwYTObtm0+lfspCNQxAFry8gX39mdVqnaCz1agzmwZo7rRls+BZPfDPg3YUkB3v9P8y/cbO6Bn5IRmYB2KQ73E7X8QJcW0+E=", + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQDROzDzCBisy3+PvtvvCt7XxuEpNAwBS6SoK2wKJNnGgYPs8zInboOVZWqRXujOWOySPCloBfYU5B2eg94cVoDnTnc9dArWhBOK0aY93XM7/0s3/01w3Kkyi25oJytr0NRI8liZq6DnF9hFiqxRVcJkoS4+I9t9G3MURjVbcNY10+bIs6Dp9sbnJaJEWvvsbAiz1WdZBAsF3eW20mNkzmQtYoASHWv3AD/j+xLRYvx2sVcPXIGQ4fw3FqQIUOkbVQUW2lCBp+BVZgR1U4dKh5lejddxd7bXblWxJ5qqWPXulqCnUrJBBTWxTPrUxBzcZtxLAj8C04PyZPJYWVVbhuxkMgA7VeUHeZ/iFT6LZeqVtwTDlEPCzShCdIC0JWKzxI+I663YeSf2y1Jh3qT/R+e0qcduEmL3bdE+PyyvQks8WCXVfXtJeHQfkPKcy9gARpQScY/6vSyZbJNfIW1VagCCRZp54AzOlhKTUy2r97zlrzB9gBPU2ycbmLFYOglVrw6Fo6ECV8slQIxuz0lS0RbEI/+c9jWxKqcSrb0zCEgoL+HEdGaElTRENPhApPXZO+YlFZkg9NY9t+uGWCu2xPgSiR2fn44QzfWypxCq05G0fNRQRRIuMnpjkXlv66O/hju+xMTG1fVyKSKq5CA1bDdDn9euZ7Q6OAFsQX73hdYn6Q==" + ], + "suspended_at": "0001-01-01 00:00:00 +0000 UTC", + "updated_at": "2024-09-26 18:00:48 +0000 UTC", + "username": "gomez385" + }, + "sensitive_values": { + "gpg_keys": [], + "ssh_keys": [ + false, + false + ] + } + }, + { + "address": "module.repo_list[\"service-catalog-workspace\"].github_repository.repo", + "mode": "managed", + "type": "github_repository", + "name": "repo", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 1, + "values": { + "allow_auto_merge": false, + "allow_merge_commit": false, + "allow_rebase_merge": false, + "allow_squash_merge": true, + "allow_update_branch": false, + "archive_on_destroy": true, + "archived": false, + "auto_init": true, + "default_branch": "main", + "delete_branch_on_merge": true, + "description": "service-catalog-workspace", + "etag": "W/\"ac967e013bdca10de2aff82f46b136edb734ca78aa83a4bcd823a888cff86a56\"", + "full_name": "CSVD/service-catalog-workspace", + "git_clone_url": "git://github.e.it.census.gov/CSVD/service-catalog-workspace.git", + "gitignore_template": "", + "has_discussions": false, + "has_downloads": false, + "has_issues": true, + "has_projects": true, + "has_wiki": true, + "homepage_url": "", + "html_url": "https://github.e.it.census.gov/CSVD/service-catalog-workspace", + "http_clone_url": "https://github.e.it.census.gov/CSVD/service-catalog-workspace.git", + "id": "service-catalog-workspace", + "ignore_vulnerability_alerts_during_read": null, + "is_template": true, + "license_template": null, + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "name": "service-catalog-workspace", + "node_id": "MDEwOlJlcG9zaXRvcnkxMTM1", + "pages": [], + "primary_language": "", + "private": false, + "repo_id": 1135, + "security_and_analysis": [ + { + "advanced_security": [ + { + "status": "disabled" + } + ], + "secret_scanning": [ + { + "status": "disabled" + } + ], + "secret_scanning_push_protection": [ + { + "status": "disabled" + } + ] + } + ], + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "ssh_clone_url": "git@github.e.it.census.gov:CSVD/service-catalog-workspace.git", + "svn_url": "https://github.e.it.census.gov/CSVD/service-catalog-workspace", + "template": [], + "topics": [ + "terraform-tools" + ], + "visibility": "public", + "vulnerability_alerts": false, + "web_commit_signoff_required": false + }, + "sensitive_values": { + "pages": [], + "security_and_analysis": [ + { + "advanced_security": [ + {} + ], + "secret_scanning": [ + {} + ], + "secret_scanning_push_protection": [ + {} + ] + } + ], + "template": [], + "topics": [ + false + ] + } + }, + { + "address": "module.repo_list[\"service-catalog-workspace\"].github_repository_collaborator.collaborators[\"gomez385\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "gomez385", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "service-catalog-workspace:gomez385", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "service-catalog-workspace", + "username": "gomez385" + }, + "sensitive_values": {}, + "depends_on": [ + "module.repo_list.github_repository.repo" + ] + }, + { + "address": "module.repo_list[\"service-catalog-workspace\"].github_repository_collaborator.collaborators[\"morga471\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "morga471", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "service-catalog-workspace:morga471", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "service-catalog-workspace", + "username": "morga471" + }, + "sensitive_values": {}, + "depends_on": [ + "module.repo_list.github_repository.repo" + ] + }, + { + "address": "module.repo_list[\"service-catalog-workspace\"].github_repository_collaborator.collaborators[\"naray007\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "naray007", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "service-catalog-workspace:naray007", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "service-catalog-workspace", + "username": "naray007" + }, + "sensitive_values": {}, + "depends_on": [ + "module.repo_list.github_repository.repo" + ] + } + ], + "address": "module.repo_list[\"service-catalog-workspace\"]" + }, + { + "resources": [ + { + "address": "module.repo_list[\"supervisord-conf\"].data.github_user.pull_request_bypassers[\"arnol377\"]", + "mode": "data", + "type": "github_user", + "name": "pull_request_bypassers", + "index": "arnol377", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "avatar_url": "https://github.e.it.census.gov/avatars/u/549?", + "bio": "", + "blog": "", + "company": "", + "created_at": "2023-12-26 17:20:24 +0000 UTC", + "email": "", + "followers": 0, + "following": 0, + "gpg_keys": [], + "gravatar_id": "", + "id": "549", + "location": "", + "login": "arnol377", + "name": "David John Arnold Jr", + "node_id": "MDQ6VXNlcjU0OQ==", + "public_gists": 0, + "public_repos": 4, + "site_admin": false, + "ssh_keys": [ + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDBL3xJ3zSxE6Qv8k9b06oFB4dbq2+PiOmsnIfAgL2XZpEenD03jhCF28iAZVy9oovuBCbcyAE9BjTRdWFSjd1dmHthbGe5Jv0/DweNFB/YmX6wJ6knljTA3frkY9bVS9+rqY6N4GG3oG6lyyk7cBaUEagXF4VQQJqX4l7XG1xxUfKLFFhF3Lq+CDg39FwlKk+QxIWMrbRJdpRBDZ03VZnKcgP0m/5K8PrcyGbxOK8qeVREUaqvmQN2Rs4LD1REPZyr3GQ2gtgpqrJ3hym7TwJw3Xl5NW8Y7RAeENem2K3EKoq6qq/wB/YUqMhKD228w5J6B+CoI8nvDqAWZkNAz/uY/GJe4elRJCmFH2F+r3263R5oDnXWSluB7XIm3b+Xt24F8MwoltejSEma41c8FM/xbF3Kle8ofBGFPEXpNDAxICVbyZ6OE4TyqTGKA8xgg9vnR3hCGGERtLYHhPw0aVHY7Zew/6/QV9o6/reO96V92zpXVEpvO09Z40fvTd5cN68=", + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDXRnBg+dayTonnZY3i0dDEHXUFMhcJKtqiFO7Oe/ejasDeW2I+L0f1gg+7u1ms/g8E28/RARN3R1aMnbGvXWdP/yBrhtpWJc5TXK+f33S5lYYjptJ2F6vj7jiRU7pP4uL9wqknj0DoSD0krAEbA85mBJgIV1viL8ZBtT/8iBoD6kHGRXaHpRH5sIFaURRJCcUTJhdqMUPd6bYKE/Bc6ioQLAEow0JB4ju1jPa7fOxhgVrIYxRiMkismhR0WLopB5JxyYDNmIyjUL2vGt9Kpd41DELv+Pn7EaP2HLjubVruWFnxnhZ7nvQwMonnZvjD3f5yPkDUkWnwaVGqw8cm9PFM4buFRmGpsl8YqTFakYgqc+JVDQB8bb9a9sr5/6Hbn41VcXd+KV6dTMK4PKSQFKLaq54ExzlwnE/EHnduE8JgvsfAa316/etFlzTQOBv1KbL8RKK0/vy6wJpiK9laDbymsOJPjZekoc/TD1AIvfWF9oae6wAU86tBVGdEO/JMOMc=", + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCvlUlp/OjFsa4fINqqMXukveo+mCu0Ywp0wwVCURkfJpPFPMdmbp07WlULCX6VgmqH4joCA+LUyY+q6iBZw80lS66lpDcRHMTG4PV7IsPpoYN20bUnm30vdqug/P1wVDuOO9B83+s3QFeBl9WbHQB3YY5pBulZGLIGw26qrLwfM5UJ4P/Ffca7ca9PM7KEkwqOC9xMfJy3tFkzD2Rjo2AHN9s7xHtpf95m8MzToy1Q7ykU/8bhImOrkZKaJJtIfmykYhebKDpeETEWJiyyaubIl71KAsWacrvQnEfo2fe62kR3SGv2auPDxMaGKPqtDpe2e/Y9I85Fv3tfWk53DDFoZNzExT4jc825bCqqz2DBbz4Q/Miw3rcdHx7uaRHinEJsBveNhZSH31GMLtU/dVNF3TNhlEH62Zmjgu7IpWb6Tr/4KnLjf/0p7ye34jP49nv1iBj99j3p1hwgAGU56ag4j7TW/iMh+uH+pg1hm6xZjhFInZGzQqtMl/qjBlr1oJ8=", + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCNVaIVHzjCkmCyQnpHfgLLvPtc96PVg/+8/cT2ty6TFe3ALaZJSHTWXjOPJaSkhBef2PCmbcsd3+p+QDl87nRl9O5fV376mrGwsxlpI2a1FnzpBkAEpZ2KyE4B593xGlpmvrMOF9gY4qGdNHCXw2puZ/IkmYaiROYpL2ptiSfTGc1R/ZrEvs0fhYwyi4xYfb+iGVSvjhhTqzJYNW6IBmMZVbDCdYX+JvSKsZYydnkHg7d9QJORZ3TnPe3Tmnn+PAse9V0z9VKOScfoRNT+Co9ezLGWNY+Dnnwg0jouA76/CiIIjWunJzLsIeu7cqNwubKO8lsLX9O+6zKR46EEaVr1VoC395IPvBy8x+VWUSpI+M7GLh0iPE56EvwiVm8irTkmY6WPsQ8PMJ5IWZE/OA6w6fupiSgBd5myFpB/wa8yVdY+UPfh40HpEXt0+iPeWK9kz/fJQAgow/FJAAsnI65JdVP4woAUYnmoJ0l6qgDyFQbOxcq7NZdmedHtRz049hM=" + ], + "suspended_at": "0001-01-01 00:00:00 +0000 UTC", + "updated_at": "2024-09-19 17:49:11 +0000 UTC", + "username": "arnol377" + }, + "sensitive_values": { + "gpg_keys": [], + "ssh_keys": [ + false, + false, + false, + false + ] + } + }, + { + "address": "module.repo_list[\"supervisord-conf\"].data.github_user.pull_request_bypassers[\"gomez385\"]", + "mode": "data", + "type": "github_user", + "name": "pull_request_bypassers", + "index": "gomez385", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "avatar_url": "https://github.e.it.census.gov/avatars/u/603?", + "bio": "", + "blog": "", + "company": "", + "created_at": "2024-06-13 14:57:04 +0000 UTC", + "email": "", + "followers": 0, + "following": 1, + "gpg_keys": [], + "gravatar_id": "", + "id": "603", + "location": "", + "login": "gomez385", + "name": "James Farr Gomez", + "node_id": "MDQ6VXNlcjYwMw==", + "public_gists": 0, + "public_repos": 0, + "site_admin": false, + "ssh_keys": [ + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDuGCb6WHZ8kex7gawtk2pmHd8t77HQ0LE+7sanVKoC5cWC/7RlefKBuH5c8F2RmmB1EaVFT2ylCsR0qnPT8xGH7gjrkRs/B8LAcwvXifev1BkPSE1gJT+lQpnwPkfqBuCbsewOR1XyPqQt5SZh4a9w7GDvBsfO2Ate9ADtX0nsI76t2DURR32ptBKnN2TtYqnD5D3VKV2lhiI2tnz8sO5FZzYycCONsv570N/itwT34gKSLVRsj+0YmPjmOU+7JWpXxdtjocw06ZEGnSyInIH4VJVROE0p3Z63xHQ9fxDtnW71zf0a9UeoY5Vb/b7PbK4NF3Dp9gG8iaL9dqeiZ1XTCcXHDyHGVFej3sl0CkB+BQ/Gz9ZCqkSBcA+n9WA5KclNuOMwe4eLXRwg/gxxmAJB707gXUk+nSPGwYTObtm0+lfspCNQxAFry8gX39mdVqnaCz1agzmwZo7rRls+BZPfDPg3YUkB3v9P8y/cbO6Bn5IRmYB2KQ73E7X8QJcW0+E=", + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQDROzDzCBisy3+PvtvvCt7XxuEpNAwBS6SoK2wKJNnGgYPs8zInboOVZWqRXujOWOySPCloBfYU5B2eg94cVoDnTnc9dArWhBOK0aY93XM7/0s3/01w3Kkyi25oJytr0NRI8liZq6DnF9hFiqxRVcJkoS4+I9t9G3MURjVbcNY10+bIs6Dp9sbnJaJEWvvsbAiz1WdZBAsF3eW20mNkzmQtYoASHWv3AD/j+xLRYvx2sVcPXIGQ4fw3FqQIUOkbVQUW2lCBp+BVZgR1U4dKh5lejddxd7bXblWxJ5qqWPXulqCnUrJBBTWxTPrUxBzcZtxLAj8C04PyZPJYWVVbhuxkMgA7VeUHeZ/iFT6LZeqVtwTDlEPCzShCdIC0JWKzxI+I663YeSf2y1Jh3qT/R+e0qcduEmL3bdE+PyyvQks8WCXVfXtJeHQfkPKcy9gARpQScY/6vSyZbJNfIW1VagCCRZp54AzOlhKTUy2r97zlrzB9gBPU2ycbmLFYOglVrw6Fo6ECV8slQIxuz0lS0RbEI/+c9jWxKqcSrb0zCEgoL+HEdGaElTRENPhApPXZO+YlFZkg9NY9t+uGWCu2xPgSiR2fn44QzfWypxCq05G0fNRQRRIuMnpjkXlv66O/hju+xMTG1fVyKSKq5CA1bDdDn9euZ7Q6OAFsQX73hdYn6Q==" + ], + "suspended_at": "0001-01-01 00:00:00 +0000 UTC", + "updated_at": "2024-09-26 18:00:48 +0000 UTC", + "username": "gomez385" + }, + "sensitive_values": { + "gpg_keys": [], + "ssh_keys": [ + false, + false + ] + } + }, + { + "address": "module.repo_list[\"supervisord-conf\"].github_repository.repo", + "mode": "managed", + "type": "github_repository", + "name": "repo", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 1, + "values": { + "allow_auto_merge": false, + "allow_merge_commit": false, + "allow_rebase_merge": false, + "allow_squash_merge": true, + "allow_update_branch": false, + "archive_on_destroy": true, + "archived": false, + "auto_init": true, + "default_branch": "main", + "delete_branch_on_merge": true, + "description": "supervisord-conf", + "etag": "W/\"cb957dacdfa80473c969e7403c6edefe52de0ef0f01001a90bfc076dd61d3fc3\"", + "full_name": "CSVD/supervisord-conf", + "git_clone_url": "git://github.e.it.census.gov/CSVD/supervisord-conf.git", + "gitignore_template": "", + "has_discussions": false, + "has_downloads": false, + "has_issues": true, + "has_projects": true, + "has_wiki": true, + "homepage_url": "", + "html_url": "https://github.e.it.census.gov/CSVD/supervisord-conf", + "http_clone_url": "https://github.e.it.census.gov/CSVD/supervisord-conf.git", + "id": "supervisord-conf", + "ignore_vulnerability_alerts_during_read": null, + "is_template": false, + "license_template": null, + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "name": "supervisord-conf", + "node_id": "MDEwOlJlcG9zaXRvcnkxMDc0", + "pages": [], + "primary_language": "Python", + "private": false, + "repo_id": 1074, + "security_and_analysis": [ + { + "advanced_security": [ + { + "status": "disabled" + } + ], + "secret_scanning": [ + { + "status": "disabled" + } + ], + "secret_scanning_push_protection": [ + { + "status": "disabled" + } + ] + } + ], + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "ssh_clone_url": "git@github.e.it.census.gov:CSVD/supervisord-conf.git", + "svn_url": "https://github.e.it.census.gov/CSVD/supervisord-conf", + "template": [], + "topics": [ + "automation", + "supervisord" + ], + "visibility": "public", + "vulnerability_alerts": false, + "web_commit_signoff_required": false + }, + "sensitive_values": { + "pages": [], + "security_and_analysis": [ + { + "advanced_security": [ + {} + ], + "secret_scanning": [ + {} + ], + "secret_scanning_push_protection": [ + {} + ] + } + ], + "template": [], + "topics": [ + false, + false + ] + } + }, + { + "address": "module.repo_list[\"supervisord-conf\"].github_repository_collaborator.collaborators[\"gomez385\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "gomez385", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "supervisord-conf:gomez385", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "supervisord-conf", + "username": "gomez385" + }, + "sensitive_values": {}, + "depends_on": [ + "module.repo_list.github_repository.repo" + ] + }, + { + "address": "module.repo_list[\"supervisord-conf\"].github_repository_collaborator.collaborators[\"morga471\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "morga471", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "supervisord-conf:morga471", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "supervisord-conf", + "username": "morga471" + }, + "sensitive_values": {}, + "depends_on": [ + "module.repo_list.github_repository.repo" + ] + }, + { + "address": "module.repo_list[\"supervisord-conf\"].github_repository_collaborator.collaborators[\"naray007\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "naray007", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "supervisord-conf:naray007", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "supervisord-conf", + "username": "naray007" + }, + "sensitive_values": {}, + "depends_on": [ + "module.repo_list.github_repository.repo" + ] + } + ], + "address": "module.repo_list[\"supervisord-conf\"]" + }, + { + "resources": [ + { + "address": "module.repo_list[\"supervisord-managed-runners\"].data.github_user.pull_request_bypassers[\"arnol377\"]", + "mode": "data", + "type": "github_user", + "name": "pull_request_bypassers", + "index": "arnol377", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "avatar_url": "https://github.e.it.census.gov/avatars/u/549?", + "bio": "", + "blog": "", + "company": "", + "created_at": "2023-12-26 17:20:24 +0000 UTC", + "email": "", + "followers": 0, + "following": 0, + "gpg_keys": [], + "gravatar_id": "", + "id": "549", + "location": "", + "login": "arnol377", + "name": "David John Arnold Jr", + "node_id": "MDQ6VXNlcjU0OQ==", + "public_gists": 0, + "public_repos": 4, + "site_admin": false, + "ssh_keys": [ + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDBL3xJ3zSxE6Qv8k9b06oFB4dbq2+PiOmsnIfAgL2XZpEenD03jhCF28iAZVy9oovuBCbcyAE9BjTRdWFSjd1dmHthbGe5Jv0/DweNFB/YmX6wJ6knljTA3frkY9bVS9+rqY6N4GG3oG6lyyk7cBaUEagXF4VQQJqX4l7XG1xxUfKLFFhF3Lq+CDg39FwlKk+QxIWMrbRJdpRBDZ03VZnKcgP0m/5K8PrcyGbxOK8qeVREUaqvmQN2Rs4LD1REPZyr3GQ2gtgpqrJ3hym7TwJw3Xl5NW8Y7RAeENem2K3EKoq6qq/wB/YUqMhKD228w5J6B+CoI8nvDqAWZkNAz/uY/GJe4elRJCmFH2F+r3263R5oDnXWSluB7XIm3b+Xt24F8MwoltejSEma41c8FM/xbF3Kle8ofBGFPEXpNDAxICVbyZ6OE4TyqTGKA8xgg9vnR3hCGGERtLYHhPw0aVHY7Zew/6/QV9o6/reO96V92zpXVEpvO09Z40fvTd5cN68=", + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDXRnBg+dayTonnZY3i0dDEHXUFMhcJKtqiFO7Oe/ejasDeW2I+L0f1gg+7u1ms/g8E28/RARN3R1aMnbGvXWdP/yBrhtpWJc5TXK+f33S5lYYjptJ2F6vj7jiRU7pP4uL9wqknj0DoSD0krAEbA85mBJgIV1viL8ZBtT/8iBoD6kHGRXaHpRH5sIFaURRJCcUTJhdqMUPd6bYKE/Bc6ioQLAEow0JB4ju1jPa7fOxhgVrIYxRiMkismhR0WLopB5JxyYDNmIyjUL2vGt9Kpd41DELv+Pn7EaP2HLjubVruWFnxnhZ7nvQwMonnZvjD3f5yPkDUkWnwaVGqw8cm9PFM4buFRmGpsl8YqTFakYgqc+JVDQB8bb9a9sr5/6Hbn41VcXd+KV6dTMK4PKSQFKLaq54ExzlwnE/EHnduE8JgvsfAa316/etFlzTQOBv1KbL8RKK0/vy6wJpiK9laDbymsOJPjZekoc/TD1AIvfWF9oae6wAU86tBVGdEO/JMOMc=", + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCvlUlp/OjFsa4fINqqMXukveo+mCu0Ywp0wwVCURkfJpPFPMdmbp07WlULCX6VgmqH4joCA+LUyY+q6iBZw80lS66lpDcRHMTG4PV7IsPpoYN20bUnm30vdqug/P1wVDuOO9B83+s3QFeBl9WbHQB3YY5pBulZGLIGw26qrLwfM5UJ4P/Ffca7ca9PM7KEkwqOC9xMfJy3tFkzD2Rjo2AHN9s7xHtpf95m8MzToy1Q7ykU/8bhImOrkZKaJJtIfmykYhebKDpeETEWJiyyaubIl71KAsWacrvQnEfo2fe62kR3SGv2auPDxMaGKPqtDpe2e/Y9I85Fv3tfWk53DDFoZNzExT4jc825bCqqz2DBbz4Q/Miw3rcdHx7uaRHinEJsBveNhZSH31GMLtU/dVNF3TNhlEH62Zmjgu7IpWb6Tr/4KnLjf/0p7ye34jP49nv1iBj99j3p1hwgAGU56ag4j7TW/iMh+uH+pg1hm6xZjhFInZGzQqtMl/qjBlr1oJ8=", + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCNVaIVHzjCkmCyQnpHfgLLvPtc96PVg/+8/cT2ty6TFe3ALaZJSHTWXjOPJaSkhBef2PCmbcsd3+p+QDl87nRl9O5fV376mrGwsxlpI2a1FnzpBkAEpZ2KyE4B593xGlpmvrMOF9gY4qGdNHCXw2puZ/IkmYaiROYpL2ptiSfTGc1R/ZrEvs0fhYwyi4xYfb+iGVSvjhhTqzJYNW6IBmMZVbDCdYX+JvSKsZYydnkHg7d9QJORZ3TnPe3Tmnn+PAse9V0z9VKOScfoRNT+Co9ezLGWNY+Dnnwg0jouA76/CiIIjWunJzLsIeu7cqNwubKO8lsLX9O+6zKR46EEaVr1VoC395IPvBy8x+VWUSpI+M7GLh0iPE56EvwiVm8irTkmY6WPsQ8PMJ5IWZE/OA6w6fupiSgBd5myFpB/wa8yVdY+UPfh40HpEXt0+iPeWK9kz/fJQAgow/FJAAsnI65JdVP4woAUYnmoJ0l6qgDyFQbOxcq7NZdmedHtRz049hM=" + ], + "suspended_at": "0001-01-01 00:00:00 +0000 UTC", + "updated_at": "2024-09-19 17:49:11 +0000 UTC", + "username": "arnol377" + }, + "sensitive_values": { + "gpg_keys": [], + "ssh_keys": [ + false, + false, + false, + false + ] + } + }, + { + "address": "module.repo_list[\"supervisord-managed-runners\"].data.github_user.pull_request_bypassers[\"gomez385\"]", + "mode": "data", + "type": "github_user", + "name": "pull_request_bypassers", + "index": "gomez385", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "avatar_url": "https://github.e.it.census.gov/avatars/u/603?", + "bio": "", + "blog": "", + "company": "", + "created_at": "2024-06-13 14:57:04 +0000 UTC", + "email": "", + "followers": 0, + "following": 1, + "gpg_keys": [], + "gravatar_id": "", + "id": "603", + "location": "", + "login": "gomez385", + "name": "James Farr Gomez", + "node_id": "MDQ6VXNlcjYwMw==", + "public_gists": 0, + "public_repos": 0, + "site_admin": false, + "ssh_keys": [ + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDuGCb6WHZ8kex7gawtk2pmHd8t77HQ0LE+7sanVKoC5cWC/7RlefKBuH5c8F2RmmB1EaVFT2ylCsR0qnPT8xGH7gjrkRs/B8LAcwvXifev1BkPSE1gJT+lQpnwPkfqBuCbsewOR1XyPqQt5SZh4a9w7GDvBsfO2Ate9ADtX0nsI76t2DURR32ptBKnN2TtYqnD5D3VKV2lhiI2tnz8sO5FZzYycCONsv570N/itwT34gKSLVRsj+0YmPjmOU+7JWpXxdtjocw06ZEGnSyInIH4VJVROE0p3Z63xHQ9fxDtnW71zf0a9UeoY5Vb/b7PbK4NF3Dp9gG8iaL9dqeiZ1XTCcXHDyHGVFej3sl0CkB+BQ/Gz9ZCqkSBcA+n9WA5KclNuOMwe4eLXRwg/gxxmAJB707gXUk+nSPGwYTObtm0+lfspCNQxAFry8gX39mdVqnaCz1agzmwZo7rRls+BZPfDPg3YUkB3v9P8y/cbO6Bn5IRmYB2KQ73E7X8QJcW0+E=", + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQDROzDzCBisy3+PvtvvCt7XxuEpNAwBS6SoK2wKJNnGgYPs8zInboOVZWqRXujOWOySPCloBfYU5B2eg94cVoDnTnc9dArWhBOK0aY93XM7/0s3/01w3Kkyi25oJytr0NRI8liZq6DnF9hFiqxRVcJkoS4+I9t9G3MURjVbcNY10+bIs6Dp9sbnJaJEWvvsbAiz1WdZBAsF3eW20mNkzmQtYoASHWv3AD/j+xLRYvx2sVcPXIGQ4fw3FqQIUOkbVQUW2lCBp+BVZgR1U4dKh5lejddxd7bXblWxJ5qqWPXulqCnUrJBBTWxTPrUxBzcZtxLAj8C04PyZPJYWVVbhuxkMgA7VeUHeZ/iFT6LZeqVtwTDlEPCzShCdIC0JWKzxI+I663YeSf2y1Jh3qT/R+e0qcduEmL3bdE+PyyvQks8WCXVfXtJeHQfkPKcy9gARpQScY/6vSyZbJNfIW1VagCCRZp54AzOlhKTUy2r97zlrzB9gBPU2ycbmLFYOglVrw6Fo6ECV8slQIxuz0lS0RbEI/+c9jWxKqcSrb0zCEgoL+HEdGaElTRENPhApPXZO+YlFZkg9NY9t+uGWCu2xPgSiR2fn44QzfWypxCq05G0fNRQRRIuMnpjkXlv66O/hju+xMTG1fVyKSKq5CA1bDdDn9euZ7Q6OAFsQX73hdYn6Q==" + ], + "suspended_at": "0001-01-01 00:00:00 +0000 UTC", + "updated_at": "2024-09-26 18:00:48 +0000 UTC", + "username": "gomez385" + }, + "sensitive_values": { + "gpg_keys": [], + "ssh_keys": [ + false, + false + ] + } + }, + { + "address": "module.repo_list[\"supervisord-managed-runners\"].github_repository.repo", + "mode": "managed", + "type": "github_repository", + "name": "repo", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 1, + "values": { + "allow_auto_merge": false, + "allow_merge_commit": false, + "allow_rebase_merge": false, + "allow_squash_merge": true, + "allow_update_branch": false, + "archive_on_destroy": true, + "archived": false, + "auto_init": true, + "default_branch": "main", + "delete_branch_on_merge": true, + "description": "supervisord-managed-runners", + "etag": "W/\"8690be2c2933bb5fd612370514c036a5cf540b77f3fa71aebed8a5d0cb3a9e70\"", + "full_name": "CSVD/supervisord-managed-runners", + "git_clone_url": "git://github.e.it.census.gov/CSVD/supervisord-managed-runners.git", + "gitignore_template": "", + "has_discussions": false, + "has_downloads": false, + "has_issues": true, + "has_projects": true, + "has_wiki": true, + "homepage_url": "", + "html_url": "https://github.e.it.census.gov/CSVD/supervisord-managed-runners", + "http_clone_url": "https://github.e.it.census.gov/CSVD/supervisord-managed-runners.git", + "id": "supervisord-managed-runners", + "ignore_vulnerability_alerts_during_read": null, + "is_template": true, + "license_template": null, + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "name": "supervisord-managed-runners", + "node_id": "MDEwOlJlcG9zaXRvcnkxMTQy", + "pages": [], + "primary_language": "HCL", + "private": false, + "repo_id": 1142, + "security_and_analysis": [ + { + "advanced_security": [ + { + "status": "disabled" + } + ], + "secret_scanning": [ + { + "status": "disabled" + } + ], + "secret_scanning_push_protection": [ + { + "status": "disabled" + } + ] + } + ], + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "ssh_clone_url": "git@github.e.it.census.gov:CSVD/supervisord-managed-runners.git", + "svn_url": "https://github.e.it.census.gov/CSVD/supervisord-managed-runners", + "template": [], + "topics": [ + "github-actions", + "terraform-tools" + ], + "visibility": "public", + "vulnerability_alerts": false, + "web_commit_signoff_required": false + }, + "sensitive_values": { + "pages": [], + "security_and_analysis": [ + { + "advanced_security": [ + {} + ], + "secret_scanning": [ + {} + ], + "secret_scanning_push_protection": [ + {} + ] + } + ], + "template": [], + "topics": [ + false, + false + ] + } + }, + { + "address": "module.repo_list[\"supervisord-managed-runners\"].github_repository_collaborator.collaborators[\"gomez385\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "gomez385", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "supervisord-managed-runners:gomez385", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "supervisord-managed-runners", + "username": "gomez385" + }, + "sensitive_values": {}, + "depends_on": [ + "module.repo_list.github_repository.repo" + ] + }, + { + "address": "module.repo_list[\"supervisord-managed-runners\"].github_repository_collaborator.collaborators[\"morga471\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "morga471", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "supervisord-managed-runners:morga471", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "supervisord-managed-runners", + "username": "morga471" + }, + "sensitive_values": {}, + "depends_on": [ + "module.repo_list.github_repository.repo" + ] + }, + { + "address": "module.repo_list[\"supervisord-managed-runners\"].github_repository_collaborator.collaborators[\"naray007\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "naray007", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "supervisord-managed-runners:naray007", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "supervisord-managed-runners", + "username": "naray007" + }, + "sensitive_values": {}, + "depends_on": [ + "module.repo_list.github_repository.repo" + ] + } + ], + "address": "module.repo_list[\"supervisord-managed-runners\"]" + }, + { + "resources": [ + { + "address": "module.repo_list[\"template-aws-image-pipeline\"].data.github_user.pull_request_bypassers[\"arnol377\"]", + "mode": "data", + "type": "github_user", + "name": "pull_request_bypassers", + "index": "arnol377", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "avatar_url": "https://github.e.it.census.gov/avatars/u/549?", + "bio": "", + "blog": "", + "company": "", + "created_at": "2023-12-26 17:20:24 +0000 UTC", + "email": "", + "followers": 0, + "following": 0, + "gpg_keys": [], + "gravatar_id": "", + "id": "549", + "location": "", + "login": "arnol377", + "name": "David John Arnold Jr", + "node_id": "MDQ6VXNlcjU0OQ==", + "public_gists": 0, + "public_repos": 4, + "site_admin": false, + "ssh_keys": [ + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDBL3xJ3zSxE6Qv8k9b06oFB4dbq2+PiOmsnIfAgL2XZpEenD03jhCF28iAZVy9oovuBCbcyAE9BjTRdWFSjd1dmHthbGe5Jv0/DweNFB/YmX6wJ6knljTA3frkY9bVS9+rqY6N4GG3oG6lyyk7cBaUEagXF4VQQJqX4l7XG1xxUfKLFFhF3Lq+CDg39FwlKk+QxIWMrbRJdpRBDZ03VZnKcgP0m/5K8PrcyGbxOK8qeVREUaqvmQN2Rs4LD1REPZyr3GQ2gtgpqrJ3hym7TwJw3Xl5NW8Y7RAeENem2K3EKoq6qq/wB/YUqMhKD228w5J6B+CoI8nvDqAWZkNAz/uY/GJe4elRJCmFH2F+r3263R5oDnXWSluB7XIm3b+Xt24F8MwoltejSEma41c8FM/xbF3Kle8ofBGFPEXpNDAxICVbyZ6OE4TyqTGKA8xgg9vnR3hCGGERtLYHhPw0aVHY7Zew/6/QV9o6/reO96V92zpXVEpvO09Z40fvTd5cN68=", + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDXRnBg+dayTonnZY3i0dDEHXUFMhcJKtqiFO7Oe/ejasDeW2I+L0f1gg+7u1ms/g8E28/RARN3R1aMnbGvXWdP/yBrhtpWJc5TXK+f33S5lYYjptJ2F6vj7jiRU7pP4uL9wqknj0DoSD0krAEbA85mBJgIV1viL8ZBtT/8iBoD6kHGRXaHpRH5sIFaURRJCcUTJhdqMUPd6bYKE/Bc6ioQLAEow0JB4ju1jPa7fOxhgVrIYxRiMkismhR0WLopB5JxyYDNmIyjUL2vGt9Kpd41DELv+Pn7EaP2HLjubVruWFnxnhZ7nvQwMonnZvjD3f5yPkDUkWnwaVGqw8cm9PFM4buFRmGpsl8YqTFakYgqc+JVDQB8bb9a9sr5/6Hbn41VcXd+KV6dTMK4PKSQFKLaq54ExzlwnE/EHnduE8JgvsfAa316/etFlzTQOBv1KbL8RKK0/vy6wJpiK9laDbymsOJPjZekoc/TD1AIvfWF9oae6wAU86tBVGdEO/JMOMc=", + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCvlUlp/OjFsa4fINqqMXukveo+mCu0Ywp0wwVCURkfJpPFPMdmbp07WlULCX6VgmqH4joCA+LUyY+q6iBZw80lS66lpDcRHMTG4PV7IsPpoYN20bUnm30vdqug/P1wVDuOO9B83+s3QFeBl9WbHQB3YY5pBulZGLIGw26qrLwfM5UJ4P/Ffca7ca9PM7KEkwqOC9xMfJy3tFkzD2Rjo2AHN9s7xHtpf95m8MzToy1Q7ykU/8bhImOrkZKaJJtIfmykYhebKDpeETEWJiyyaubIl71KAsWacrvQnEfo2fe62kR3SGv2auPDxMaGKPqtDpe2e/Y9I85Fv3tfWk53DDFoZNzExT4jc825bCqqz2DBbz4Q/Miw3rcdHx7uaRHinEJsBveNhZSH31GMLtU/dVNF3TNhlEH62Zmjgu7IpWb6Tr/4KnLjf/0p7ye34jP49nv1iBj99j3p1hwgAGU56ag4j7TW/iMh+uH+pg1hm6xZjhFInZGzQqtMl/qjBlr1oJ8=", + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCNVaIVHzjCkmCyQnpHfgLLvPtc96PVg/+8/cT2ty6TFe3ALaZJSHTWXjOPJaSkhBef2PCmbcsd3+p+QDl87nRl9O5fV376mrGwsxlpI2a1FnzpBkAEpZ2KyE4B593xGlpmvrMOF9gY4qGdNHCXw2puZ/IkmYaiROYpL2ptiSfTGc1R/ZrEvs0fhYwyi4xYfb+iGVSvjhhTqzJYNW6IBmMZVbDCdYX+JvSKsZYydnkHg7d9QJORZ3TnPe3Tmnn+PAse9V0z9VKOScfoRNT+Co9ezLGWNY+Dnnwg0jouA76/CiIIjWunJzLsIeu7cqNwubKO8lsLX9O+6zKR46EEaVr1VoC395IPvBy8x+VWUSpI+M7GLh0iPE56EvwiVm8irTkmY6WPsQ8PMJ5IWZE/OA6w6fupiSgBd5myFpB/wa8yVdY+UPfh40HpEXt0+iPeWK9kz/fJQAgow/FJAAsnI65JdVP4woAUYnmoJ0l6qgDyFQbOxcq7NZdmedHtRz049hM=" + ], + "suspended_at": "0001-01-01 00:00:00 +0000 UTC", + "updated_at": "2024-09-19 17:49:11 +0000 UTC", + "username": "arnol377" + }, + "sensitive_values": { + "gpg_keys": [], + "ssh_keys": [ + false, + false, + false, + false + ] + } + }, + { + "address": "module.repo_list[\"template-aws-image-pipeline\"].data.github_user.pull_request_bypassers[\"gomez385\"]", + "mode": "data", + "type": "github_user", + "name": "pull_request_bypassers", + "index": "gomez385", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "avatar_url": "https://github.e.it.census.gov/avatars/u/603?", + "bio": "", + "blog": "", + "company": "", + "created_at": "2024-06-13 14:57:04 +0000 UTC", + "email": "", + "followers": 0, + "following": 1, + "gpg_keys": [], + "gravatar_id": "", + "id": "603", + "location": "", + "login": "gomez385", + "name": "James Farr Gomez", + "node_id": "MDQ6VXNlcjYwMw==", + "public_gists": 0, + "public_repos": 0, + "site_admin": false, + "ssh_keys": [ + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDuGCb6WHZ8kex7gawtk2pmHd8t77HQ0LE+7sanVKoC5cWC/7RlefKBuH5c8F2RmmB1EaVFT2ylCsR0qnPT8xGH7gjrkRs/B8LAcwvXifev1BkPSE1gJT+lQpnwPkfqBuCbsewOR1XyPqQt5SZh4a9w7GDvBsfO2Ate9ADtX0nsI76t2DURR32ptBKnN2TtYqnD5D3VKV2lhiI2tnz8sO5FZzYycCONsv570N/itwT34gKSLVRsj+0YmPjmOU+7JWpXxdtjocw06ZEGnSyInIH4VJVROE0p3Z63xHQ9fxDtnW71zf0a9UeoY5Vb/b7PbK4NF3Dp9gG8iaL9dqeiZ1XTCcXHDyHGVFej3sl0CkB+BQ/Gz9ZCqkSBcA+n9WA5KclNuOMwe4eLXRwg/gxxmAJB707gXUk+nSPGwYTObtm0+lfspCNQxAFry8gX39mdVqnaCz1agzmwZo7rRls+BZPfDPg3YUkB3v9P8y/cbO6Bn5IRmYB2KQ73E7X8QJcW0+E=", + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQDROzDzCBisy3+PvtvvCt7XxuEpNAwBS6SoK2wKJNnGgYPs8zInboOVZWqRXujOWOySPCloBfYU5B2eg94cVoDnTnc9dArWhBOK0aY93XM7/0s3/01w3Kkyi25oJytr0NRI8liZq6DnF9hFiqxRVcJkoS4+I9t9G3MURjVbcNY10+bIs6Dp9sbnJaJEWvvsbAiz1WdZBAsF3eW20mNkzmQtYoASHWv3AD/j+xLRYvx2sVcPXIGQ4fw3FqQIUOkbVQUW2lCBp+BVZgR1U4dKh5lejddxd7bXblWxJ5qqWPXulqCnUrJBBTWxTPrUxBzcZtxLAj8C04PyZPJYWVVbhuxkMgA7VeUHeZ/iFT6LZeqVtwTDlEPCzShCdIC0JWKzxI+I663YeSf2y1Jh3qT/R+e0qcduEmL3bdE+PyyvQks8WCXVfXtJeHQfkPKcy9gARpQScY/6vSyZbJNfIW1VagCCRZp54AzOlhKTUy2r97zlrzB9gBPU2ycbmLFYOglVrw6Fo6ECV8slQIxuz0lS0RbEI/+c9jWxKqcSrb0zCEgoL+HEdGaElTRENPhApPXZO+YlFZkg9NY9t+uGWCu2xPgSiR2fn44QzfWypxCq05G0fNRQRRIuMnpjkXlv66O/hju+xMTG1fVyKSKq5CA1bDdDn9euZ7Q6OAFsQX73hdYn6Q==" + ], + "suspended_at": "0001-01-01 00:00:00 +0000 UTC", + "updated_at": "2024-09-26 18:00:48 +0000 UTC", + "username": "gomez385" + }, + "sensitive_values": { + "gpg_keys": [], + "ssh_keys": [ + false, + false + ] + } + }, + { + "address": "module.repo_list[\"template-aws-image-pipeline\"].github_repository.repo", + "mode": "managed", + "type": "github_repository", + "name": "repo", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 1, + "values": { + "allow_auto_merge": false, + "allow_merge_commit": false, + "allow_rebase_merge": false, + "allow_squash_merge": true, + "allow_update_branch": false, + "archive_on_destroy": true, + "archived": false, + "auto_init": true, + "default_branch": "main", + "delete_branch_on_merge": true, + "description": "Template Repo for Image Pipeline", + "etag": "W/\"04e8a1c93b8ac53deb063a453c7983367a68c80e2a037b09589dc6e4d44ccd95\"", + "full_name": "CSVD/template-aws-image-pipeline", + "git_clone_url": "git://github.e.it.census.gov/CSVD/template-aws-image-pipeline.git", + "gitignore_template": null, + "has_discussions": false, + "has_downloads": false, + "has_issues": true, + "has_projects": true, + "has_wiki": true, + "homepage_url": "", + "html_url": "https://github.e.it.census.gov/CSVD/template-aws-image-pipeline", + "http_clone_url": "https://github.e.it.census.gov/CSVD/template-aws-image-pipeline.git", + "id": "template-aws-image-pipeline", + "ignore_vulnerability_alerts_during_read": null, + "is_template": true, + "license_template": null, + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "name": "template-aws-image-pipeline", + "node_id": "MDEwOlJlcG9zaXRvcnkxMjU1", + "pages": [], + "primary_language": "Python", + "private": false, + "repo_id": 1255, + "security_and_analysis": [ + { + "advanced_security": [ + { + "status": "disabled" + } + ], + "secret_scanning": [ + { + "status": "disabled" + } + ], + "secret_scanning_push_protection": [ + { + "status": "disabled" + } + ] + } + ], + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "ssh_clone_url": "git@github.e.it.census.gov:CSVD/template-aws-image-pipeline.git", + "svn_url": "https://github.e.it.census.gov/CSVD/template-aws-image-pipeline", + "template": [], + "topics": [ + "aws-image-pipeline", + "terraform" + ], + "visibility": "public", + "vulnerability_alerts": false, + "web_commit_signoff_required": false + }, + "sensitive_values": { + "pages": [], + "security_and_analysis": [ + { + "advanced_security": [ + {} + ], + "secret_scanning": [ + {} + ], + "secret_scanning_push_protection": [ + {} + ] + } + ], + "template": [], + "topics": [ + false, + false + ] + } + }, + { + "address": "module.repo_list[\"template-aws-image-pipeline\"].github_repository_collaborator.collaborators[\"gomez385\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "gomez385", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "template-aws-image-pipeline:gomez385", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "template-aws-image-pipeline", + "username": "gomez385" + }, + "sensitive_values": {}, + "depends_on": [ + "module.repo_list.github_repository.repo" + ] + }, + { + "address": "module.repo_list[\"template-aws-image-pipeline\"].github_repository_collaborator.collaborators[\"morga471\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "morga471", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "template-aws-image-pipeline:morga471", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "template-aws-image-pipeline", + "username": "morga471" + }, + "sensitive_values": {}, + "depends_on": [ + "module.repo_list.github_repository.repo" + ] + }, + { + "address": "module.repo_list[\"template-aws-image-pipeline\"].github_repository_collaborator.collaborators[\"naray007\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "naray007", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "template-aws-image-pipeline:naray007", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "template-aws-image-pipeline", + "username": "naray007" + }, + "sensitive_values": {}, + "depends_on": [ + "module.repo_list.github_repository.repo" + ] + } + ], + "address": "module.repo_list[\"template-aws-image-pipeline\"]" + }, + { + "resources": [ + { + "address": "module.repo_list[\"terraform-ai-ingestion\"].data.github_user.pull_request_bypassers[\"arnol377\"]", + "mode": "data", + "type": "github_user", + "name": "pull_request_bypassers", + "index": "arnol377", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "avatar_url": "https://github.e.it.census.gov/avatars/u/549?", + "bio": "", + "blog": "", + "company": "", + "created_at": "2023-12-26 17:20:24 +0000 UTC", + "email": "", + "followers": 0, + "following": 0, + "gpg_keys": [], + "gravatar_id": "", + "id": "549", + "location": "", + "login": "arnol377", + "name": "David John Arnold Jr", + "node_id": "MDQ6VXNlcjU0OQ==", + "public_gists": 0, + "public_repos": 4, + "site_admin": false, + "ssh_keys": [ + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDBL3xJ3zSxE6Qv8k9b06oFB4dbq2+PiOmsnIfAgL2XZpEenD03jhCF28iAZVy9oovuBCbcyAE9BjTRdWFSjd1dmHthbGe5Jv0/DweNFB/YmX6wJ6knljTA3frkY9bVS9+rqY6N4GG3oG6lyyk7cBaUEagXF4VQQJqX4l7XG1xxUfKLFFhF3Lq+CDg39FwlKk+QxIWMrbRJdpRBDZ03VZnKcgP0m/5K8PrcyGbxOK8qeVREUaqvmQN2Rs4LD1REPZyr3GQ2gtgpqrJ3hym7TwJw3Xl5NW8Y7RAeENem2K3EKoq6qq/wB/YUqMhKD228w5J6B+CoI8nvDqAWZkNAz/uY/GJe4elRJCmFH2F+r3263R5oDnXWSluB7XIm3b+Xt24F8MwoltejSEma41c8FM/xbF3Kle8ofBGFPEXpNDAxICVbyZ6OE4TyqTGKA8xgg9vnR3hCGGERtLYHhPw0aVHY7Zew/6/QV9o6/reO96V92zpXVEpvO09Z40fvTd5cN68=", + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDXRnBg+dayTonnZY3i0dDEHXUFMhcJKtqiFO7Oe/ejasDeW2I+L0f1gg+7u1ms/g8E28/RARN3R1aMnbGvXWdP/yBrhtpWJc5TXK+f33S5lYYjptJ2F6vj7jiRU7pP4uL9wqknj0DoSD0krAEbA85mBJgIV1viL8ZBtT/8iBoD6kHGRXaHpRH5sIFaURRJCcUTJhdqMUPd6bYKE/Bc6ioQLAEow0JB4ju1jPa7fOxhgVrIYxRiMkismhR0WLopB5JxyYDNmIyjUL2vGt9Kpd41DELv+Pn7EaP2HLjubVruWFnxnhZ7nvQwMonnZvjD3f5yPkDUkWnwaVGqw8cm9PFM4buFRmGpsl8YqTFakYgqc+JVDQB8bb9a9sr5/6Hbn41VcXd+KV6dTMK4PKSQFKLaq54ExzlwnE/EHnduE8JgvsfAa316/etFlzTQOBv1KbL8RKK0/vy6wJpiK9laDbymsOJPjZekoc/TD1AIvfWF9oae6wAU86tBVGdEO/JMOMc=", + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCvlUlp/OjFsa4fINqqMXukveo+mCu0Ywp0wwVCURkfJpPFPMdmbp07WlULCX6VgmqH4joCA+LUyY+q6iBZw80lS66lpDcRHMTG4PV7IsPpoYN20bUnm30vdqug/P1wVDuOO9B83+s3QFeBl9WbHQB3YY5pBulZGLIGw26qrLwfM5UJ4P/Ffca7ca9PM7KEkwqOC9xMfJy3tFkzD2Rjo2AHN9s7xHtpf95m8MzToy1Q7ykU/8bhImOrkZKaJJtIfmykYhebKDpeETEWJiyyaubIl71KAsWacrvQnEfo2fe62kR3SGv2auPDxMaGKPqtDpe2e/Y9I85Fv3tfWk53DDFoZNzExT4jc825bCqqz2DBbz4Q/Miw3rcdHx7uaRHinEJsBveNhZSH31GMLtU/dVNF3TNhlEH62Zmjgu7IpWb6Tr/4KnLjf/0p7ye34jP49nv1iBj99j3p1hwgAGU56ag4j7TW/iMh+uH+pg1hm6xZjhFInZGzQqtMl/qjBlr1oJ8=", + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCNVaIVHzjCkmCyQnpHfgLLvPtc96PVg/+8/cT2ty6TFe3ALaZJSHTWXjOPJaSkhBef2PCmbcsd3+p+QDl87nRl9O5fV376mrGwsxlpI2a1FnzpBkAEpZ2KyE4B593xGlpmvrMOF9gY4qGdNHCXw2puZ/IkmYaiROYpL2ptiSfTGc1R/ZrEvs0fhYwyi4xYfb+iGVSvjhhTqzJYNW6IBmMZVbDCdYX+JvSKsZYydnkHg7d9QJORZ3TnPe3Tmnn+PAse9V0z9VKOScfoRNT+Co9ezLGWNY+Dnnwg0jouA76/CiIIjWunJzLsIeu7cqNwubKO8lsLX9O+6zKR46EEaVr1VoC395IPvBy8x+VWUSpI+M7GLh0iPE56EvwiVm8irTkmY6WPsQ8PMJ5IWZE/OA6w6fupiSgBd5myFpB/wa8yVdY+UPfh40HpEXt0+iPeWK9kz/fJQAgow/FJAAsnI65JdVP4woAUYnmoJ0l6qgDyFQbOxcq7NZdmedHtRz049hM=" + ], + "suspended_at": "0001-01-01 00:00:00 +0000 UTC", + "updated_at": "2024-09-19 17:49:11 +0000 UTC", + "username": "arnol377" + }, + "sensitive_values": { + "gpg_keys": [], + "ssh_keys": [ + false, + false, + false, + false + ] + } + }, + { + "address": "module.repo_list[\"terraform-ai-ingestion\"].data.github_user.pull_request_bypassers[\"gomez385\"]", + "mode": "data", + "type": "github_user", + "name": "pull_request_bypassers", + "index": "gomez385", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "avatar_url": "https://github.e.it.census.gov/avatars/u/603?", + "bio": "", + "blog": "", + "company": "", + "created_at": "2024-06-13 14:57:04 +0000 UTC", + "email": "", + "followers": 0, + "following": 1, + "gpg_keys": [], + "gravatar_id": "", + "id": "603", + "location": "", + "login": "gomez385", + "name": "James Farr Gomez", + "node_id": "MDQ6VXNlcjYwMw==", + "public_gists": 0, + "public_repos": 0, + "site_admin": false, + "ssh_keys": [ + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDuGCb6WHZ8kex7gawtk2pmHd8t77HQ0LE+7sanVKoC5cWC/7RlefKBuH5c8F2RmmB1EaVFT2ylCsR0qnPT8xGH7gjrkRs/B8LAcwvXifev1BkPSE1gJT+lQpnwPkfqBuCbsewOR1XyPqQt5SZh4a9w7GDvBsfO2Ate9ADtX0nsI76t2DURR32ptBKnN2TtYqnD5D3VKV2lhiI2tnz8sO5FZzYycCONsv570N/itwT34gKSLVRsj+0YmPjmOU+7JWpXxdtjocw06ZEGnSyInIH4VJVROE0p3Z63xHQ9fxDtnW71zf0a9UeoY5Vb/b7PbK4NF3Dp9gG8iaL9dqeiZ1XTCcXHDyHGVFej3sl0CkB+BQ/Gz9ZCqkSBcA+n9WA5KclNuOMwe4eLXRwg/gxxmAJB707gXUk+nSPGwYTObtm0+lfspCNQxAFry8gX39mdVqnaCz1agzmwZo7rRls+BZPfDPg3YUkB3v9P8y/cbO6Bn5IRmYB2KQ73E7X8QJcW0+E=", + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQDROzDzCBisy3+PvtvvCt7XxuEpNAwBS6SoK2wKJNnGgYPs8zInboOVZWqRXujOWOySPCloBfYU5B2eg94cVoDnTnc9dArWhBOK0aY93XM7/0s3/01w3Kkyi25oJytr0NRI8liZq6DnF9hFiqxRVcJkoS4+I9t9G3MURjVbcNY10+bIs6Dp9sbnJaJEWvvsbAiz1WdZBAsF3eW20mNkzmQtYoASHWv3AD/j+xLRYvx2sVcPXIGQ4fw3FqQIUOkbVQUW2lCBp+BVZgR1U4dKh5lejddxd7bXblWxJ5qqWPXulqCnUrJBBTWxTPrUxBzcZtxLAj8C04PyZPJYWVVbhuxkMgA7VeUHeZ/iFT6LZeqVtwTDlEPCzShCdIC0JWKzxI+I663YeSf2y1Jh3qT/R+e0qcduEmL3bdE+PyyvQks8WCXVfXtJeHQfkPKcy9gARpQScY/6vSyZbJNfIW1VagCCRZp54AzOlhKTUy2r97zlrzB9gBPU2ycbmLFYOglVrw6Fo6ECV8slQIxuz0lS0RbEI/+c9jWxKqcSrb0zCEgoL+HEdGaElTRENPhApPXZO+YlFZkg9NY9t+uGWCu2xPgSiR2fn44QzfWypxCq05G0fNRQRRIuMnpjkXlv66O/hju+xMTG1fVyKSKq5CA1bDdDn9euZ7Q6OAFsQX73hdYn6Q==" + ], + "suspended_at": "0001-01-01 00:00:00 +0000 UTC", + "updated_at": "2024-09-26 18:00:48 +0000 UTC", + "username": "gomez385" + }, + "sensitive_values": { + "gpg_keys": [], + "ssh_keys": [ + false, + false + ] + } + }, + { + "address": "module.repo_list[\"terraform-ai-ingestion\"].github_repository.repo", + "mode": "managed", + "type": "github_repository", + "name": "repo", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 1, + "values": { + "allow_auto_merge": false, + "allow_merge_commit": false, + "allow_rebase_merge": false, + "allow_squash_merge": true, + "allow_update_branch": false, + "archive_on_destroy": true, + "archived": false, + "auto_init": true, + "default_branch": "main", + "delete_branch_on_merge": true, + "description": "Project Repo for AI Ingestion", + "etag": "W/\"98f6fbaec35afee05597ae61645e0781b99d4570ce218af9c0a5cd0c65f8837a\"", + "full_name": "CSVD/terraform-ai-ingestion", + "git_clone_url": "git://github.e.it.census.gov/CSVD/terraform-ai-ingestion.git", + "gitignore_template": null, + "has_discussions": false, + "has_downloads": false, + "has_issues": true, + "has_projects": true, + "has_wiki": true, + "homepage_url": "", + "html_url": "https://github.e.it.census.gov/CSVD/terraform-ai-ingestion", + "http_clone_url": "https://github.e.it.census.gov/CSVD/terraform-ai-ingestion.git", + "id": "terraform-ai-ingestion", + "ignore_vulnerability_alerts_during_read": null, + "is_template": false, + "license_template": null, + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "name": "terraform-ai-ingestion", + "node_id": "MDEwOlJlcG9zaXRvcnkxMjM2", + "pages": [], + "primary_language": "Python", + "private": false, + "repo_id": 1236, + "security_and_analysis": [ + { + "advanced_security": [ + { + "status": "disabled" + } + ], + "secret_scanning": [ + { + "status": "disabled" + } + ], + "secret_scanning_push_protection": [ + { + "status": "disabled" + } + ] + } + ], + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "ssh_clone_url": "git@github.e.it.census.gov:CSVD/terraform-ai-ingestion.git", + "svn_url": "https://github.e.it.census.gov/CSVD/terraform-ai-ingestion", + "template": [], + "topics": [ + "ai-ingestion", + "terraform" + ], + "visibility": "public", + "vulnerability_alerts": false, + "web_commit_signoff_required": false + }, + "sensitive_values": { + "pages": [], + "security_and_analysis": [ + { + "advanced_security": [ + {} + ], + "secret_scanning": [ + {} + ], + "secret_scanning_push_protection": [ + {} + ] + } + ], + "template": [], + "topics": [ + false, + false + ] + } + }, + { + "address": "module.repo_list[\"terraform-ai-ingestion\"].github_repository_collaborator.collaborators[\"gomez385\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "gomez385", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "terraform-ai-ingestion:gomez385", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "terraform-ai-ingestion", + "username": "gomez385" + }, + "sensitive_values": {}, + "depends_on": [ + "module.repo_list.github_repository.repo" + ] + }, + { + "address": "module.repo_list[\"terraform-ai-ingestion\"].github_repository_collaborator.collaborators[\"morga471\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "morga471", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "terraform-ai-ingestion:morga471", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "terraform-ai-ingestion", + "username": "morga471" + }, + "sensitive_values": {}, + "depends_on": [ + "module.repo_list.github_repository.repo" + ] + }, + { + "address": "module.repo_list[\"terraform-ai-ingestion\"].github_repository_collaborator.collaborators[\"naray007\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "naray007", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "terraform-ai-ingestion:naray007", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "terraform-ai-ingestion", + "username": "naray007" + }, + "sensitive_values": {}, + "depends_on": [ + "module.repo_list.github_repository.repo" + ] + } + ], + "address": "module.repo_list[\"terraform-ai-ingestion\"]" + }, + { + "resources": [ + { + "address": "module.repo_list[\"terraform-aws-efs\"].data.github_user.pull_request_bypassers[\"arnol377\"]", + "mode": "data", + "type": "github_user", + "name": "pull_request_bypassers", + "index": "arnol377", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "avatar_url": "https://github.e.it.census.gov/avatars/u/549?", + "bio": "", + "blog": "", + "company": "", + "created_at": "2023-12-26 17:20:24 +0000 UTC", + "email": "", + "followers": 0, + "following": 0, + "gpg_keys": [], + "gravatar_id": "", + "id": "549", + "location": "", + "login": "arnol377", + "name": "David John Arnold Jr", + "node_id": "MDQ6VXNlcjU0OQ==", + "public_gists": 0, + "public_repos": 4, + "site_admin": false, + "ssh_keys": [ + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDBL3xJ3zSxE6Qv8k9b06oFB4dbq2+PiOmsnIfAgL2XZpEenD03jhCF28iAZVy9oovuBCbcyAE9BjTRdWFSjd1dmHthbGe5Jv0/DweNFB/YmX6wJ6knljTA3frkY9bVS9+rqY6N4GG3oG6lyyk7cBaUEagXF4VQQJqX4l7XG1xxUfKLFFhF3Lq+CDg39FwlKk+QxIWMrbRJdpRBDZ03VZnKcgP0m/5K8PrcyGbxOK8qeVREUaqvmQN2Rs4LD1REPZyr3GQ2gtgpqrJ3hym7TwJw3Xl5NW8Y7RAeENem2K3EKoq6qq/wB/YUqMhKD228w5J6B+CoI8nvDqAWZkNAz/uY/GJe4elRJCmFH2F+r3263R5oDnXWSluB7XIm3b+Xt24F8MwoltejSEma41c8FM/xbF3Kle8ofBGFPEXpNDAxICVbyZ6OE4TyqTGKA8xgg9vnR3hCGGERtLYHhPw0aVHY7Zew/6/QV9o6/reO96V92zpXVEpvO09Z40fvTd5cN68=", + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDXRnBg+dayTonnZY3i0dDEHXUFMhcJKtqiFO7Oe/ejasDeW2I+L0f1gg+7u1ms/g8E28/RARN3R1aMnbGvXWdP/yBrhtpWJc5TXK+f33S5lYYjptJ2F6vj7jiRU7pP4uL9wqknj0DoSD0krAEbA85mBJgIV1viL8ZBtT/8iBoD6kHGRXaHpRH5sIFaURRJCcUTJhdqMUPd6bYKE/Bc6ioQLAEow0JB4ju1jPa7fOxhgVrIYxRiMkismhR0WLopB5JxyYDNmIyjUL2vGt9Kpd41DELv+Pn7EaP2HLjubVruWFnxnhZ7nvQwMonnZvjD3f5yPkDUkWnwaVGqw8cm9PFM4buFRmGpsl8YqTFakYgqc+JVDQB8bb9a9sr5/6Hbn41VcXd+KV6dTMK4PKSQFKLaq54ExzlwnE/EHnduE8JgvsfAa316/etFlzTQOBv1KbL8RKK0/vy6wJpiK9laDbymsOJPjZekoc/TD1AIvfWF9oae6wAU86tBVGdEO/JMOMc=", + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCvlUlp/OjFsa4fINqqMXukveo+mCu0Ywp0wwVCURkfJpPFPMdmbp07WlULCX6VgmqH4joCA+LUyY+q6iBZw80lS66lpDcRHMTG4PV7IsPpoYN20bUnm30vdqug/P1wVDuOO9B83+s3QFeBl9WbHQB3YY5pBulZGLIGw26qrLwfM5UJ4P/Ffca7ca9PM7KEkwqOC9xMfJy3tFkzD2Rjo2AHN9s7xHtpf95m8MzToy1Q7ykU/8bhImOrkZKaJJtIfmykYhebKDpeETEWJiyyaubIl71KAsWacrvQnEfo2fe62kR3SGv2auPDxMaGKPqtDpe2e/Y9I85Fv3tfWk53DDFoZNzExT4jc825bCqqz2DBbz4Q/Miw3rcdHx7uaRHinEJsBveNhZSH31GMLtU/dVNF3TNhlEH62Zmjgu7IpWb6Tr/4KnLjf/0p7ye34jP49nv1iBj99j3p1hwgAGU56ag4j7TW/iMh+uH+pg1hm6xZjhFInZGzQqtMl/qjBlr1oJ8=", + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCNVaIVHzjCkmCyQnpHfgLLvPtc96PVg/+8/cT2ty6TFe3ALaZJSHTWXjOPJaSkhBef2PCmbcsd3+p+QDl87nRl9O5fV376mrGwsxlpI2a1FnzpBkAEpZ2KyE4B593xGlpmvrMOF9gY4qGdNHCXw2puZ/IkmYaiROYpL2ptiSfTGc1R/ZrEvs0fhYwyi4xYfb+iGVSvjhhTqzJYNW6IBmMZVbDCdYX+JvSKsZYydnkHg7d9QJORZ3TnPe3Tmnn+PAse9V0z9VKOScfoRNT+Co9ezLGWNY+Dnnwg0jouA76/CiIIjWunJzLsIeu7cqNwubKO8lsLX9O+6zKR46EEaVr1VoC395IPvBy8x+VWUSpI+M7GLh0iPE56EvwiVm8irTkmY6WPsQ8PMJ5IWZE/OA6w6fupiSgBd5myFpB/wa8yVdY+UPfh40HpEXt0+iPeWK9kz/fJQAgow/FJAAsnI65JdVP4woAUYnmoJ0l6qgDyFQbOxcq7NZdmedHtRz049hM=" + ], + "suspended_at": "0001-01-01 00:00:00 +0000 UTC", + "updated_at": "2024-09-19 17:49:11 +0000 UTC", + "username": "arnol377" + }, + "sensitive_values": { + "gpg_keys": [], + "ssh_keys": [ + false, + false, + false, + false + ] + } + }, + { + "address": "module.repo_list[\"terraform-aws-efs\"].data.github_user.pull_request_bypassers[\"gomez385\"]", + "mode": "data", + "type": "github_user", + "name": "pull_request_bypassers", + "index": "gomez385", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "avatar_url": "https://github.e.it.census.gov/avatars/u/603?", + "bio": "", + "blog": "", + "company": "", + "created_at": "2024-06-13 14:57:04 +0000 UTC", + "email": "", + "followers": 0, + "following": 1, + "gpg_keys": [], + "gravatar_id": "", + "id": "603", + "location": "", + "login": "gomez385", + "name": "James Farr Gomez", + "node_id": "MDQ6VXNlcjYwMw==", + "public_gists": 0, + "public_repos": 0, + "site_admin": false, + "ssh_keys": [ + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDuGCb6WHZ8kex7gawtk2pmHd8t77HQ0LE+7sanVKoC5cWC/7RlefKBuH5c8F2RmmB1EaVFT2ylCsR0qnPT8xGH7gjrkRs/B8LAcwvXifev1BkPSE1gJT+lQpnwPkfqBuCbsewOR1XyPqQt5SZh4a9w7GDvBsfO2Ate9ADtX0nsI76t2DURR32ptBKnN2TtYqnD5D3VKV2lhiI2tnz8sO5FZzYycCONsv570N/itwT34gKSLVRsj+0YmPjmOU+7JWpXxdtjocw06ZEGnSyInIH4VJVROE0p3Z63xHQ9fxDtnW71zf0a9UeoY5Vb/b7PbK4NF3Dp9gG8iaL9dqeiZ1XTCcXHDyHGVFej3sl0CkB+BQ/Gz9ZCqkSBcA+n9WA5KclNuOMwe4eLXRwg/gxxmAJB707gXUk+nSPGwYTObtm0+lfspCNQxAFry8gX39mdVqnaCz1agzmwZo7rRls+BZPfDPg3YUkB3v9P8y/cbO6Bn5IRmYB2KQ73E7X8QJcW0+E=", + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQDROzDzCBisy3+PvtvvCt7XxuEpNAwBS6SoK2wKJNnGgYPs8zInboOVZWqRXujOWOySPCloBfYU5B2eg94cVoDnTnc9dArWhBOK0aY93XM7/0s3/01w3Kkyi25oJytr0NRI8liZq6DnF9hFiqxRVcJkoS4+I9t9G3MURjVbcNY10+bIs6Dp9sbnJaJEWvvsbAiz1WdZBAsF3eW20mNkzmQtYoASHWv3AD/j+xLRYvx2sVcPXIGQ4fw3FqQIUOkbVQUW2lCBp+BVZgR1U4dKh5lejddxd7bXblWxJ5qqWPXulqCnUrJBBTWxTPrUxBzcZtxLAj8C04PyZPJYWVVbhuxkMgA7VeUHeZ/iFT6LZeqVtwTDlEPCzShCdIC0JWKzxI+I663YeSf2y1Jh3qT/R+e0qcduEmL3bdE+PyyvQks8WCXVfXtJeHQfkPKcy9gARpQScY/6vSyZbJNfIW1VagCCRZp54AzOlhKTUy2r97zlrzB9gBPU2ycbmLFYOglVrw6Fo6ECV8slQIxuz0lS0RbEI/+c9jWxKqcSrb0zCEgoL+HEdGaElTRENPhApPXZO+YlFZkg9NY9t+uGWCu2xPgSiR2fn44QzfWypxCq05G0fNRQRRIuMnpjkXlv66O/hju+xMTG1fVyKSKq5CA1bDdDn9euZ7Q6OAFsQX73hdYn6Q==" + ], + "suspended_at": "0001-01-01 00:00:00 +0000 UTC", + "updated_at": "2024-09-26 18:00:48 +0000 UTC", + "username": "gomez385" + }, + "sensitive_values": { + "gpg_keys": [], + "ssh_keys": [ + false, + false + ] + } + }, + { + "address": "module.repo_list[\"terraform-aws-efs\"].github_repository.repo", + "mode": "managed", + "type": "github_repository", + "name": "repo", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 1, + "values": { + "allow_auto_merge": false, + "allow_merge_commit": false, + "allow_rebase_merge": false, + "allow_squash_merge": true, + "allow_update_branch": false, + "archive_on_destroy": true, + "archived": false, + "auto_init": true, + "default_branch": "main", + "delete_branch_on_merge": true, + "description": "Module for AWS EFS", + "etag": "W/\"85e8fb48500597c491a812e040d22c9621a19340eb110ad132bdce94fcd7d934\"", + "full_name": "CSVD/terraform-aws-efs", + "git_clone_url": "git://github.e.it.census.gov/CSVD/terraform-aws-efs.git", + "gitignore_template": null, + "has_discussions": false, + "has_downloads": false, + "has_issues": true, + "has_projects": true, + "has_wiki": true, + "homepage_url": "", + "html_url": "https://github.e.it.census.gov/CSVD/terraform-aws-efs", + "http_clone_url": "https://github.e.it.census.gov/CSVD/terraform-aws-efs.git", + "id": "terraform-aws-efs", + "ignore_vulnerability_alerts_during_read": null, + "is_template": false, + "license_template": null, + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "name": "terraform-aws-efs", + "node_id": "MDEwOlJlcG9zaXRvcnkxMjUw", + "pages": [], + "primary_language": "HCL", + "private": false, + "repo_id": 1250, + "security_and_analysis": [ + { + "advanced_security": [ + { + "status": "disabled" + } + ], + "secret_scanning": [ + { + "status": "disabled" + } + ], + "secret_scanning_push_protection": [ + { + "status": "disabled" + } + ] + } + ], + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "ssh_clone_url": "git@github.e.it.census.gov:CSVD/terraform-aws-efs.git", + "svn_url": "https://github.e.it.census.gov/CSVD/terraform-aws-efs", + "template": [], + "topics": [ + "ai-demo", + "terraform" + ], + "visibility": "public", + "vulnerability_alerts": false, + "web_commit_signoff_required": false + }, + "sensitive_values": { + "pages": [], + "security_and_analysis": [ + { + "advanced_security": [ + {} + ], + "secret_scanning": [ + {} + ], + "secret_scanning_push_protection": [ + {} + ] + } + ], + "template": [], + "topics": [ + false, + false + ] + } + }, + { + "address": "module.repo_list[\"terraform-aws-efs\"].github_repository_collaborator.collaborators[\"gomez385\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "gomez385", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "terraform-aws-efs:gomez385", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "terraform-aws-efs", + "username": "gomez385" + }, + "sensitive_values": {}, + "depends_on": [ + "module.repo_list.github_repository.repo" + ] + }, + { + "address": "module.repo_list[\"terraform-aws-efs\"].github_repository_collaborator.collaborators[\"morga471\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "morga471", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "terraform-aws-efs:morga471", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "terraform-aws-efs", + "username": "morga471" + }, + "sensitive_values": {}, + "depends_on": [ + "module.repo_list.github_repository.repo" + ] + }, + { + "address": "module.repo_list[\"terraform-aws-efs\"].github_repository_collaborator.collaborators[\"naray007\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "naray007", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "terraform-aws-efs:naray007", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "terraform-aws-efs", + "username": "naray007" + }, + "sensitive_values": {}, + "depends_on": [ + "module.repo_list.github_repository.repo" + ] + } + ], + "address": "module.repo_list[\"terraform-aws-efs\"]" + }, + { + "resources": [ + { + "address": "module.repo_list[\"terraform-aws-image-pipeline\"].data.github_user.pull_request_bypassers[\"arnol377\"]", + "mode": "data", + "type": "github_user", + "name": "pull_request_bypassers", + "index": "arnol377", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "avatar_url": "https://github.e.it.census.gov/avatars/u/549?", + "bio": "", + "blog": "", + "company": "", + "created_at": "2023-12-26 17:20:24 +0000 UTC", + "email": "", + "followers": 0, + "following": 0, + "gpg_keys": [], + "gravatar_id": "", + "id": "549", + "location": "", + "login": "arnol377", + "name": "David John Arnold Jr", + "node_id": "MDQ6VXNlcjU0OQ==", + "public_gists": 0, + "public_repos": 4, + "site_admin": false, + "ssh_keys": [ + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDBL3xJ3zSxE6Qv8k9b06oFB4dbq2+PiOmsnIfAgL2XZpEenD03jhCF28iAZVy9oovuBCbcyAE9BjTRdWFSjd1dmHthbGe5Jv0/DweNFB/YmX6wJ6knljTA3frkY9bVS9+rqY6N4GG3oG6lyyk7cBaUEagXF4VQQJqX4l7XG1xxUfKLFFhF3Lq+CDg39FwlKk+QxIWMrbRJdpRBDZ03VZnKcgP0m/5K8PrcyGbxOK8qeVREUaqvmQN2Rs4LD1REPZyr3GQ2gtgpqrJ3hym7TwJw3Xl5NW8Y7RAeENem2K3EKoq6qq/wB/YUqMhKD228w5J6B+CoI8nvDqAWZkNAz/uY/GJe4elRJCmFH2F+r3263R5oDnXWSluB7XIm3b+Xt24F8MwoltejSEma41c8FM/xbF3Kle8ofBGFPEXpNDAxICVbyZ6OE4TyqTGKA8xgg9vnR3hCGGERtLYHhPw0aVHY7Zew/6/QV9o6/reO96V92zpXVEpvO09Z40fvTd5cN68=", + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDXRnBg+dayTonnZY3i0dDEHXUFMhcJKtqiFO7Oe/ejasDeW2I+L0f1gg+7u1ms/g8E28/RARN3R1aMnbGvXWdP/yBrhtpWJc5TXK+f33S5lYYjptJ2F6vj7jiRU7pP4uL9wqknj0DoSD0krAEbA85mBJgIV1viL8ZBtT/8iBoD6kHGRXaHpRH5sIFaURRJCcUTJhdqMUPd6bYKE/Bc6ioQLAEow0JB4ju1jPa7fOxhgVrIYxRiMkismhR0WLopB5JxyYDNmIyjUL2vGt9Kpd41DELv+Pn7EaP2HLjubVruWFnxnhZ7nvQwMonnZvjD3f5yPkDUkWnwaVGqw8cm9PFM4buFRmGpsl8YqTFakYgqc+JVDQB8bb9a9sr5/6Hbn41VcXd+KV6dTMK4PKSQFKLaq54ExzlwnE/EHnduE8JgvsfAa316/etFlzTQOBv1KbL8RKK0/vy6wJpiK9laDbymsOJPjZekoc/TD1AIvfWF9oae6wAU86tBVGdEO/JMOMc=", + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCvlUlp/OjFsa4fINqqMXukveo+mCu0Ywp0wwVCURkfJpPFPMdmbp07WlULCX6VgmqH4joCA+LUyY+q6iBZw80lS66lpDcRHMTG4PV7IsPpoYN20bUnm30vdqug/P1wVDuOO9B83+s3QFeBl9WbHQB3YY5pBulZGLIGw26qrLwfM5UJ4P/Ffca7ca9PM7KEkwqOC9xMfJy3tFkzD2Rjo2AHN9s7xHtpf95m8MzToy1Q7ykU/8bhImOrkZKaJJtIfmykYhebKDpeETEWJiyyaubIl71KAsWacrvQnEfo2fe62kR3SGv2auPDxMaGKPqtDpe2e/Y9I85Fv3tfWk53DDFoZNzExT4jc825bCqqz2DBbz4Q/Miw3rcdHx7uaRHinEJsBveNhZSH31GMLtU/dVNF3TNhlEH62Zmjgu7IpWb6Tr/4KnLjf/0p7ye34jP49nv1iBj99j3p1hwgAGU56ag4j7TW/iMh+uH+pg1hm6xZjhFInZGzQqtMl/qjBlr1oJ8=", + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCNVaIVHzjCkmCyQnpHfgLLvPtc96PVg/+8/cT2ty6TFe3ALaZJSHTWXjOPJaSkhBef2PCmbcsd3+p+QDl87nRl9O5fV376mrGwsxlpI2a1FnzpBkAEpZ2KyE4B593xGlpmvrMOF9gY4qGdNHCXw2puZ/IkmYaiROYpL2ptiSfTGc1R/ZrEvs0fhYwyi4xYfb+iGVSvjhhTqzJYNW6IBmMZVbDCdYX+JvSKsZYydnkHg7d9QJORZ3TnPe3Tmnn+PAse9V0z9VKOScfoRNT+Co9ezLGWNY+Dnnwg0jouA76/CiIIjWunJzLsIeu7cqNwubKO8lsLX9O+6zKR46EEaVr1VoC395IPvBy8x+VWUSpI+M7GLh0iPE56EvwiVm8irTkmY6WPsQ8PMJ5IWZE/OA6w6fupiSgBd5myFpB/wa8yVdY+UPfh40HpEXt0+iPeWK9kz/fJQAgow/FJAAsnI65JdVP4woAUYnmoJ0l6qgDyFQbOxcq7NZdmedHtRz049hM=" + ], + "suspended_at": "0001-01-01 00:00:00 +0000 UTC", + "updated_at": "2024-09-19 17:49:11 +0000 UTC", + "username": "arnol377" + }, + "sensitive_values": { + "gpg_keys": [], + "ssh_keys": [ + false, + false, + false, + false + ] + } + }, + { + "address": "module.repo_list[\"terraform-aws-image-pipeline\"].data.github_user.pull_request_bypassers[\"gomez385\"]", + "mode": "data", + "type": "github_user", + "name": "pull_request_bypassers", + "index": "gomez385", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "avatar_url": "https://github.e.it.census.gov/avatars/u/603?", + "bio": "", + "blog": "", + "company": "", + "created_at": "2024-06-13 14:57:04 +0000 UTC", + "email": "", + "followers": 0, + "following": 1, + "gpg_keys": [], + "gravatar_id": "", + "id": "603", + "location": "", + "login": "gomez385", + "name": "James Farr Gomez", + "node_id": "MDQ6VXNlcjYwMw==", + "public_gists": 0, + "public_repos": 0, + "site_admin": false, + "ssh_keys": [ + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDuGCb6WHZ8kex7gawtk2pmHd8t77HQ0LE+7sanVKoC5cWC/7RlefKBuH5c8F2RmmB1EaVFT2ylCsR0qnPT8xGH7gjrkRs/B8LAcwvXifev1BkPSE1gJT+lQpnwPkfqBuCbsewOR1XyPqQt5SZh4a9w7GDvBsfO2Ate9ADtX0nsI76t2DURR32ptBKnN2TtYqnD5D3VKV2lhiI2tnz8sO5FZzYycCONsv570N/itwT34gKSLVRsj+0YmPjmOU+7JWpXxdtjocw06ZEGnSyInIH4VJVROE0p3Z63xHQ9fxDtnW71zf0a9UeoY5Vb/b7PbK4NF3Dp9gG8iaL9dqeiZ1XTCcXHDyHGVFej3sl0CkB+BQ/Gz9ZCqkSBcA+n9WA5KclNuOMwe4eLXRwg/gxxmAJB707gXUk+nSPGwYTObtm0+lfspCNQxAFry8gX39mdVqnaCz1agzmwZo7rRls+BZPfDPg3YUkB3v9P8y/cbO6Bn5IRmYB2KQ73E7X8QJcW0+E=", + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQDROzDzCBisy3+PvtvvCt7XxuEpNAwBS6SoK2wKJNnGgYPs8zInboOVZWqRXujOWOySPCloBfYU5B2eg94cVoDnTnc9dArWhBOK0aY93XM7/0s3/01w3Kkyi25oJytr0NRI8liZq6DnF9hFiqxRVcJkoS4+I9t9G3MURjVbcNY10+bIs6Dp9sbnJaJEWvvsbAiz1WdZBAsF3eW20mNkzmQtYoASHWv3AD/j+xLRYvx2sVcPXIGQ4fw3FqQIUOkbVQUW2lCBp+BVZgR1U4dKh5lejddxd7bXblWxJ5qqWPXulqCnUrJBBTWxTPrUxBzcZtxLAj8C04PyZPJYWVVbhuxkMgA7VeUHeZ/iFT6LZeqVtwTDlEPCzShCdIC0JWKzxI+I663YeSf2y1Jh3qT/R+e0qcduEmL3bdE+PyyvQks8WCXVfXtJeHQfkPKcy9gARpQScY/6vSyZbJNfIW1VagCCRZp54AzOlhKTUy2r97zlrzB9gBPU2ycbmLFYOglVrw6Fo6ECV8slQIxuz0lS0RbEI/+c9jWxKqcSrb0zCEgoL+HEdGaElTRENPhApPXZO+YlFZkg9NY9t+uGWCu2xPgSiR2fn44QzfWypxCq05G0fNRQRRIuMnpjkXlv66O/hju+xMTG1fVyKSKq5CA1bDdDn9euZ7Q6OAFsQX73hdYn6Q==" + ], + "suspended_at": "0001-01-01 00:00:00 +0000 UTC", + "updated_at": "2024-09-26 18:00:48 +0000 UTC", + "username": "gomez385" + }, + "sensitive_values": { + "gpg_keys": [], + "ssh_keys": [ + false, + false + ] + } + }, + { + "address": "module.repo_list[\"terraform-aws-image-pipeline\"].github_actions_variable.variable[\"terraform_version\"]", + "mode": "managed", + "type": "github_actions_variable", + "name": "variable", + "index": "terraform_version", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "created_at": "2024-09-05 20:33:04 +0000 UTC", + "id": "terraform-aws-image-pipeline:terraform_version", + "repository": "terraform-aws-image-pipeline", + "updated_at": "2024-09-05 20:33:04 +0000 UTC", + "value": "1.9.1", + "variable_name": "terraform_version" + }, + "sensitive_values": {}, + "depends_on": [ + "module.terraform_aws_image_pipeline.github_repository.repo" + ] + }, + { + "address": "module.repo_list[\"terraform-aws-image-pipeline\"].github_repository.repo", + "mode": "managed", + "type": "github_repository", + "name": "repo", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 1, + "values": { + "allow_auto_merge": false, + "allow_merge_commit": false, + "allow_rebase_merge": false, + "allow_squash_merge": true, + "allow_update_branch": false, + "archive_on_destroy": true, + "archived": false, + "auto_init": true, + "default_branch": "main", + "delete_branch_on_merge": true, + "description": "Terraform Module that creates codepipeline and codebuild jobs and other resources for building and deploying images", + "etag": "W/\"d79543e3a28ebe818e95295827c7d164b7542cf48335c6b80ba1c3d4cc1d4de4\"", + "full_name": "CSVD/terraform-aws-image-pipeline", + "git_clone_url": "git://github.e.it.census.gov/CSVD/terraform-aws-image-pipeline.git", + "gitignore_template": "", + "has_discussions": false, + "has_downloads": false, + "has_issues": true, + "has_projects": true, + "has_wiki": true, + "homepage_url": "", + "html_url": "https://github.e.it.census.gov/CSVD/terraform-aws-image-pipeline", + "http_clone_url": "https://github.e.it.census.gov/CSVD/terraform-aws-image-pipeline.git", + "id": "terraform-aws-image-pipeline", + "ignore_vulnerability_alerts_during_read": null, + "is_template": false, + "license_template": null, + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "name": "terraform-aws-image-pipeline", + "node_id": "MDEwOlJlcG9zaXRvcnkxMDA4", + "pages": [], + "primary_language": "HCL", + "private": true, + "repo_id": 1008, + "security_and_analysis": [ + { + "advanced_security": [ + { + "status": "disabled" + } + ], + "secret_scanning": [ + { + "status": "disabled" + } + ], + "secret_scanning_push_protection": [ + { + "status": "disabled" + } + ] + } + ], + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "ssh_clone_url": "git@github.e.it.census.gov:CSVD/terraform-aws-image-pipeline.git", + "svn_url": "https://github.e.it.census.gov/CSVD/terraform-aws-image-pipeline", + "template": [], + "topics": [ + "terraform" + ], + "visibility": "private", + "vulnerability_alerts": false, + "web_commit_signoff_required": false + }, + "sensitive_values": { + "pages": [], + "security_and_analysis": [ + { + "advanced_security": [ + {} + ], + "secret_scanning": [ + {} + ], + "secret_scanning_push_protection": [ + {} + ] + } + ], + "template": [], + "topics": [ + false + ] + } + }, + { + "address": "module.repo_list[\"terraform-aws-image-pipeline\"].github_repository_collaborator.collaborators[\"gomez385\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "gomez385", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "terraform-aws-image-pipeline:gomez385", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "terraform-aws-image-pipeline", + "username": "gomez385" + }, + "sensitive_values": {}, + "depends_on": [ + "module.repo_list.github_repository.repo" + ] + }, + { + "address": "module.repo_list[\"terraform-aws-image-pipeline\"].github_repository_collaborator.collaborators[\"morga471\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "morga471", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "terraform-aws-image-pipeline:morga471", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "terraform-aws-image-pipeline", + "username": "morga471" + }, + "sensitive_values": {}, + "depends_on": [ + "module.repo_list.github_repository.repo" + ] + }, + { + "address": "module.repo_list[\"terraform-aws-image-pipeline\"].github_repository_collaborator.collaborators[\"naray007\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "naray007", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "terraform-aws-image-pipeline:naray007", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "terraform-aws-image-pipeline", + "username": "naray007" + }, + "sensitive_values": {}, + "depends_on": [ + "module.repo_list.github_repository.repo" + ] + }, + { + "address": "module.repo_list[\"terraform-aws-image-pipeline\"].github_repository_file.managed_extra_files[\"terraform-plan.yaml\"]", + "mode": "managed", + "type": "github_repository_file", + "name": "managed_extra_files", + "index": "terraform-plan.yaml", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "autocreate_branch": null, + "autocreate_branch_source_branch": null, + "autocreate_branch_source_sha": null, + "branch": "main", + "commit_author": null, + "commit_email": null, + "commit_message": "Add .github/workflows/terraform-plan.yaml", + "commit_sha": "29f8f6edec039ce79f6d52a12d58da59cfeeb42c", + "content": "\n# This is a basic workflow to help you get started with Actions\n\nname: Terraform Plan\n\n\n# Controls when the workflow will run\non:\n pull_request:\n\n# A workflow run is made up of one or more jobs that can run sequentially or in parallel\njobs:\n # This workflow contains a single job called \"build\"\n build:\n # The type of runner that the job will run on\n runs-on: [ terraform-aws-image-pipeline ]\n env:\n AWS_SECRET_ACCESS_KEY: \"${{ secrets.AWS_SECRET_ACCESS_KEY }}\"\n AWS_ACCESS_KEY_ID: \"${{ vars.AWS_ACCESS_KEY_ID }}\"\n AWS_SESSION_TOKEN: \"${{ secrets.AWS_SESSION_TOKEN }}\"\n \n\n # Steps represent a sequence of tasks that will be executed as part of the job\n steps:\n # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it\n - uses: actions/checkout@v3\n with:\n ref: ${{ github.head_ref }}\n token: ${{ secrets.GH_TOKEN }}\n\n - uses: CSVD/gh-actions-setup-node@v3\n with:\n node-version: 16\n \n - uses: CSVD/gh-actions-setup-terraform@v2\n with:\n terraform_version: ${{ vars.terraform_version }}\n\n - name: Terraform Format\n id: fmt\n run: |\n terraform fmt\n if ! git diff-index --quiet HEAD; then \n git config --global user.name 'arnol377'\n git config --global user.email 'david.j.arnold.jr@census.gov'\n git commit -am \"Autoformatting TF Code\"\n git push\n echo \"auto_format=true\" >> $GITHUB_ENV \n fi\n\n - name: Autoformat Halt\n if: env.auto_format == 'true'\n run: exit 0\n\n - name: Terraform Init\n id: init\n \n working-directory: ./examples\n \n run: terraform init -upgrade\n\n - name: Terraform Validate\n id: validate\n \n working-directory: ./examples\n \n run: terraform validate\n\n - name: Terraform Plan\n id: plan\n \n working-directory: ./examples\n \n run: terraform plan\n continue-on-error: true\n\n - name: Update Pull Request\n uses: CSVD/gh-actions-github-script@v6\n if: github.event_name == 'pull_request'\n with:\n github-token: ${{ secrets.GH_TOKEN }}\n script: |\n const output = `#### Terraform Format and Style 🖌\\`${{ steps.fmt.outcome }}\\`\n #### Terraform Initialization ⚙️\\`${{ steps.init.outcome }}\\`\n #### Terraform Validation 🤖\\`${{ steps.validate.outcome }}\\`\n #### Terraform Plan:\n ${{ steps.plan.outcome }}\n *Pushed by: @${{ github.actor }}, Action: \\`${{ github.event_name }}\\`*`;\n\n github.rest.issues.createComment({\n issue_number: context.issue.number,\n owner: context.repo.owner,\n repo: context.repo.repo,\n body: output\n })\n", + "file": ".github/workflows/terraform-plan.yaml", + "id": "terraform-aws-image-pipeline/.github/workflows/terraform-plan.yaml", + "overwrite_on_create": true, + "ref": "main", + "repository": "terraform-aws-image-pipeline", + "sha": "1128c4169de1ffaa3152d8bf88746506502b6a6c" + }, + "sensitive_values": {}, + "depends_on": [ + "module.terraform_aws_image_pipeline.github_repository.repo" + ] + } + ], + "address": "module.repo_list[\"terraform-aws-image-pipeline\"]" + }, + { + "resources": [ + { + "address": "module.repo_list[\"terraform-aws-rds\"].data.github_user.pull_request_bypassers[\"arnol377\"]", + "mode": "data", + "type": "github_user", + "name": "pull_request_bypassers", + "index": "arnol377", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "avatar_url": "https://github.e.it.census.gov/avatars/u/549?", + "bio": "", + "blog": "", + "company": "", + "created_at": "2023-12-26 17:20:24 +0000 UTC", + "email": "", + "followers": 0, + "following": 0, + "gpg_keys": [], + "gravatar_id": "", + "id": "549", + "location": "", + "login": "arnol377", + "name": "David John Arnold Jr", + "node_id": "MDQ6VXNlcjU0OQ==", + "public_gists": 0, + "public_repos": 4, + "site_admin": false, + "ssh_keys": [ + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDBL3xJ3zSxE6Qv8k9b06oFB4dbq2+PiOmsnIfAgL2XZpEenD03jhCF28iAZVy9oovuBCbcyAE9BjTRdWFSjd1dmHthbGe5Jv0/DweNFB/YmX6wJ6knljTA3frkY9bVS9+rqY6N4GG3oG6lyyk7cBaUEagXF4VQQJqX4l7XG1xxUfKLFFhF3Lq+CDg39FwlKk+QxIWMrbRJdpRBDZ03VZnKcgP0m/5K8PrcyGbxOK8qeVREUaqvmQN2Rs4LD1REPZyr3GQ2gtgpqrJ3hym7TwJw3Xl5NW8Y7RAeENem2K3EKoq6qq/wB/YUqMhKD228w5J6B+CoI8nvDqAWZkNAz/uY/GJe4elRJCmFH2F+r3263R5oDnXWSluB7XIm3b+Xt24F8MwoltejSEma41c8FM/xbF3Kle8ofBGFPEXpNDAxICVbyZ6OE4TyqTGKA8xgg9vnR3hCGGERtLYHhPw0aVHY7Zew/6/QV9o6/reO96V92zpXVEpvO09Z40fvTd5cN68=", + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDXRnBg+dayTonnZY3i0dDEHXUFMhcJKtqiFO7Oe/ejasDeW2I+L0f1gg+7u1ms/g8E28/RARN3R1aMnbGvXWdP/yBrhtpWJc5TXK+f33S5lYYjptJ2F6vj7jiRU7pP4uL9wqknj0DoSD0krAEbA85mBJgIV1viL8ZBtT/8iBoD6kHGRXaHpRH5sIFaURRJCcUTJhdqMUPd6bYKE/Bc6ioQLAEow0JB4ju1jPa7fOxhgVrIYxRiMkismhR0WLopB5JxyYDNmIyjUL2vGt9Kpd41DELv+Pn7EaP2HLjubVruWFnxnhZ7nvQwMonnZvjD3f5yPkDUkWnwaVGqw8cm9PFM4buFRmGpsl8YqTFakYgqc+JVDQB8bb9a9sr5/6Hbn41VcXd+KV6dTMK4PKSQFKLaq54ExzlwnE/EHnduE8JgvsfAa316/etFlzTQOBv1KbL8RKK0/vy6wJpiK9laDbymsOJPjZekoc/TD1AIvfWF9oae6wAU86tBVGdEO/JMOMc=", + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCvlUlp/OjFsa4fINqqMXukveo+mCu0Ywp0wwVCURkfJpPFPMdmbp07WlULCX6VgmqH4joCA+LUyY+q6iBZw80lS66lpDcRHMTG4PV7IsPpoYN20bUnm30vdqug/P1wVDuOO9B83+s3QFeBl9WbHQB3YY5pBulZGLIGw26qrLwfM5UJ4P/Ffca7ca9PM7KEkwqOC9xMfJy3tFkzD2Rjo2AHN9s7xHtpf95m8MzToy1Q7ykU/8bhImOrkZKaJJtIfmykYhebKDpeETEWJiyyaubIl71KAsWacrvQnEfo2fe62kR3SGv2auPDxMaGKPqtDpe2e/Y9I85Fv3tfWk53DDFoZNzExT4jc825bCqqz2DBbz4Q/Miw3rcdHx7uaRHinEJsBveNhZSH31GMLtU/dVNF3TNhlEH62Zmjgu7IpWb6Tr/4KnLjf/0p7ye34jP49nv1iBj99j3p1hwgAGU56ag4j7TW/iMh+uH+pg1hm6xZjhFInZGzQqtMl/qjBlr1oJ8=", + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCNVaIVHzjCkmCyQnpHfgLLvPtc96PVg/+8/cT2ty6TFe3ALaZJSHTWXjOPJaSkhBef2PCmbcsd3+p+QDl87nRl9O5fV376mrGwsxlpI2a1FnzpBkAEpZ2KyE4B593xGlpmvrMOF9gY4qGdNHCXw2puZ/IkmYaiROYpL2ptiSfTGc1R/ZrEvs0fhYwyi4xYfb+iGVSvjhhTqzJYNW6IBmMZVbDCdYX+JvSKsZYydnkHg7d9QJORZ3TnPe3Tmnn+PAse9V0z9VKOScfoRNT+Co9ezLGWNY+Dnnwg0jouA76/CiIIjWunJzLsIeu7cqNwubKO8lsLX9O+6zKR46EEaVr1VoC395IPvBy8x+VWUSpI+M7GLh0iPE56EvwiVm8irTkmY6WPsQ8PMJ5IWZE/OA6w6fupiSgBd5myFpB/wa8yVdY+UPfh40HpEXt0+iPeWK9kz/fJQAgow/FJAAsnI65JdVP4woAUYnmoJ0l6qgDyFQbOxcq7NZdmedHtRz049hM=" + ], + "suspended_at": "0001-01-01 00:00:00 +0000 UTC", + "updated_at": "2024-09-19 17:49:11 +0000 UTC", + "username": "arnol377" + }, + "sensitive_values": { + "gpg_keys": [], + "ssh_keys": [ + false, + false, + false, + false + ] + } + }, + { + "address": "module.repo_list[\"terraform-aws-rds\"].data.github_user.pull_request_bypassers[\"gomez385\"]", + "mode": "data", + "type": "github_user", + "name": "pull_request_bypassers", + "index": "gomez385", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "avatar_url": "https://github.e.it.census.gov/avatars/u/603?", + "bio": "", + "blog": "", + "company": "", + "created_at": "2024-06-13 14:57:04 +0000 UTC", + "email": "", + "followers": 0, + "following": 1, + "gpg_keys": [], + "gravatar_id": "", + "id": "603", + "location": "", + "login": "gomez385", + "name": "James Farr Gomez", + "node_id": "MDQ6VXNlcjYwMw==", + "public_gists": 0, + "public_repos": 0, + "site_admin": false, + "ssh_keys": [ + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDuGCb6WHZ8kex7gawtk2pmHd8t77HQ0LE+7sanVKoC5cWC/7RlefKBuH5c8F2RmmB1EaVFT2ylCsR0qnPT8xGH7gjrkRs/B8LAcwvXifev1BkPSE1gJT+lQpnwPkfqBuCbsewOR1XyPqQt5SZh4a9w7GDvBsfO2Ate9ADtX0nsI76t2DURR32ptBKnN2TtYqnD5D3VKV2lhiI2tnz8sO5FZzYycCONsv570N/itwT34gKSLVRsj+0YmPjmOU+7JWpXxdtjocw06ZEGnSyInIH4VJVROE0p3Z63xHQ9fxDtnW71zf0a9UeoY5Vb/b7PbK4NF3Dp9gG8iaL9dqeiZ1XTCcXHDyHGVFej3sl0CkB+BQ/Gz9ZCqkSBcA+n9WA5KclNuOMwe4eLXRwg/gxxmAJB707gXUk+nSPGwYTObtm0+lfspCNQxAFry8gX39mdVqnaCz1agzmwZo7rRls+BZPfDPg3YUkB3v9P8y/cbO6Bn5IRmYB2KQ73E7X8QJcW0+E=", + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQDROzDzCBisy3+PvtvvCt7XxuEpNAwBS6SoK2wKJNnGgYPs8zInboOVZWqRXujOWOySPCloBfYU5B2eg94cVoDnTnc9dArWhBOK0aY93XM7/0s3/01w3Kkyi25oJytr0NRI8liZq6DnF9hFiqxRVcJkoS4+I9t9G3MURjVbcNY10+bIs6Dp9sbnJaJEWvvsbAiz1WdZBAsF3eW20mNkzmQtYoASHWv3AD/j+xLRYvx2sVcPXIGQ4fw3FqQIUOkbVQUW2lCBp+BVZgR1U4dKh5lejddxd7bXblWxJ5qqWPXulqCnUrJBBTWxTPrUxBzcZtxLAj8C04PyZPJYWVVbhuxkMgA7VeUHeZ/iFT6LZeqVtwTDlEPCzShCdIC0JWKzxI+I663YeSf2y1Jh3qT/R+e0qcduEmL3bdE+PyyvQks8WCXVfXtJeHQfkPKcy9gARpQScY/6vSyZbJNfIW1VagCCRZp54AzOlhKTUy2r97zlrzB9gBPU2ycbmLFYOglVrw6Fo6ECV8slQIxuz0lS0RbEI/+c9jWxKqcSrb0zCEgoL+HEdGaElTRENPhApPXZO+YlFZkg9NY9t+uGWCu2xPgSiR2fn44QzfWypxCq05G0fNRQRRIuMnpjkXlv66O/hju+xMTG1fVyKSKq5CA1bDdDn9euZ7Q6OAFsQX73hdYn6Q==" + ], + "suspended_at": "0001-01-01 00:00:00 +0000 UTC", + "updated_at": "2024-09-26 18:00:48 +0000 UTC", + "username": "gomez385" + }, + "sensitive_values": { + "gpg_keys": [], + "ssh_keys": [ + false, + false + ] + } + }, + { + "address": "module.repo_list[\"terraform-aws-rds\"].github_repository.repo", + "mode": "managed", + "type": "github_repository", + "name": "repo", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 1, + "values": { + "allow_auto_merge": false, + "allow_merge_commit": false, + "allow_rebase_merge": false, + "allow_squash_merge": true, + "allow_update_branch": false, + "archive_on_destroy": true, + "archived": false, + "auto_init": true, + "default_branch": "main", + "delete_branch_on_merge": true, + "description": "Module for AWS RDS", + "etag": "W/\"0c5c6328aa9217e446dcfd04d8561338fb07dabca7d1f22065bb51db268aad05\"", + "full_name": "CSVD/terraform-aws-rds", + "git_clone_url": "git://github.e.it.census.gov/CSVD/terraform-aws-rds.git", + "gitignore_template": null, + "has_discussions": false, + "has_downloads": false, + "has_issues": true, + "has_projects": true, + "has_wiki": true, + "homepage_url": "", + "html_url": "https://github.e.it.census.gov/CSVD/terraform-aws-rds", + "http_clone_url": "https://github.e.it.census.gov/CSVD/terraform-aws-rds.git", + "id": "terraform-aws-rds", + "ignore_vulnerability_alerts_during_read": null, + "is_template": false, + "license_template": null, + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "name": "terraform-aws-rds", + "node_id": "MDEwOlJlcG9zaXRvcnkxMjQ4", + "pages": [], + "primary_language": "HCL", + "private": false, + "repo_id": 1248, + "security_and_analysis": [ + { + "advanced_security": [ + { + "status": "disabled" + } + ], + "secret_scanning": [ + { + "status": "disabled" + } + ], + "secret_scanning_push_protection": [ + { + "status": "disabled" + } + ] + } + ], + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "ssh_clone_url": "git@github.e.it.census.gov:CSVD/terraform-aws-rds.git", + "svn_url": "https://github.e.it.census.gov/CSVD/terraform-aws-rds", + "template": [], + "topics": [ + "ai-demo", + "terraform" + ], + "visibility": "public", + "vulnerability_alerts": false, + "web_commit_signoff_required": false + }, + "sensitive_values": { + "pages": [], + "security_and_analysis": [ + { + "advanced_security": [ + {} + ], + "secret_scanning": [ + {} + ], + "secret_scanning_push_protection": [ + {} + ] + } + ], + "template": [], + "topics": [ + false, + false + ] + } + }, + { + "address": "module.repo_list[\"terraform-aws-rds\"].github_repository_collaborator.collaborators[\"gomez385\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "gomez385", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "terraform-aws-rds:gomez385", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "terraform-aws-rds", + "username": "gomez385" + }, + "sensitive_values": {}, + "depends_on": [ + "module.repo_list.github_repository.repo" + ] + }, + { + "address": "module.repo_list[\"terraform-aws-rds\"].github_repository_collaborator.collaborators[\"morga471\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "morga471", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "terraform-aws-rds:morga471", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "terraform-aws-rds", + "username": "morga471" + }, + "sensitive_values": {}, + "depends_on": [ + "module.repo_list.github_repository.repo" + ] + }, + { + "address": "module.repo_list[\"terraform-aws-rds\"].github_repository_collaborator.collaborators[\"naray007\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "naray007", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "terraform-aws-rds:naray007", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "terraform-aws-rds", + "username": "naray007" + }, + "sensitive_values": {}, + "depends_on": [ + "module.repo_list.github_repository.repo" + ] + } + ], + "address": "module.repo_list[\"terraform-aws-rds\"]" + }, + { + "resources": [ + { + "address": "module.repo_list[\"terraform-aws-ses\"].data.github_user.pull_request_bypassers[\"arnol377\"]", + "mode": "data", + "type": "github_user", + "name": "pull_request_bypassers", + "index": "arnol377", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "avatar_url": "https://github.e.it.census.gov/avatars/u/549?", + "bio": "", + "blog": "", + "company": "", + "created_at": "2023-12-26 17:20:24 +0000 UTC", + "email": "", + "followers": 0, + "following": 0, + "gpg_keys": [], + "gravatar_id": "", + "id": "549", + "location": "", + "login": "arnol377", + "name": "David John Arnold Jr", + "node_id": "MDQ6VXNlcjU0OQ==", + "public_gists": 0, + "public_repos": 4, + "site_admin": false, + "ssh_keys": [ + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDBL3xJ3zSxE6Qv8k9b06oFB4dbq2+PiOmsnIfAgL2XZpEenD03jhCF28iAZVy9oovuBCbcyAE9BjTRdWFSjd1dmHthbGe5Jv0/DweNFB/YmX6wJ6knljTA3frkY9bVS9+rqY6N4GG3oG6lyyk7cBaUEagXF4VQQJqX4l7XG1xxUfKLFFhF3Lq+CDg39FwlKk+QxIWMrbRJdpRBDZ03VZnKcgP0m/5K8PrcyGbxOK8qeVREUaqvmQN2Rs4LD1REPZyr3GQ2gtgpqrJ3hym7TwJw3Xl5NW8Y7RAeENem2K3EKoq6qq/wB/YUqMhKD228w5J6B+CoI8nvDqAWZkNAz/uY/GJe4elRJCmFH2F+r3263R5oDnXWSluB7XIm3b+Xt24F8MwoltejSEma41c8FM/xbF3Kle8ofBGFPEXpNDAxICVbyZ6OE4TyqTGKA8xgg9vnR3hCGGERtLYHhPw0aVHY7Zew/6/QV9o6/reO96V92zpXVEpvO09Z40fvTd5cN68=", + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDXRnBg+dayTonnZY3i0dDEHXUFMhcJKtqiFO7Oe/ejasDeW2I+L0f1gg+7u1ms/g8E28/RARN3R1aMnbGvXWdP/yBrhtpWJc5TXK+f33S5lYYjptJ2F6vj7jiRU7pP4uL9wqknj0DoSD0krAEbA85mBJgIV1viL8ZBtT/8iBoD6kHGRXaHpRH5sIFaURRJCcUTJhdqMUPd6bYKE/Bc6ioQLAEow0JB4ju1jPa7fOxhgVrIYxRiMkismhR0WLopB5JxyYDNmIyjUL2vGt9Kpd41DELv+Pn7EaP2HLjubVruWFnxnhZ7nvQwMonnZvjD3f5yPkDUkWnwaVGqw8cm9PFM4buFRmGpsl8YqTFakYgqc+JVDQB8bb9a9sr5/6Hbn41VcXd+KV6dTMK4PKSQFKLaq54ExzlwnE/EHnduE8JgvsfAa316/etFlzTQOBv1KbL8RKK0/vy6wJpiK9laDbymsOJPjZekoc/TD1AIvfWF9oae6wAU86tBVGdEO/JMOMc=", + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCvlUlp/OjFsa4fINqqMXukveo+mCu0Ywp0wwVCURkfJpPFPMdmbp07WlULCX6VgmqH4joCA+LUyY+q6iBZw80lS66lpDcRHMTG4PV7IsPpoYN20bUnm30vdqug/P1wVDuOO9B83+s3QFeBl9WbHQB3YY5pBulZGLIGw26qrLwfM5UJ4P/Ffca7ca9PM7KEkwqOC9xMfJy3tFkzD2Rjo2AHN9s7xHtpf95m8MzToy1Q7ykU/8bhImOrkZKaJJtIfmykYhebKDpeETEWJiyyaubIl71KAsWacrvQnEfo2fe62kR3SGv2auPDxMaGKPqtDpe2e/Y9I85Fv3tfWk53DDFoZNzExT4jc825bCqqz2DBbz4Q/Miw3rcdHx7uaRHinEJsBveNhZSH31GMLtU/dVNF3TNhlEH62Zmjgu7IpWb6Tr/4KnLjf/0p7ye34jP49nv1iBj99j3p1hwgAGU56ag4j7TW/iMh+uH+pg1hm6xZjhFInZGzQqtMl/qjBlr1oJ8=", + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCNVaIVHzjCkmCyQnpHfgLLvPtc96PVg/+8/cT2ty6TFe3ALaZJSHTWXjOPJaSkhBef2PCmbcsd3+p+QDl87nRl9O5fV376mrGwsxlpI2a1FnzpBkAEpZ2KyE4B593xGlpmvrMOF9gY4qGdNHCXw2puZ/IkmYaiROYpL2ptiSfTGc1R/ZrEvs0fhYwyi4xYfb+iGVSvjhhTqzJYNW6IBmMZVbDCdYX+JvSKsZYydnkHg7d9QJORZ3TnPe3Tmnn+PAse9V0z9VKOScfoRNT+Co9ezLGWNY+Dnnwg0jouA76/CiIIjWunJzLsIeu7cqNwubKO8lsLX9O+6zKR46EEaVr1VoC395IPvBy8x+VWUSpI+M7GLh0iPE56EvwiVm8irTkmY6WPsQ8PMJ5IWZE/OA6w6fupiSgBd5myFpB/wa8yVdY+UPfh40HpEXt0+iPeWK9kz/fJQAgow/FJAAsnI65JdVP4woAUYnmoJ0l6qgDyFQbOxcq7NZdmedHtRz049hM=" + ], + "suspended_at": "0001-01-01 00:00:00 +0000 UTC", + "updated_at": "2024-09-19 17:49:11 +0000 UTC", + "username": "arnol377" + }, + "sensitive_values": { + "gpg_keys": [], + "ssh_keys": [ + false, + false, + false, + false + ] + } + }, + { + "address": "module.repo_list[\"terraform-aws-ses\"].data.github_user.pull_request_bypassers[\"gomez385\"]", + "mode": "data", + "type": "github_user", + "name": "pull_request_bypassers", + "index": "gomez385", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "avatar_url": "https://github.e.it.census.gov/avatars/u/603?", + "bio": "", + "blog": "", + "company": "", + "created_at": "2024-06-13 14:57:04 +0000 UTC", + "email": "", + "followers": 0, + "following": 1, + "gpg_keys": [], + "gravatar_id": "", + "id": "603", + "location": "", + "login": "gomez385", + "name": "James Farr Gomez", + "node_id": "MDQ6VXNlcjYwMw==", + "public_gists": 0, + "public_repos": 0, + "site_admin": false, + "ssh_keys": [ + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDuGCb6WHZ8kex7gawtk2pmHd8t77HQ0LE+7sanVKoC5cWC/7RlefKBuH5c8F2RmmB1EaVFT2ylCsR0qnPT8xGH7gjrkRs/B8LAcwvXifev1BkPSE1gJT+lQpnwPkfqBuCbsewOR1XyPqQt5SZh4a9w7GDvBsfO2Ate9ADtX0nsI76t2DURR32ptBKnN2TtYqnD5D3VKV2lhiI2tnz8sO5FZzYycCONsv570N/itwT34gKSLVRsj+0YmPjmOU+7JWpXxdtjocw06ZEGnSyInIH4VJVROE0p3Z63xHQ9fxDtnW71zf0a9UeoY5Vb/b7PbK4NF3Dp9gG8iaL9dqeiZ1XTCcXHDyHGVFej3sl0CkB+BQ/Gz9ZCqkSBcA+n9WA5KclNuOMwe4eLXRwg/gxxmAJB707gXUk+nSPGwYTObtm0+lfspCNQxAFry8gX39mdVqnaCz1agzmwZo7rRls+BZPfDPg3YUkB3v9P8y/cbO6Bn5IRmYB2KQ73E7X8QJcW0+E=", + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQDROzDzCBisy3+PvtvvCt7XxuEpNAwBS6SoK2wKJNnGgYPs8zInboOVZWqRXujOWOySPCloBfYU5B2eg94cVoDnTnc9dArWhBOK0aY93XM7/0s3/01w3Kkyi25oJytr0NRI8liZq6DnF9hFiqxRVcJkoS4+I9t9G3MURjVbcNY10+bIs6Dp9sbnJaJEWvvsbAiz1WdZBAsF3eW20mNkzmQtYoASHWv3AD/j+xLRYvx2sVcPXIGQ4fw3FqQIUOkbVQUW2lCBp+BVZgR1U4dKh5lejddxd7bXblWxJ5qqWPXulqCnUrJBBTWxTPrUxBzcZtxLAj8C04PyZPJYWVVbhuxkMgA7VeUHeZ/iFT6LZeqVtwTDlEPCzShCdIC0JWKzxI+I663YeSf2y1Jh3qT/R+e0qcduEmL3bdE+PyyvQks8WCXVfXtJeHQfkPKcy9gARpQScY/6vSyZbJNfIW1VagCCRZp54AzOlhKTUy2r97zlrzB9gBPU2ycbmLFYOglVrw6Fo6ECV8slQIxuz0lS0RbEI/+c9jWxKqcSrb0zCEgoL+HEdGaElTRENPhApPXZO+YlFZkg9NY9t+uGWCu2xPgSiR2fn44QzfWypxCq05G0fNRQRRIuMnpjkXlv66O/hju+xMTG1fVyKSKq5CA1bDdDn9euZ7Q6OAFsQX73hdYn6Q==" + ], + "suspended_at": "0001-01-01 00:00:00 +0000 UTC", + "updated_at": "2024-09-26 18:00:48 +0000 UTC", + "username": "gomez385" + }, + "sensitive_values": { + "gpg_keys": [], + "ssh_keys": [ + false, + false + ] + } + }, + { + "address": "module.repo_list[\"terraform-aws-ses\"].github_repository.repo", + "mode": "managed", + "type": "github_repository", + "name": "repo", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 1, + "values": { + "allow_auto_merge": false, + "allow_merge_commit": false, + "allow_rebase_merge": false, + "allow_squash_merge": true, + "allow_update_branch": false, + "archive_on_destroy": true, + "archived": false, + "auto_init": true, + "default_branch": "main", + "delete_branch_on_merge": true, + "description": "Module for AWS S3", + "etag": "W/\"348305d05b9d62da99eaac4dfa6680e5961068b7a15710f0c41db0f67bf44d79\"", + "full_name": "CSVD/terraform-aws-ses", + "git_clone_url": "git://github.e.it.census.gov/CSVD/terraform-aws-ses.git", + "gitignore_template": null, + "has_discussions": false, + "has_downloads": false, + "has_issues": true, + "has_projects": true, + "has_wiki": true, + "homepage_url": "", + "html_url": "https://github.e.it.census.gov/CSVD/terraform-aws-ses", + "http_clone_url": "https://github.e.it.census.gov/CSVD/terraform-aws-ses.git", + "id": "terraform-aws-ses", + "ignore_vulnerability_alerts_during_read": null, + "is_template": false, + "license_template": null, + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "name": "terraform-aws-ses", + "node_id": "MDEwOlJlcG9zaXRvcnkxMjQ5", + "pages": [], + "primary_language": "HCL", + "private": false, + "repo_id": 1249, + "security_and_analysis": [ + { + "advanced_security": [ + { + "status": "disabled" + } + ], + "secret_scanning": [ + { + "status": "disabled" + } + ], + "secret_scanning_push_protection": [ + { + "status": "disabled" + } + ] + } + ], + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "ssh_clone_url": "git@github.e.it.census.gov:CSVD/terraform-aws-ses.git", + "svn_url": "https://github.e.it.census.gov/CSVD/terraform-aws-ses", + "template": [], + "topics": [ + "ai-demo", + "terraform" + ], + "visibility": "public", + "vulnerability_alerts": false, + "web_commit_signoff_required": false + }, + "sensitive_values": { + "pages": [], + "security_and_analysis": [ + { + "advanced_security": [ + {} + ], + "secret_scanning": [ + {} + ], + "secret_scanning_push_protection": [ + {} + ] + } + ], + "template": [], + "topics": [ + false, + false + ] + } + }, + { + "address": "module.repo_list[\"terraform-aws-ses\"].github_repository_collaborator.collaborators[\"gomez385\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "gomez385", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "terraform-aws-ses:gomez385", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "terraform-aws-ses", + "username": "gomez385" + }, + "sensitive_values": {}, + "depends_on": [ + "module.repo_list.github_repository.repo" + ] + }, + { + "address": "module.repo_list[\"terraform-aws-ses\"].github_repository_collaborator.collaborators[\"morga471\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "morga471", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "terraform-aws-ses:morga471", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "terraform-aws-ses", + "username": "morga471" + }, + "sensitive_values": {}, + "depends_on": [ + "module.repo_list.github_repository.repo" + ] + }, + { + "address": "module.repo_list[\"terraform-aws-ses\"].github_repository_collaborator.collaborators[\"naray007\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "naray007", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "terraform-aws-ses:naray007", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "terraform-aws-ses", + "username": "naray007" + }, + "sensitive_values": {}, + "depends_on": [ + "module.repo_list.github_repository.repo" + ] + } + ], + "address": "module.repo_list[\"terraform-aws-ses\"]" + }, + { + "resources": [ + { + "address": "module.repo_list[\"terraform-git-workspace\"].data.github_user.pull_request_bypassers[\"arnol377\"]", + "mode": "data", + "type": "github_user", + "name": "pull_request_bypassers", + "index": "arnol377", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "avatar_url": "https://github.e.it.census.gov/avatars/u/549?", + "bio": "", + "blog": "", + "company": "", + "created_at": "2023-12-26 17:20:24 +0000 UTC", + "email": "", + "followers": 0, + "following": 0, + "gpg_keys": [], + "gravatar_id": "", + "id": "549", + "location": "", + "login": "arnol377", + "name": "David John Arnold Jr", + "node_id": "MDQ6VXNlcjU0OQ==", + "public_gists": 0, + "public_repos": 4, + "site_admin": false, + "ssh_keys": [ + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDBL3xJ3zSxE6Qv8k9b06oFB4dbq2+PiOmsnIfAgL2XZpEenD03jhCF28iAZVy9oovuBCbcyAE9BjTRdWFSjd1dmHthbGe5Jv0/DweNFB/YmX6wJ6knljTA3frkY9bVS9+rqY6N4GG3oG6lyyk7cBaUEagXF4VQQJqX4l7XG1xxUfKLFFhF3Lq+CDg39FwlKk+QxIWMrbRJdpRBDZ03VZnKcgP0m/5K8PrcyGbxOK8qeVREUaqvmQN2Rs4LD1REPZyr3GQ2gtgpqrJ3hym7TwJw3Xl5NW8Y7RAeENem2K3EKoq6qq/wB/YUqMhKD228w5J6B+CoI8nvDqAWZkNAz/uY/GJe4elRJCmFH2F+r3263R5oDnXWSluB7XIm3b+Xt24F8MwoltejSEma41c8FM/xbF3Kle8ofBGFPEXpNDAxICVbyZ6OE4TyqTGKA8xgg9vnR3hCGGERtLYHhPw0aVHY7Zew/6/QV9o6/reO96V92zpXVEpvO09Z40fvTd5cN68=", + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDXRnBg+dayTonnZY3i0dDEHXUFMhcJKtqiFO7Oe/ejasDeW2I+L0f1gg+7u1ms/g8E28/RARN3R1aMnbGvXWdP/yBrhtpWJc5TXK+f33S5lYYjptJ2F6vj7jiRU7pP4uL9wqknj0DoSD0krAEbA85mBJgIV1viL8ZBtT/8iBoD6kHGRXaHpRH5sIFaURRJCcUTJhdqMUPd6bYKE/Bc6ioQLAEow0JB4ju1jPa7fOxhgVrIYxRiMkismhR0WLopB5JxyYDNmIyjUL2vGt9Kpd41DELv+Pn7EaP2HLjubVruWFnxnhZ7nvQwMonnZvjD3f5yPkDUkWnwaVGqw8cm9PFM4buFRmGpsl8YqTFakYgqc+JVDQB8bb9a9sr5/6Hbn41VcXd+KV6dTMK4PKSQFKLaq54ExzlwnE/EHnduE8JgvsfAa316/etFlzTQOBv1KbL8RKK0/vy6wJpiK9laDbymsOJPjZekoc/TD1AIvfWF9oae6wAU86tBVGdEO/JMOMc=", + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCvlUlp/OjFsa4fINqqMXukveo+mCu0Ywp0wwVCURkfJpPFPMdmbp07WlULCX6VgmqH4joCA+LUyY+q6iBZw80lS66lpDcRHMTG4PV7IsPpoYN20bUnm30vdqug/P1wVDuOO9B83+s3QFeBl9WbHQB3YY5pBulZGLIGw26qrLwfM5UJ4P/Ffca7ca9PM7KEkwqOC9xMfJy3tFkzD2Rjo2AHN9s7xHtpf95m8MzToy1Q7ykU/8bhImOrkZKaJJtIfmykYhebKDpeETEWJiyyaubIl71KAsWacrvQnEfo2fe62kR3SGv2auPDxMaGKPqtDpe2e/Y9I85Fv3tfWk53DDFoZNzExT4jc825bCqqz2DBbz4Q/Miw3rcdHx7uaRHinEJsBveNhZSH31GMLtU/dVNF3TNhlEH62Zmjgu7IpWb6Tr/4KnLjf/0p7ye34jP49nv1iBj99j3p1hwgAGU56ag4j7TW/iMh+uH+pg1hm6xZjhFInZGzQqtMl/qjBlr1oJ8=", + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCNVaIVHzjCkmCyQnpHfgLLvPtc96PVg/+8/cT2ty6TFe3ALaZJSHTWXjOPJaSkhBef2PCmbcsd3+p+QDl87nRl9O5fV376mrGwsxlpI2a1FnzpBkAEpZ2KyE4B593xGlpmvrMOF9gY4qGdNHCXw2puZ/IkmYaiROYpL2ptiSfTGc1R/ZrEvs0fhYwyi4xYfb+iGVSvjhhTqzJYNW6IBmMZVbDCdYX+JvSKsZYydnkHg7d9QJORZ3TnPe3Tmnn+PAse9V0z9VKOScfoRNT+Co9ezLGWNY+Dnnwg0jouA76/CiIIjWunJzLsIeu7cqNwubKO8lsLX9O+6zKR46EEaVr1VoC395IPvBy8x+VWUSpI+M7GLh0iPE56EvwiVm8irTkmY6WPsQ8PMJ5IWZE/OA6w6fupiSgBd5myFpB/wa8yVdY+UPfh40HpEXt0+iPeWK9kz/fJQAgow/FJAAsnI65JdVP4woAUYnmoJ0l6qgDyFQbOxcq7NZdmedHtRz049hM=" + ], + "suspended_at": "0001-01-01 00:00:00 +0000 UTC", + "updated_at": "2024-09-19 17:49:11 +0000 UTC", + "username": "arnol377" + }, + "sensitive_values": { + "gpg_keys": [], + "ssh_keys": [ + false, + false, + false, + false + ] + } + }, + { + "address": "module.repo_list[\"terraform-git-workspace\"].data.github_user.pull_request_bypassers[\"gomez385\"]", + "mode": "data", + "type": "github_user", + "name": "pull_request_bypassers", + "index": "gomez385", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "avatar_url": "https://github.e.it.census.gov/avatars/u/603?", + "bio": "", + "blog": "", + "company": "", + "created_at": "2024-06-13 14:57:04 +0000 UTC", + "email": "", + "followers": 0, + "following": 1, + "gpg_keys": [], + "gravatar_id": "", + "id": "603", + "location": "", + "login": "gomez385", + "name": "James Farr Gomez", + "node_id": "MDQ6VXNlcjYwMw==", + "public_gists": 0, + "public_repos": 0, + "site_admin": false, + "ssh_keys": [ + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDuGCb6WHZ8kex7gawtk2pmHd8t77HQ0LE+7sanVKoC5cWC/7RlefKBuH5c8F2RmmB1EaVFT2ylCsR0qnPT8xGH7gjrkRs/B8LAcwvXifev1BkPSE1gJT+lQpnwPkfqBuCbsewOR1XyPqQt5SZh4a9w7GDvBsfO2Ate9ADtX0nsI76t2DURR32ptBKnN2TtYqnD5D3VKV2lhiI2tnz8sO5FZzYycCONsv570N/itwT34gKSLVRsj+0YmPjmOU+7JWpXxdtjocw06ZEGnSyInIH4VJVROE0p3Z63xHQ9fxDtnW71zf0a9UeoY5Vb/b7PbK4NF3Dp9gG8iaL9dqeiZ1XTCcXHDyHGVFej3sl0CkB+BQ/Gz9ZCqkSBcA+n9WA5KclNuOMwe4eLXRwg/gxxmAJB707gXUk+nSPGwYTObtm0+lfspCNQxAFry8gX39mdVqnaCz1agzmwZo7rRls+BZPfDPg3YUkB3v9P8y/cbO6Bn5IRmYB2KQ73E7X8QJcW0+E=", + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQDROzDzCBisy3+PvtvvCt7XxuEpNAwBS6SoK2wKJNnGgYPs8zInboOVZWqRXujOWOySPCloBfYU5B2eg94cVoDnTnc9dArWhBOK0aY93XM7/0s3/01w3Kkyi25oJytr0NRI8liZq6DnF9hFiqxRVcJkoS4+I9t9G3MURjVbcNY10+bIs6Dp9sbnJaJEWvvsbAiz1WdZBAsF3eW20mNkzmQtYoASHWv3AD/j+xLRYvx2sVcPXIGQ4fw3FqQIUOkbVQUW2lCBp+BVZgR1U4dKh5lejddxd7bXblWxJ5qqWPXulqCnUrJBBTWxTPrUxBzcZtxLAj8C04PyZPJYWVVbhuxkMgA7VeUHeZ/iFT6LZeqVtwTDlEPCzShCdIC0JWKzxI+I663YeSf2y1Jh3qT/R+e0qcduEmL3bdE+PyyvQks8WCXVfXtJeHQfkPKcy9gARpQScY/6vSyZbJNfIW1VagCCRZp54AzOlhKTUy2r97zlrzB9gBPU2ycbmLFYOglVrw6Fo6ECV8slQIxuz0lS0RbEI/+c9jWxKqcSrb0zCEgoL+HEdGaElTRENPhApPXZO+YlFZkg9NY9t+uGWCu2xPgSiR2fn44QzfWypxCq05G0fNRQRRIuMnpjkXlv66O/hju+xMTG1fVyKSKq5CA1bDdDn9euZ7Q6OAFsQX73hdYn6Q==" + ], + "suspended_at": "0001-01-01 00:00:00 +0000 UTC", + "updated_at": "2024-09-26 18:00:48 +0000 UTC", + "username": "gomez385" + }, + "sensitive_values": { + "gpg_keys": [], + "ssh_keys": [ + false, + false + ] + } + }, + { + "address": "module.repo_list[\"terraform-git-workspace\"].github_repository.repo", + "mode": "managed", + "type": "github_repository", + "name": "repo", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 1, + "values": { + "allow_auto_merge": false, + "allow_merge_commit": false, + "allow_rebase_merge": false, + "allow_squash_merge": true, + "allow_update_branch": false, + "archive_on_destroy": true, + "archived": false, + "auto_init": true, + "default_branch": "main", + "delete_branch_on_merge": true, + "description": "Module for attaching Actions and Environments to target repos", + "etag": "W/\"dfe72e764a5d07c3b0ebf3273c8c06363b1d9fd7dcaaff53472653ff4773c79c\"", + "full_name": "CSVD/terraform-git-workspace", + "git_clone_url": "git://github.e.it.census.gov/CSVD/terraform-git-workspace.git", + "gitignore_template": "", + "has_discussions": false, + "has_downloads": false, + "has_issues": true, + "has_projects": true, + "has_wiki": true, + "homepage_url": "", + "html_url": "https://github.e.it.census.gov/CSVD/terraform-git-workspace", + "http_clone_url": "https://github.e.it.census.gov/CSVD/terraform-git-workspace.git", + "id": "terraform-git-workspace", + "ignore_vulnerability_alerts_during_read": null, + "is_template": false, + "license_template": null, + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "name": "terraform-git-workspace", + "node_id": "MDEwOlJlcG9zaXRvcnkxMDg5", + "pages": [], + "primary_language": "", + "private": false, + "repo_id": 1089, + "security_and_analysis": [ + { + "advanced_security": [ + { + "status": "disabled" + } + ], + "secret_scanning": [ + { + "status": "disabled" + } + ], + "secret_scanning_push_protection": [ + { + "status": "disabled" + } + ] + } + ], + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "ssh_clone_url": "git@github.e.it.census.gov:CSVD/terraform-git-workspace.git", + "svn_url": "https://github.e.it.census.gov/CSVD/terraform-git-workspace", + "template": [], + "topics": [ + "github-actions", + "terraform-tools" + ], + "visibility": "public", + "vulnerability_alerts": false, + "web_commit_signoff_required": false + }, + "sensitive_values": { + "pages": [], + "security_and_analysis": [ + { + "advanced_security": [ + {} + ], + "secret_scanning": [ + {} + ], + "secret_scanning_push_protection": [ + {} + ] + } + ], + "template": [], + "topics": [ + false, + false + ] + } + }, + { + "address": "module.repo_list[\"terraform-git-workspace\"].github_repository_collaborator.collaborators[\"gomez385\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "gomez385", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "terraform-git-workspace:gomez385", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "terraform-git-workspace", + "username": "gomez385" + }, + "sensitive_values": {}, + "depends_on": [ + "module.repo_list.github_repository.repo" + ] + }, + { + "address": "module.repo_list[\"terraform-git-workspace\"].github_repository_collaborator.collaborators[\"morga471\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "morga471", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "terraform-git-workspace:morga471", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "terraform-git-workspace", + "username": "morga471" + }, + "sensitive_values": {}, + "depends_on": [ + "module.repo_list.github_repository.repo" + ] + }, + { + "address": "module.repo_list[\"terraform-git-workspace\"].github_repository_collaborator.collaborators[\"naray007\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "naray007", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "terraform-git-workspace:naray007", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "terraform-git-workspace", + "username": "naray007" + }, + "sensitive_values": {}, + "depends_on": [ + "module.repo_list.github_repository.repo" + ] + } + ], + "address": "module.repo_list[\"terraform-git-workspace\"]" + }, + { + "resources": [ + { + "address": "module.repo_list[\"terraform-github-repo\"].data.github_user.pull_request_bypassers[\"arnol377\"]", + "mode": "data", + "type": "github_user", + "name": "pull_request_bypassers", + "index": "arnol377", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "avatar_url": "https://github.e.it.census.gov/avatars/u/549?", + "bio": "", + "blog": "", + "company": "", + "created_at": "2023-12-26 17:20:24 +0000 UTC", + "email": "", + "followers": 0, + "following": 0, + "gpg_keys": [], + "gravatar_id": "", + "id": "549", + "location": "", + "login": "arnol377", + "name": "David John Arnold Jr", + "node_id": "MDQ6VXNlcjU0OQ==", + "public_gists": 0, + "public_repos": 4, + "site_admin": false, + "ssh_keys": [ + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDBL3xJ3zSxE6Qv8k9b06oFB4dbq2+PiOmsnIfAgL2XZpEenD03jhCF28iAZVy9oovuBCbcyAE9BjTRdWFSjd1dmHthbGe5Jv0/DweNFB/YmX6wJ6knljTA3frkY9bVS9+rqY6N4GG3oG6lyyk7cBaUEagXF4VQQJqX4l7XG1xxUfKLFFhF3Lq+CDg39FwlKk+QxIWMrbRJdpRBDZ03VZnKcgP0m/5K8PrcyGbxOK8qeVREUaqvmQN2Rs4LD1REPZyr3GQ2gtgpqrJ3hym7TwJw3Xl5NW8Y7RAeENem2K3EKoq6qq/wB/YUqMhKD228w5J6B+CoI8nvDqAWZkNAz/uY/GJe4elRJCmFH2F+r3263R5oDnXWSluB7XIm3b+Xt24F8MwoltejSEma41c8FM/xbF3Kle8ofBGFPEXpNDAxICVbyZ6OE4TyqTGKA8xgg9vnR3hCGGERtLYHhPw0aVHY7Zew/6/QV9o6/reO96V92zpXVEpvO09Z40fvTd5cN68=", + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDXRnBg+dayTonnZY3i0dDEHXUFMhcJKtqiFO7Oe/ejasDeW2I+L0f1gg+7u1ms/g8E28/RARN3R1aMnbGvXWdP/yBrhtpWJc5TXK+f33S5lYYjptJ2F6vj7jiRU7pP4uL9wqknj0DoSD0krAEbA85mBJgIV1viL8ZBtT/8iBoD6kHGRXaHpRH5sIFaURRJCcUTJhdqMUPd6bYKE/Bc6ioQLAEow0JB4ju1jPa7fOxhgVrIYxRiMkismhR0WLopB5JxyYDNmIyjUL2vGt9Kpd41DELv+Pn7EaP2HLjubVruWFnxnhZ7nvQwMonnZvjD3f5yPkDUkWnwaVGqw8cm9PFM4buFRmGpsl8YqTFakYgqc+JVDQB8bb9a9sr5/6Hbn41VcXd+KV6dTMK4PKSQFKLaq54ExzlwnE/EHnduE8JgvsfAa316/etFlzTQOBv1KbL8RKK0/vy6wJpiK9laDbymsOJPjZekoc/TD1AIvfWF9oae6wAU86tBVGdEO/JMOMc=", + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCvlUlp/OjFsa4fINqqMXukveo+mCu0Ywp0wwVCURkfJpPFPMdmbp07WlULCX6VgmqH4joCA+LUyY+q6iBZw80lS66lpDcRHMTG4PV7IsPpoYN20bUnm30vdqug/P1wVDuOO9B83+s3QFeBl9WbHQB3YY5pBulZGLIGw26qrLwfM5UJ4P/Ffca7ca9PM7KEkwqOC9xMfJy3tFkzD2Rjo2AHN9s7xHtpf95m8MzToy1Q7ykU/8bhImOrkZKaJJtIfmykYhebKDpeETEWJiyyaubIl71KAsWacrvQnEfo2fe62kR3SGv2auPDxMaGKPqtDpe2e/Y9I85Fv3tfWk53DDFoZNzExT4jc825bCqqz2DBbz4Q/Miw3rcdHx7uaRHinEJsBveNhZSH31GMLtU/dVNF3TNhlEH62Zmjgu7IpWb6Tr/4KnLjf/0p7ye34jP49nv1iBj99j3p1hwgAGU56ag4j7TW/iMh+uH+pg1hm6xZjhFInZGzQqtMl/qjBlr1oJ8=", + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCNVaIVHzjCkmCyQnpHfgLLvPtc96PVg/+8/cT2ty6TFe3ALaZJSHTWXjOPJaSkhBef2PCmbcsd3+p+QDl87nRl9O5fV376mrGwsxlpI2a1FnzpBkAEpZ2KyE4B593xGlpmvrMOF9gY4qGdNHCXw2puZ/IkmYaiROYpL2ptiSfTGc1R/ZrEvs0fhYwyi4xYfb+iGVSvjhhTqzJYNW6IBmMZVbDCdYX+JvSKsZYydnkHg7d9QJORZ3TnPe3Tmnn+PAse9V0z9VKOScfoRNT+Co9ezLGWNY+Dnnwg0jouA76/CiIIjWunJzLsIeu7cqNwubKO8lsLX9O+6zKR46EEaVr1VoC395IPvBy8x+VWUSpI+M7GLh0iPE56EvwiVm8irTkmY6WPsQ8PMJ5IWZE/OA6w6fupiSgBd5myFpB/wa8yVdY+UPfh40HpEXt0+iPeWK9kz/fJQAgow/FJAAsnI65JdVP4woAUYnmoJ0l6qgDyFQbOxcq7NZdmedHtRz049hM=" + ], + "suspended_at": "0001-01-01 00:00:00 +0000 UTC", + "updated_at": "2024-09-19 17:49:11 +0000 UTC", + "username": "arnol377" + }, + "sensitive_values": { + "gpg_keys": [], + "ssh_keys": [ + false, + false, + false, + false + ] + } + }, + { + "address": "module.repo_list[\"terraform-github-repo\"].data.github_user.pull_request_bypassers[\"gomez385\"]", + "mode": "data", + "type": "github_user", + "name": "pull_request_bypassers", + "index": "gomez385", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "avatar_url": "https://github.e.it.census.gov/avatars/u/603?", + "bio": "", + "blog": "", + "company": "", + "created_at": "2024-06-13 14:57:04 +0000 UTC", + "email": "", + "followers": 0, + "following": 1, + "gpg_keys": [], + "gravatar_id": "", + "id": "603", + "location": "", + "login": "gomez385", + "name": "James Farr Gomez", + "node_id": "MDQ6VXNlcjYwMw==", + "public_gists": 0, + "public_repos": 0, + "site_admin": false, + "ssh_keys": [ + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDuGCb6WHZ8kex7gawtk2pmHd8t77HQ0LE+7sanVKoC5cWC/7RlefKBuH5c8F2RmmB1EaVFT2ylCsR0qnPT8xGH7gjrkRs/B8LAcwvXifev1BkPSE1gJT+lQpnwPkfqBuCbsewOR1XyPqQt5SZh4a9w7GDvBsfO2Ate9ADtX0nsI76t2DURR32ptBKnN2TtYqnD5D3VKV2lhiI2tnz8sO5FZzYycCONsv570N/itwT34gKSLVRsj+0YmPjmOU+7JWpXxdtjocw06ZEGnSyInIH4VJVROE0p3Z63xHQ9fxDtnW71zf0a9UeoY5Vb/b7PbK4NF3Dp9gG8iaL9dqeiZ1XTCcXHDyHGVFej3sl0CkB+BQ/Gz9ZCqkSBcA+n9WA5KclNuOMwe4eLXRwg/gxxmAJB707gXUk+nSPGwYTObtm0+lfspCNQxAFry8gX39mdVqnaCz1agzmwZo7rRls+BZPfDPg3YUkB3v9P8y/cbO6Bn5IRmYB2KQ73E7X8QJcW0+E=", + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQDROzDzCBisy3+PvtvvCt7XxuEpNAwBS6SoK2wKJNnGgYPs8zInboOVZWqRXujOWOySPCloBfYU5B2eg94cVoDnTnc9dArWhBOK0aY93XM7/0s3/01w3Kkyi25oJytr0NRI8liZq6DnF9hFiqxRVcJkoS4+I9t9G3MURjVbcNY10+bIs6Dp9sbnJaJEWvvsbAiz1WdZBAsF3eW20mNkzmQtYoASHWv3AD/j+xLRYvx2sVcPXIGQ4fw3FqQIUOkbVQUW2lCBp+BVZgR1U4dKh5lejddxd7bXblWxJ5qqWPXulqCnUrJBBTWxTPrUxBzcZtxLAj8C04PyZPJYWVVbhuxkMgA7VeUHeZ/iFT6LZeqVtwTDlEPCzShCdIC0JWKzxI+I663YeSf2y1Jh3qT/R+e0qcduEmL3bdE+PyyvQks8WCXVfXtJeHQfkPKcy9gARpQScY/6vSyZbJNfIW1VagCCRZp54AzOlhKTUy2r97zlrzB9gBPU2ycbmLFYOglVrw6Fo6ECV8slQIxuz0lS0RbEI/+c9jWxKqcSrb0zCEgoL+HEdGaElTRENPhApPXZO+YlFZkg9NY9t+uGWCu2xPgSiR2fn44QzfWypxCq05G0fNRQRRIuMnpjkXlv66O/hju+xMTG1fVyKSKq5CA1bDdDn9euZ7Q6OAFsQX73hdYn6Q==" + ], + "suspended_at": "0001-01-01 00:00:00 +0000 UTC", + "updated_at": "2024-09-26 18:00:48 +0000 UTC", + "username": "gomez385" + }, + "sensitive_values": { + "gpg_keys": [], + "ssh_keys": [ + false, + false + ] + } + }, + { + "address": "module.repo_list[\"terraform-github-repo\"].github_repository.repo", + "mode": "managed", + "type": "github_repository", + "name": "repo", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 1, + "values": { + "allow_auto_merge": false, + "allow_merge_commit": false, + "allow_rebase_merge": false, + "allow_squash_merge": true, + "allow_update_branch": false, + "archive_on_destroy": true, + "archived": false, + "auto_init": true, + "default_branch": "main", + "delete_branch_on_merge": true, + "description": "Terraform Module for managing github repos", + "etag": "W/\"b59ca23ac93011042ccdc97599b7b04e1574c44cde667aedce680a8f9124082c\"", + "full_name": "CSVD/terraform-github-repo", + "git_clone_url": "git://github.e.it.census.gov/CSVD/terraform-github-repo.git", + "gitignore_template": "", + "has_discussions": false, + "has_downloads": false, + "has_issues": true, + "has_projects": true, + "has_wiki": true, + "homepage_url": "", + "html_url": "https://github.e.it.census.gov/CSVD/terraform-github-repo", + "http_clone_url": "https://github.e.it.census.gov/CSVD/terraform-github-repo.git", + "id": "terraform-github-repo", + "ignore_vulnerability_alerts_during_read": null, + "is_template": false, + "license_template": null, + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "name": "terraform-github-repo", + "node_id": "MDEwOlJlcG9zaXRvcnk5ODI=", + "pages": [], + "primary_language": "HCL", + "private": true, + "repo_id": 982, + "security_and_analysis": [ + { + "advanced_security": [ + { + "status": "disabled" + } + ], + "secret_scanning": [ + { + "status": "disabled" + } + ], + "secret_scanning_push_protection": [ + { + "status": "disabled" + } + ] + } + ], + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "ssh_clone_url": "git@github.e.it.census.gov:CSVD/terraform-github-repo.git", + "svn_url": "https://github.e.it.census.gov/CSVD/terraform-github-repo", + "template": [], + "topics": [ + "terraform" + ], + "visibility": "private", + "vulnerability_alerts": false, + "web_commit_signoff_required": false + }, + "sensitive_values": { + "pages": [], + "security_and_analysis": [ + { + "advanced_security": [ + {} + ], + "secret_scanning": [ + {} + ], + "secret_scanning_push_protection": [ + {} + ] + } + ], + "template": [], + "topics": [ + false + ] + } + }, + { + "address": "module.repo_list[\"terraform-github-repo\"].github_repository_collaborator.collaborators[\"gomez385\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "gomez385", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "terraform-github-repo:gomez385", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "terraform-github-repo", + "username": "gomez385" + }, + "sensitive_values": {}, + "depends_on": [ + "module.repo_list.github_repository.repo" + ] + }, + { + "address": "module.repo_list[\"terraform-github-repo\"].github_repository_collaborator.collaborators[\"morga471\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "morga471", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "terraform-github-repo:morga471", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "terraform-github-repo", + "username": "morga471" + }, + "sensitive_values": {}, + "depends_on": [ + "module.repo_list.github_repository.repo" + ] + }, + { + "address": "module.repo_list[\"terraform-github-repo\"].github_repository_collaborator.collaborators[\"naray007\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "naray007", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "terraform-github-repo:naray007", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "terraform-github-repo", + "username": "naray007" + }, + "sensitive_values": {}, + "depends_on": [ + "module.repo_list.github_repository.repo" + ] + } + ], + "address": "module.repo_list[\"terraform-github-repo\"]" + }, + { + "resources": [ + { + "address": "module.repo_list[\"terraform-morpheus-alb\"].data.github_user.pull_request_bypassers[\"arnol377\"]", + "mode": "data", + "type": "github_user", + "name": "pull_request_bypassers", + "index": "arnol377", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "avatar_url": "https://github.e.it.census.gov/avatars/u/549?", + "bio": "", + "blog": "", + "company": "", + "created_at": "2023-12-26 17:20:24 +0000 UTC", + "email": "", + "followers": 0, + "following": 0, + "gpg_keys": [], + "gravatar_id": "", + "id": "549", + "location": "", + "login": "arnol377", + "name": "David John Arnold Jr", + "node_id": "MDQ6VXNlcjU0OQ==", + "public_gists": 0, + "public_repos": 4, + "site_admin": false, + "ssh_keys": [ + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDBL3xJ3zSxE6Qv8k9b06oFB4dbq2+PiOmsnIfAgL2XZpEenD03jhCF28iAZVy9oovuBCbcyAE9BjTRdWFSjd1dmHthbGe5Jv0/DweNFB/YmX6wJ6knljTA3frkY9bVS9+rqY6N4GG3oG6lyyk7cBaUEagXF4VQQJqX4l7XG1xxUfKLFFhF3Lq+CDg39FwlKk+QxIWMrbRJdpRBDZ03VZnKcgP0m/5K8PrcyGbxOK8qeVREUaqvmQN2Rs4LD1REPZyr3GQ2gtgpqrJ3hym7TwJw3Xl5NW8Y7RAeENem2K3EKoq6qq/wB/YUqMhKD228w5J6B+CoI8nvDqAWZkNAz/uY/GJe4elRJCmFH2F+r3263R5oDnXWSluB7XIm3b+Xt24F8MwoltejSEma41c8FM/xbF3Kle8ofBGFPEXpNDAxICVbyZ6OE4TyqTGKA8xgg9vnR3hCGGERtLYHhPw0aVHY7Zew/6/QV9o6/reO96V92zpXVEpvO09Z40fvTd5cN68=", + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDXRnBg+dayTonnZY3i0dDEHXUFMhcJKtqiFO7Oe/ejasDeW2I+L0f1gg+7u1ms/g8E28/RARN3R1aMnbGvXWdP/yBrhtpWJc5TXK+f33S5lYYjptJ2F6vj7jiRU7pP4uL9wqknj0DoSD0krAEbA85mBJgIV1viL8ZBtT/8iBoD6kHGRXaHpRH5sIFaURRJCcUTJhdqMUPd6bYKE/Bc6ioQLAEow0JB4ju1jPa7fOxhgVrIYxRiMkismhR0WLopB5JxyYDNmIyjUL2vGt9Kpd41DELv+Pn7EaP2HLjubVruWFnxnhZ7nvQwMonnZvjD3f5yPkDUkWnwaVGqw8cm9PFM4buFRmGpsl8YqTFakYgqc+JVDQB8bb9a9sr5/6Hbn41VcXd+KV6dTMK4PKSQFKLaq54ExzlwnE/EHnduE8JgvsfAa316/etFlzTQOBv1KbL8RKK0/vy6wJpiK9laDbymsOJPjZekoc/TD1AIvfWF9oae6wAU86tBVGdEO/JMOMc=", + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCvlUlp/OjFsa4fINqqMXukveo+mCu0Ywp0wwVCURkfJpPFPMdmbp07WlULCX6VgmqH4joCA+LUyY+q6iBZw80lS66lpDcRHMTG4PV7IsPpoYN20bUnm30vdqug/P1wVDuOO9B83+s3QFeBl9WbHQB3YY5pBulZGLIGw26qrLwfM5UJ4P/Ffca7ca9PM7KEkwqOC9xMfJy3tFkzD2Rjo2AHN9s7xHtpf95m8MzToy1Q7ykU/8bhImOrkZKaJJtIfmykYhebKDpeETEWJiyyaubIl71KAsWacrvQnEfo2fe62kR3SGv2auPDxMaGKPqtDpe2e/Y9I85Fv3tfWk53DDFoZNzExT4jc825bCqqz2DBbz4Q/Miw3rcdHx7uaRHinEJsBveNhZSH31GMLtU/dVNF3TNhlEH62Zmjgu7IpWb6Tr/4KnLjf/0p7ye34jP49nv1iBj99j3p1hwgAGU56ag4j7TW/iMh+uH+pg1hm6xZjhFInZGzQqtMl/qjBlr1oJ8=", + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCNVaIVHzjCkmCyQnpHfgLLvPtc96PVg/+8/cT2ty6TFe3ALaZJSHTWXjOPJaSkhBef2PCmbcsd3+p+QDl87nRl9O5fV376mrGwsxlpI2a1FnzpBkAEpZ2KyE4B593xGlpmvrMOF9gY4qGdNHCXw2puZ/IkmYaiROYpL2ptiSfTGc1R/ZrEvs0fhYwyi4xYfb+iGVSvjhhTqzJYNW6IBmMZVbDCdYX+JvSKsZYydnkHg7d9QJORZ3TnPe3Tmnn+PAse9V0z9VKOScfoRNT+Co9ezLGWNY+Dnnwg0jouA76/CiIIjWunJzLsIeu7cqNwubKO8lsLX9O+6zKR46EEaVr1VoC395IPvBy8x+VWUSpI+M7GLh0iPE56EvwiVm8irTkmY6WPsQ8PMJ5IWZE/OA6w6fupiSgBd5myFpB/wa8yVdY+UPfh40HpEXt0+iPeWK9kz/fJQAgow/FJAAsnI65JdVP4woAUYnmoJ0l6qgDyFQbOxcq7NZdmedHtRz049hM=" + ], + "suspended_at": "0001-01-01 00:00:00 +0000 UTC", + "updated_at": "2024-09-19 17:49:11 +0000 UTC", + "username": "arnol377" + }, + "sensitive_values": { + "gpg_keys": [], + "ssh_keys": [ + false, + false, + false, + false + ] + } + }, + { + "address": "module.repo_list[\"terraform-morpheus-alb\"].data.github_user.pull_request_bypassers[\"gomez385\"]", + "mode": "data", + "type": "github_user", + "name": "pull_request_bypassers", + "index": "gomez385", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "avatar_url": "https://github.e.it.census.gov/avatars/u/603?", + "bio": "", + "blog": "", + "company": "", + "created_at": "2024-06-13 14:57:04 +0000 UTC", + "email": "", + "followers": 0, + "following": 1, + "gpg_keys": [], + "gravatar_id": "", + "id": "603", + "location": "", + "login": "gomez385", + "name": "James Farr Gomez", + "node_id": "MDQ6VXNlcjYwMw==", + "public_gists": 0, + "public_repos": 0, + "site_admin": false, + "ssh_keys": [ + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDuGCb6WHZ8kex7gawtk2pmHd8t77HQ0LE+7sanVKoC5cWC/7RlefKBuH5c8F2RmmB1EaVFT2ylCsR0qnPT8xGH7gjrkRs/B8LAcwvXifev1BkPSE1gJT+lQpnwPkfqBuCbsewOR1XyPqQt5SZh4a9w7GDvBsfO2Ate9ADtX0nsI76t2DURR32ptBKnN2TtYqnD5D3VKV2lhiI2tnz8sO5FZzYycCONsv570N/itwT34gKSLVRsj+0YmPjmOU+7JWpXxdtjocw06ZEGnSyInIH4VJVROE0p3Z63xHQ9fxDtnW71zf0a9UeoY5Vb/b7PbK4NF3Dp9gG8iaL9dqeiZ1XTCcXHDyHGVFej3sl0CkB+BQ/Gz9ZCqkSBcA+n9WA5KclNuOMwe4eLXRwg/gxxmAJB707gXUk+nSPGwYTObtm0+lfspCNQxAFry8gX39mdVqnaCz1agzmwZo7rRls+BZPfDPg3YUkB3v9P8y/cbO6Bn5IRmYB2KQ73E7X8QJcW0+E=", + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQDROzDzCBisy3+PvtvvCt7XxuEpNAwBS6SoK2wKJNnGgYPs8zInboOVZWqRXujOWOySPCloBfYU5B2eg94cVoDnTnc9dArWhBOK0aY93XM7/0s3/01w3Kkyi25oJytr0NRI8liZq6DnF9hFiqxRVcJkoS4+I9t9G3MURjVbcNY10+bIs6Dp9sbnJaJEWvvsbAiz1WdZBAsF3eW20mNkzmQtYoASHWv3AD/j+xLRYvx2sVcPXIGQ4fw3FqQIUOkbVQUW2lCBp+BVZgR1U4dKh5lejddxd7bXblWxJ5qqWPXulqCnUrJBBTWxTPrUxBzcZtxLAj8C04PyZPJYWVVbhuxkMgA7VeUHeZ/iFT6LZeqVtwTDlEPCzShCdIC0JWKzxI+I663YeSf2y1Jh3qT/R+e0qcduEmL3bdE+PyyvQks8WCXVfXtJeHQfkPKcy9gARpQScY/6vSyZbJNfIW1VagCCRZp54AzOlhKTUy2r97zlrzB9gBPU2ycbmLFYOglVrw6Fo6ECV8slQIxuz0lS0RbEI/+c9jWxKqcSrb0zCEgoL+HEdGaElTRENPhApPXZO+YlFZkg9NY9t+uGWCu2xPgSiR2fn44QzfWypxCq05G0fNRQRRIuMnpjkXlv66O/hju+xMTG1fVyKSKq5CA1bDdDn9euZ7Q6OAFsQX73hdYn6Q==" + ], + "suspended_at": "0001-01-01 00:00:00 +0000 UTC", + "updated_at": "2024-09-26 18:00:48 +0000 UTC", + "username": "gomez385" + }, + "sensitive_values": { + "gpg_keys": [], + "ssh_keys": [ + false, + false + ] + } + }, + { + "address": "module.repo_list[\"terraform-morpheus-alb\"].github_repository.repo", + "mode": "managed", + "type": "github_repository", + "name": "repo", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 1, + "values": { + "allow_auto_merge": false, + "allow_merge_commit": false, + "allow_rebase_merge": false, + "allow_squash_merge": true, + "allow_update_branch": false, + "archive_on_destroy": true, + "archived": false, + "auto_init": true, + "default_branch": "main", + "delete_branch_on_merge": true, + "description": "Terraform module repo for terraform-morpheus-loadbalancer", + "etag": "W/\"5ac40458ec174f1e17c850368df7158b96f6227660684dbe5a70d788a848e1ba\"", + "full_name": "CSVD/terraform-morpheus-alb", + "git_clone_url": "git://github.e.it.census.gov/CSVD/terraform-morpheus-alb.git", + "gitignore_template": "", + "has_discussions": false, + "has_downloads": false, + "has_issues": true, + "has_projects": true, + "has_wiki": true, + "homepage_url": "", + "html_url": "https://github.e.it.census.gov/CSVD/terraform-morpheus-alb", + "http_clone_url": "https://github.e.it.census.gov/CSVD/terraform-morpheus-alb.git", + "id": "terraform-morpheus-alb", + "ignore_vulnerability_alerts_during_read": null, + "is_template": false, + "license_template": null, + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "name": "terraform-morpheus-alb", + "node_id": "MDEwOlJlcG9zaXRvcnkxMTQz", + "pages": [], + "primary_language": "HCL", + "private": false, + "repo_id": 1143, + "security_and_analysis": [ + { + "advanced_security": [ + { + "status": "disabled" + } + ], + "secret_scanning": [ + { + "status": "disabled" + } + ], + "secret_scanning_push_protection": [ + { + "status": "disabled" + } + ] + } + ], + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "ssh_clone_url": "git@github.e.it.census.gov:CSVD/terraform-morpheus-alb.git", + "svn_url": "https://github.e.it.census.gov/CSVD/terraform-morpheus-alb", + "template": [], + "topics": [ + "morpheus-infra" + ], + "visibility": "public", + "vulnerability_alerts": false, + "web_commit_signoff_required": false + }, + "sensitive_values": { + "pages": [], + "security_and_analysis": [ + { + "advanced_security": [ + {} + ], + "secret_scanning": [ + {} + ], + "secret_scanning_push_protection": [ + {} + ] + } + ], + "template": [], + "topics": [ + false + ] + } + }, + { + "address": "module.repo_list[\"terraform-morpheus-alb\"].github_repository_collaborator.collaborators[\"gomez385\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "gomez385", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "terraform-morpheus-alb:gomez385", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "terraform-morpheus-alb", + "username": "gomez385" + }, + "sensitive_values": {}, + "depends_on": [ + "module.repo_list.github_repository.repo" + ] + }, + { + "address": "module.repo_list[\"terraform-morpheus-alb\"].github_repository_collaborator.collaborators[\"morga471\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "morga471", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "terraform-morpheus-alb:morga471", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "terraform-morpheus-alb", + "username": "morga471" + }, + "sensitive_values": {}, + "depends_on": [ + "module.repo_list.github_repository.repo" + ] + }, + { + "address": "module.repo_list[\"terraform-morpheus-alb\"].github_repository_collaborator.collaborators[\"naray007\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "naray007", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "terraform-morpheus-alb:naray007", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "terraform-morpheus-alb", + "username": "naray007" + }, + "sensitive_values": {}, + "depends_on": [ + "module.repo_list.github_repository.repo" + ] + } + ], + "address": "module.repo_list[\"terraform-morpheus-alb\"]" + }, + { + "resources": [ + { + "address": "module.repo_list[\"terraform-morpheus-cluster\"].data.github_user.pull_request_bypassers[\"arnol377\"]", + "mode": "data", + "type": "github_user", + "name": "pull_request_bypassers", + "index": "arnol377", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "avatar_url": "https://github.e.it.census.gov/avatars/u/549?", + "bio": "", + "blog": "", + "company": "", + "created_at": "2023-12-26 17:20:24 +0000 UTC", + "email": "", + "followers": 0, + "following": 0, + "gpg_keys": [], + "gravatar_id": "", + "id": "549", + "location": "", + "login": "arnol377", + "name": "David John Arnold Jr", + "node_id": "MDQ6VXNlcjU0OQ==", + "public_gists": 0, + "public_repos": 4, + "site_admin": false, + "ssh_keys": [ + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDBL3xJ3zSxE6Qv8k9b06oFB4dbq2+PiOmsnIfAgL2XZpEenD03jhCF28iAZVy9oovuBCbcyAE9BjTRdWFSjd1dmHthbGe5Jv0/DweNFB/YmX6wJ6knljTA3frkY9bVS9+rqY6N4GG3oG6lyyk7cBaUEagXF4VQQJqX4l7XG1xxUfKLFFhF3Lq+CDg39FwlKk+QxIWMrbRJdpRBDZ03VZnKcgP0m/5K8PrcyGbxOK8qeVREUaqvmQN2Rs4LD1REPZyr3GQ2gtgpqrJ3hym7TwJw3Xl5NW8Y7RAeENem2K3EKoq6qq/wB/YUqMhKD228w5J6B+CoI8nvDqAWZkNAz/uY/GJe4elRJCmFH2F+r3263R5oDnXWSluB7XIm3b+Xt24F8MwoltejSEma41c8FM/xbF3Kle8ofBGFPEXpNDAxICVbyZ6OE4TyqTGKA8xgg9vnR3hCGGERtLYHhPw0aVHY7Zew/6/QV9o6/reO96V92zpXVEpvO09Z40fvTd5cN68=", + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDXRnBg+dayTonnZY3i0dDEHXUFMhcJKtqiFO7Oe/ejasDeW2I+L0f1gg+7u1ms/g8E28/RARN3R1aMnbGvXWdP/yBrhtpWJc5TXK+f33S5lYYjptJ2F6vj7jiRU7pP4uL9wqknj0DoSD0krAEbA85mBJgIV1viL8ZBtT/8iBoD6kHGRXaHpRH5sIFaURRJCcUTJhdqMUPd6bYKE/Bc6ioQLAEow0JB4ju1jPa7fOxhgVrIYxRiMkismhR0WLopB5JxyYDNmIyjUL2vGt9Kpd41DELv+Pn7EaP2HLjubVruWFnxnhZ7nvQwMonnZvjD3f5yPkDUkWnwaVGqw8cm9PFM4buFRmGpsl8YqTFakYgqc+JVDQB8bb9a9sr5/6Hbn41VcXd+KV6dTMK4PKSQFKLaq54ExzlwnE/EHnduE8JgvsfAa316/etFlzTQOBv1KbL8RKK0/vy6wJpiK9laDbymsOJPjZekoc/TD1AIvfWF9oae6wAU86tBVGdEO/JMOMc=", + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCvlUlp/OjFsa4fINqqMXukveo+mCu0Ywp0wwVCURkfJpPFPMdmbp07WlULCX6VgmqH4joCA+LUyY+q6iBZw80lS66lpDcRHMTG4PV7IsPpoYN20bUnm30vdqug/P1wVDuOO9B83+s3QFeBl9WbHQB3YY5pBulZGLIGw26qrLwfM5UJ4P/Ffca7ca9PM7KEkwqOC9xMfJy3tFkzD2Rjo2AHN9s7xHtpf95m8MzToy1Q7ykU/8bhImOrkZKaJJtIfmykYhebKDpeETEWJiyyaubIl71KAsWacrvQnEfo2fe62kR3SGv2auPDxMaGKPqtDpe2e/Y9I85Fv3tfWk53DDFoZNzExT4jc825bCqqz2DBbz4Q/Miw3rcdHx7uaRHinEJsBveNhZSH31GMLtU/dVNF3TNhlEH62Zmjgu7IpWb6Tr/4KnLjf/0p7ye34jP49nv1iBj99j3p1hwgAGU56ag4j7TW/iMh+uH+pg1hm6xZjhFInZGzQqtMl/qjBlr1oJ8=", + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCNVaIVHzjCkmCyQnpHfgLLvPtc96PVg/+8/cT2ty6TFe3ALaZJSHTWXjOPJaSkhBef2PCmbcsd3+p+QDl87nRl9O5fV376mrGwsxlpI2a1FnzpBkAEpZ2KyE4B593xGlpmvrMOF9gY4qGdNHCXw2puZ/IkmYaiROYpL2ptiSfTGc1R/ZrEvs0fhYwyi4xYfb+iGVSvjhhTqzJYNW6IBmMZVbDCdYX+JvSKsZYydnkHg7d9QJORZ3TnPe3Tmnn+PAse9V0z9VKOScfoRNT+Co9ezLGWNY+Dnnwg0jouA76/CiIIjWunJzLsIeu7cqNwubKO8lsLX9O+6zKR46EEaVr1VoC395IPvBy8x+VWUSpI+M7GLh0iPE56EvwiVm8irTkmY6WPsQ8PMJ5IWZE/OA6w6fupiSgBd5myFpB/wa8yVdY+UPfh40HpEXt0+iPeWK9kz/fJQAgow/FJAAsnI65JdVP4woAUYnmoJ0l6qgDyFQbOxcq7NZdmedHtRz049hM=" + ], + "suspended_at": "0001-01-01 00:00:00 +0000 UTC", + "updated_at": "2024-09-19 17:49:11 +0000 UTC", + "username": "arnol377" + }, + "sensitive_values": { + "gpg_keys": [], + "ssh_keys": [ + false, + false, + false, + false + ] + } + }, + { + "address": "module.repo_list[\"terraform-morpheus-cluster\"].data.github_user.pull_request_bypassers[\"gomez385\"]", + "mode": "data", + "type": "github_user", + "name": "pull_request_bypassers", + "index": "gomez385", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "avatar_url": "https://github.e.it.census.gov/avatars/u/603?", + "bio": "", + "blog": "", + "company": "", + "created_at": "2024-06-13 14:57:04 +0000 UTC", + "email": "", + "followers": 0, + "following": 1, + "gpg_keys": [], + "gravatar_id": "", + "id": "603", + "location": "", + "login": "gomez385", + "name": "James Farr Gomez", + "node_id": "MDQ6VXNlcjYwMw==", + "public_gists": 0, + "public_repos": 0, + "site_admin": false, + "ssh_keys": [ + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDuGCb6WHZ8kex7gawtk2pmHd8t77HQ0LE+7sanVKoC5cWC/7RlefKBuH5c8F2RmmB1EaVFT2ylCsR0qnPT8xGH7gjrkRs/B8LAcwvXifev1BkPSE1gJT+lQpnwPkfqBuCbsewOR1XyPqQt5SZh4a9w7GDvBsfO2Ate9ADtX0nsI76t2DURR32ptBKnN2TtYqnD5D3VKV2lhiI2tnz8sO5FZzYycCONsv570N/itwT34gKSLVRsj+0YmPjmOU+7JWpXxdtjocw06ZEGnSyInIH4VJVROE0p3Z63xHQ9fxDtnW71zf0a9UeoY5Vb/b7PbK4NF3Dp9gG8iaL9dqeiZ1XTCcXHDyHGVFej3sl0CkB+BQ/Gz9ZCqkSBcA+n9WA5KclNuOMwe4eLXRwg/gxxmAJB707gXUk+nSPGwYTObtm0+lfspCNQxAFry8gX39mdVqnaCz1agzmwZo7rRls+BZPfDPg3YUkB3v9P8y/cbO6Bn5IRmYB2KQ73E7X8QJcW0+E=", + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQDROzDzCBisy3+PvtvvCt7XxuEpNAwBS6SoK2wKJNnGgYPs8zInboOVZWqRXujOWOySPCloBfYU5B2eg94cVoDnTnc9dArWhBOK0aY93XM7/0s3/01w3Kkyi25oJytr0NRI8liZq6DnF9hFiqxRVcJkoS4+I9t9G3MURjVbcNY10+bIs6Dp9sbnJaJEWvvsbAiz1WdZBAsF3eW20mNkzmQtYoASHWv3AD/j+xLRYvx2sVcPXIGQ4fw3FqQIUOkbVQUW2lCBp+BVZgR1U4dKh5lejddxd7bXblWxJ5qqWPXulqCnUrJBBTWxTPrUxBzcZtxLAj8C04PyZPJYWVVbhuxkMgA7VeUHeZ/iFT6LZeqVtwTDlEPCzShCdIC0JWKzxI+I663YeSf2y1Jh3qT/R+e0qcduEmL3bdE+PyyvQks8WCXVfXtJeHQfkPKcy9gARpQScY/6vSyZbJNfIW1VagCCRZp54AzOlhKTUy2r97zlrzB9gBPU2ycbmLFYOglVrw6Fo6ECV8slQIxuz0lS0RbEI/+c9jWxKqcSrb0zCEgoL+HEdGaElTRENPhApPXZO+YlFZkg9NY9t+uGWCu2xPgSiR2fn44QzfWypxCq05G0fNRQRRIuMnpjkXlv66O/hju+xMTG1fVyKSKq5CA1bDdDn9euZ7Q6OAFsQX73hdYn6Q==" + ], + "suspended_at": "0001-01-01 00:00:00 +0000 UTC", + "updated_at": "2024-09-26 18:00:48 +0000 UTC", + "username": "gomez385" + }, + "sensitive_values": { + "gpg_keys": [], + "ssh_keys": [ + false, + false + ] + } + }, + { + "address": "module.repo_list[\"terraform-morpheus-cluster\"].github_repository.repo", + "mode": "managed", + "type": "github_repository", + "name": "repo", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 1, + "values": { + "allow_auto_merge": false, + "allow_merge_commit": false, + "allow_rebase_merge": false, + "allow_squash_merge": true, + "allow_update_branch": false, + "archive_on_destroy": true, + "archived": false, + "auto_init": true, + "default_branch": "main", + "delete_branch_on_merge": true, + "description": "Terraform module repo for terraform-morpheus-cluster", + "etag": "W/\"696f54fedd72fcf4d0e3879a434b34728c5bd11021f43ca734cb5c81d43379a1\"", + "full_name": "CSVD/terraform-morpheus-cluster", + "git_clone_url": "git://github.e.it.census.gov/CSVD/terraform-morpheus-cluster.git", + "gitignore_template": "", + "has_discussions": false, + "has_downloads": false, + "has_issues": true, + "has_projects": true, + "has_wiki": true, + "homepage_url": "", + "html_url": "https://github.e.it.census.gov/CSVD/terraform-morpheus-cluster", + "http_clone_url": "https://github.e.it.census.gov/CSVD/terraform-morpheus-cluster.git", + "id": "terraform-morpheus-cluster", + "ignore_vulnerability_alerts_during_read": null, + "is_template": false, + "license_template": null, + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "name": "terraform-morpheus-cluster", + "node_id": "MDEwOlJlcG9zaXRvcnkxMTQ0", + "pages": [], + "primary_language": "", + "private": false, + "repo_id": 1144, + "security_and_analysis": [ + { + "advanced_security": [ + { + "status": "disabled" + } + ], + "secret_scanning": [ + { + "status": "disabled" + } + ], + "secret_scanning_push_protection": [ + { + "status": "disabled" + } + ] + } + ], + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "ssh_clone_url": "git@github.e.it.census.gov:CSVD/terraform-morpheus-cluster.git", + "svn_url": "https://github.e.it.census.gov/CSVD/terraform-morpheus-cluster", + "template": [], + "topics": [ + "morpheus-infra" + ], + "visibility": "public", + "vulnerability_alerts": false, + "web_commit_signoff_required": false + }, + "sensitive_values": { + "pages": [], + "security_and_analysis": [ + { + "advanced_security": [ + {} + ], + "secret_scanning": [ + {} + ], + "secret_scanning_push_protection": [ + {} + ] + } + ], + "template": [], + "topics": [ + false + ] + } + }, + { + "address": "module.repo_list[\"terraform-morpheus-cluster\"].github_repository_collaborator.collaborators[\"gomez385\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "gomez385", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "terraform-morpheus-cluster:gomez385", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "terraform-morpheus-cluster", + "username": "gomez385" + }, + "sensitive_values": {}, + "depends_on": [ + "module.repo_list.github_repository.repo" + ] + }, + { + "address": "module.repo_list[\"terraform-morpheus-cluster\"].github_repository_collaborator.collaborators[\"morga471\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "morga471", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "terraform-morpheus-cluster:morga471", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "terraform-morpheus-cluster", + "username": "morga471" + }, + "sensitive_values": {}, + "depends_on": [ + "module.repo_list.github_repository.repo" + ] + }, + { + "address": "module.repo_list[\"terraform-morpheus-cluster\"].github_repository_collaborator.collaborators[\"naray007\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "naray007", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "terraform-morpheus-cluster:naray007", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "terraform-morpheus-cluster", + "username": "naray007" + }, + "sensitive_values": {}, + "depends_on": [ + "module.repo_list.github_repository.repo" + ] + } + ], + "address": "module.repo_list[\"terraform-morpheus-cluster\"]" + }, + { + "resources": [ + { + "address": "module.repo_list[\"terraform-morpheus-database\"].data.github_user.pull_request_bypassers[\"arnol377\"]", + "mode": "data", + "type": "github_user", + "name": "pull_request_bypassers", + "index": "arnol377", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "avatar_url": "https://github.e.it.census.gov/avatars/u/549?", + "bio": "", + "blog": "", + "company": "", + "created_at": "2023-12-26 17:20:24 +0000 UTC", + "email": "", + "followers": 0, + "following": 0, + "gpg_keys": [], + "gravatar_id": "", + "id": "549", + "location": "", + "login": "arnol377", + "name": "David John Arnold Jr", + "node_id": "MDQ6VXNlcjU0OQ==", + "public_gists": 0, + "public_repos": 4, + "site_admin": false, + "ssh_keys": [ + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDBL3xJ3zSxE6Qv8k9b06oFB4dbq2+PiOmsnIfAgL2XZpEenD03jhCF28iAZVy9oovuBCbcyAE9BjTRdWFSjd1dmHthbGe5Jv0/DweNFB/YmX6wJ6knljTA3frkY9bVS9+rqY6N4GG3oG6lyyk7cBaUEagXF4VQQJqX4l7XG1xxUfKLFFhF3Lq+CDg39FwlKk+QxIWMrbRJdpRBDZ03VZnKcgP0m/5K8PrcyGbxOK8qeVREUaqvmQN2Rs4LD1REPZyr3GQ2gtgpqrJ3hym7TwJw3Xl5NW8Y7RAeENem2K3EKoq6qq/wB/YUqMhKD228w5J6B+CoI8nvDqAWZkNAz/uY/GJe4elRJCmFH2F+r3263R5oDnXWSluB7XIm3b+Xt24F8MwoltejSEma41c8FM/xbF3Kle8ofBGFPEXpNDAxICVbyZ6OE4TyqTGKA8xgg9vnR3hCGGERtLYHhPw0aVHY7Zew/6/QV9o6/reO96V92zpXVEpvO09Z40fvTd5cN68=", + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDXRnBg+dayTonnZY3i0dDEHXUFMhcJKtqiFO7Oe/ejasDeW2I+L0f1gg+7u1ms/g8E28/RARN3R1aMnbGvXWdP/yBrhtpWJc5TXK+f33S5lYYjptJ2F6vj7jiRU7pP4uL9wqknj0DoSD0krAEbA85mBJgIV1viL8ZBtT/8iBoD6kHGRXaHpRH5sIFaURRJCcUTJhdqMUPd6bYKE/Bc6ioQLAEow0JB4ju1jPa7fOxhgVrIYxRiMkismhR0WLopB5JxyYDNmIyjUL2vGt9Kpd41DELv+Pn7EaP2HLjubVruWFnxnhZ7nvQwMonnZvjD3f5yPkDUkWnwaVGqw8cm9PFM4buFRmGpsl8YqTFakYgqc+JVDQB8bb9a9sr5/6Hbn41VcXd+KV6dTMK4PKSQFKLaq54ExzlwnE/EHnduE8JgvsfAa316/etFlzTQOBv1KbL8RKK0/vy6wJpiK9laDbymsOJPjZekoc/TD1AIvfWF9oae6wAU86tBVGdEO/JMOMc=", + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCvlUlp/OjFsa4fINqqMXukveo+mCu0Ywp0wwVCURkfJpPFPMdmbp07WlULCX6VgmqH4joCA+LUyY+q6iBZw80lS66lpDcRHMTG4PV7IsPpoYN20bUnm30vdqug/P1wVDuOO9B83+s3QFeBl9WbHQB3YY5pBulZGLIGw26qrLwfM5UJ4P/Ffca7ca9PM7KEkwqOC9xMfJy3tFkzD2Rjo2AHN9s7xHtpf95m8MzToy1Q7ykU/8bhImOrkZKaJJtIfmykYhebKDpeETEWJiyyaubIl71KAsWacrvQnEfo2fe62kR3SGv2auPDxMaGKPqtDpe2e/Y9I85Fv3tfWk53DDFoZNzExT4jc825bCqqz2DBbz4Q/Miw3rcdHx7uaRHinEJsBveNhZSH31GMLtU/dVNF3TNhlEH62Zmjgu7IpWb6Tr/4KnLjf/0p7ye34jP49nv1iBj99j3p1hwgAGU56ag4j7TW/iMh+uH+pg1hm6xZjhFInZGzQqtMl/qjBlr1oJ8=", + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCNVaIVHzjCkmCyQnpHfgLLvPtc96PVg/+8/cT2ty6TFe3ALaZJSHTWXjOPJaSkhBef2PCmbcsd3+p+QDl87nRl9O5fV376mrGwsxlpI2a1FnzpBkAEpZ2KyE4B593xGlpmvrMOF9gY4qGdNHCXw2puZ/IkmYaiROYpL2ptiSfTGc1R/ZrEvs0fhYwyi4xYfb+iGVSvjhhTqzJYNW6IBmMZVbDCdYX+JvSKsZYydnkHg7d9QJORZ3TnPe3Tmnn+PAse9V0z9VKOScfoRNT+Co9ezLGWNY+Dnnwg0jouA76/CiIIjWunJzLsIeu7cqNwubKO8lsLX9O+6zKR46EEaVr1VoC395IPvBy8x+VWUSpI+M7GLh0iPE56EvwiVm8irTkmY6WPsQ8PMJ5IWZE/OA6w6fupiSgBd5myFpB/wa8yVdY+UPfh40HpEXt0+iPeWK9kz/fJQAgow/FJAAsnI65JdVP4woAUYnmoJ0l6qgDyFQbOxcq7NZdmedHtRz049hM=" + ], + "suspended_at": "0001-01-01 00:00:00 +0000 UTC", + "updated_at": "2024-09-19 17:49:11 +0000 UTC", + "username": "arnol377" + }, + "sensitive_values": { + "gpg_keys": [], + "ssh_keys": [ + false, + false, + false, + false + ] + } + }, + { + "address": "module.repo_list[\"terraform-morpheus-database\"].data.github_user.pull_request_bypassers[\"gomez385\"]", + "mode": "data", + "type": "github_user", + "name": "pull_request_bypassers", + "index": "gomez385", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "avatar_url": "https://github.e.it.census.gov/avatars/u/603?", + "bio": "", + "blog": "", + "company": "", + "created_at": "2024-06-13 14:57:04 +0000 UTC", + "email": "", + "followers": 0, + "following": 1, + "gpg_keys": [], + "gravatar_id": "", + "id": "603", + "location": "", + "login": "gomez385", + "name": "James Farr Gomez", + "node_id": "MDQ6VXNlcjYwMw==", + "public_gists": 0, + "public_repos": 0, + "site_admin": false, + "ssh_keys": [ + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDuGCb6WHZ8kex7gawtk2pmHd8t77HQ0LE+7sanVKoC5cWC/7RlefKBuH5c8F2RmmB1EaVFT2ylCsR0qnPT8xGH7gjrkRs/B8LAcwvXifev1BkPSE1gJT+lQpnwPkfqBuCbsewOR1XyPqQt5SZh4a9w7GDvBsfO2Ate9ADtX0nsI76t2DURR32ptBKnN2TtYqnD5D3VKV2lhiI2tnz8sO5FZzYycCONsv570N/itwT34gKSLVRsj+0YmPjmOU+7JWpXxdtjocw06ZEGnSyInIH4VJVROE0p3Z63xHQ9fxDtnW71zf0a9UeoY5Vb/b7PbK4NF3Dp9gG8iaL9dqeiZ1XTCcXHDyHGVFej3sl0CkB+BQ/Gz9ZCqkSBcA+n9WA5KclNuOMwe4eLXRwg/gxxmAJB707gXUk+nSPGwYTObtm0+lfspCNQxAFry8gX39mdVqnaCz1agzmwZo7rRls+BZPfDPg3YUkB3v9P8y/cbO6Bn5IRmYB2KQ73E7X8QJcW0+E=", + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQDROzDzCBisy3+PvtvvCt7XxuEpNAwBS6SoK2wKJNnGgYPs8zInboOVZWqRXujOWOySPCloBfYU5B2eg94cVoDnTnc9dArWhBOK0aY93XM7/0s3/01w3Kkyi25oJytr0NRI8liZq6DnF9hFiqxRVcJkoS4+I9t9G3MURjVbcNY10+bIs6Dp9sbnJaJEWvvsbAiz1WdZBAsF3eW20mNkzmQtYoASHWv3AD/j+xLRYvx2sVcPXIGQ4fw3FqQIUOkbVQUW2lCBp+BVZgR1U4dKh5lejddxd7bXblWxJ5qqWPXulqCnUrJBBTWxTPrUxBzcZtxLAj8C04PyZPJYWVVbhuxkMgA7VeUHeZ/iFT6LZeqVtwTDlEPCzShCdIC0JWKzxI+I663YeSf2y1Jh3qT/R+e0qcduEmL3bdE+PyyvQks8WCXVfXtJeHQfkPKcy9gARpQScY/6vSyZbJNfIW1VagCCRZp54AzOlhKTUy2r97zlrzB9gBPU2ycbmLFYOglVrw6Fo6ECV8slQIxuz0lS0RbEI/+c9jWxKqcSrb0zCEgoL+HEdGaElTRENPhApPXZO+YlFZkg9NY9t+uGWCu2xPgSiR2fn44QzfWypxCq05G0fNRQRRIuMnpjkXlv66O/hju+xMTG1fVyKSKq5CA1bDdDn9euZ7Q6OAFsQX73hdYn6Q==" + ], + "suspended_at": "0001-01-01 00:00:00 +0000 UTC", + "updated_at": "2024-09-26 18:00:48 +0000 UTC", + "username": "gomez385" + }, + "sensitive_values": { + "gpg_keys": [], + "ssh_keys": [ + false, + false + ] + } + }, + { + "address": "module.repo_list[\"terraform-morpheus-database\"].github_repository.repo", + "mode": "managed", + "type": "github_repository", + "name": "repo", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 1, + "values": { + "allow_auto_merge": false, + "allow_merge_commit": false, + "allow_rebase_merge": false, + "allow_squash_merge": true, + "allow_update_branch": false, + "archive_on_destroy": true, + "archived": false, + "auto_init": true, + "default_branch": "main", + "delete_branch_on_merge": true, + "description": "Terraform module repo for terraform-morpheus-database", + "etag": "W/\"269d3d0fee90a1fabc292de936e831a794b4fd58606866ac6896951033af3737\"", + "full_name": "CSVD/terraform-morpheus-database", + "git_clone_url": "git://github.e.it.census.gov/CSVD/terraform-morpheus-database.git", + "gitignore_template": "", + "has_discussions": false, + "has_downloads": false, + "has_issues": true, + "has_projects": true, + "has_wiki": true, + "homepage_url": "", + "html_url": "https://github.e.it.census.gov/CSVD/terraform-morpheus-database", + "http_clone_url": "https://github.e.it.census.gov/CSVD/terraform-morpheus-database.git", + "id": "terraform-morpheus-database", + "ignore_vulnerability_alerts_during_read": null, + "is_template": false, + "license_template": null, + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "name": "terraform-morpheus-database", + "node_id": "MDEwOlJlcG9zaXRvcnkxMTM5", + "pages": [], + "primary_language": "", + "private": false, + "repo_id": 1139, + "security_and_analysis": [ + { + "advanced_security": [ + { + "status": "disabled" + } + ], + "secret_scanning": [ + { + "status": "disabled" + } + ], + "secret_scanning_push_protection": [ + { + "status": "disabled" + } + ] + } + ], + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "ssh_clone_url": "git@github.e.it.census.gov:CSVD/terraform-morpheus-database.git", + "svn_url": "https://github.e.it.census.gov/CSVD/terraform-morpheus-database", + "template": [], + "topics": [ + "morpheus-infra" + ], + "visibility": "public", + "vulnerability_alerts": false, + "web_commit_signoff_required": false + }, + "sensitive_values": { + "pages": [], + "security_and_analysis": [ + { + "advanced_security": [ + {} + ], + "secret_scanning": [ + {} + ], + "secret_scanning_push_protection": [ + {} + ] + } + ], + "template": [], + "topics": [ + false + ] + } + }, + { + "address": "module.repo_list[\"terraform-morpheus-database\"].github_repository_collaborator.collaborators[\"gomez385\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "gomez385", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "terraform-morpheus-database:gomez385", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "terraform-morpheus-database", + "username": "gomez385" + }, + "sensitive_values": {}, + "depends_on": [ + "module.repo_list.github_repository.repo" + ] + }, + { + "address": "module.repo_list[\"terraform-morpheus-database\"].github_repository_collaborator.collaborators[\"morga471\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "morga471", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "terraform-morpheus-database:morga471", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "terraform-morpheus-database", + "username": "morga471" + }, + "sensitive_values": {}, + "depends_on": [ + "module.repo_list.github_repository.repo" + ] + }, + { + "address": "module.repo_list[\"terraform-morpheus-database\"].github_repository_collaborator.collaborators[\"naray007\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "naray007", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "terraform-morpheus-database:naray007", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "terraform-morpheus-database", + "username": "naray007" + }, + "sensitive_values": {}, + "depends_on": [ + "module.repo_list.github_repository.repo" + ] + } + ], + "address": "module.repo_list[\"terraform-morpheus-database\"]" + }, + { + "resources": [ + { + "address": "module.repo_list[\"terraform-morpheus-efs\"].data.github_user.pull_request_bypassers[\"arnol377\"]", + "mode": "data", + "type": "github_user", + "name": "pull_request_bypassers", + "index": "arnol377", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "avatar_url": "https://github.e.it.census.gov/avatars/u/549?", + "bio": "", + "blog": "", + "company": "", + "created_at": "2023-12-26 17:20:24 +0000 UTC", + "email": "", + "followers": 0, + "following": 0, + "gpg_keys": [], + "gravatar_id": "", + "id": "549", + "location": "", + "login": "arnol377", + "name": "David John Arnold Jr", + "node_id": "MDQ6VXNlcjU0OQ==", + "public_gists": 0, + "public_repos": 4, + "site_admin": false, + "ssh_keys": [ + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDBL3xJ3zSxE6Qv8k9b06oFB4dbq2+PiOmsnIfAgL2XZpEenD03jhCF28iAZVy9oovuBCbcyAE9BjTRdWFSjd1dmHthbGe5Jv0/DweNFB/YmX6wJ6knljTA3frkY9bVS9+rqY6N4GG3oG6lyyk7cBaUEagXF4VQQJqX4l7XG1xxUfKLFFhF3Lq+CDg39FwlKk+QxIWMrbRJdpRBDZ03VZnKcgP0m/5K8PrcyGbxOK8qeVREUaqvmQN2Rs4LD1REPZyr3GQ2gtgpqrJ3hym7TwJw3Xl5NW8Y7RAeENem2K3EKoq6qq/wB/YUqMhKD228w5J6B+CoI8nvDqAWZkNAz/uY/GJe4elRJCmFH2F+r3263R5oDnXWSluB7XIm3b+Xt24F8MwoltejSEma41c8FM/xbF3Kle8ofBGFPEXpNDAxICVbyZ6OE4TyqTGKA8xgg9vnR3hCGGERtLYHhPw0aVHY7Zew/6/QV9o6/reO96V92zpXVEpvO09Z40fvTd5cN68=", + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDXRnBg+dayTonnZY3i0dDEHXUFMhcJKtqiFO7Oe/ejasDeW2I+L0f1gg+7u1ms/g8E28/RARN3R1aMnbGvXWdP/yBrhtpWJc5TXK+f33S5lYYjptJ2F6vj7jiRU7pP4uL9wqknj0DoSD0krAEbA85mBJgIV1viL8ZBtT/8iBoD6kHGRXaHpRH5sIFaURRJCcUTJhdqMUPd6bYKE/Bc6ioQLAEow0JB4ju1jPa7fOxhgVrIYxRiMkismhR0WLopB5JxyYDNmIyjUL2vGt9Kpd41DELv+Pn7EaP2HLjubVruWFnxnhZ7nvQwMonnZvjD3f5yPkDUkWnwaVGqw8cm9PFM4buFRmGpsl8YqTFakYgqc+JVDQB8bb9a9sr5/6Hbn41VcXd+KV6dTMK4PKSQFKLaq54ExzlwnE/EHnduE8JgvsfAa316/etFlzTQOBv1KbL8RKK0/vy6wJpiK9laDbymsOJPjZekoc/TD1AIvfWF9oae6wAU86tBVGdEO/JMOMc=", + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCvlUlp/OjFsa4fINqqMXukveo+mCu0Ywp0wwVCURkfJpPFPMdmbp07WlULCX6VgmqH4joCA+LUyY+q6iBZw80lS66lpDcRHMTG4PV7IsPpoYN20bUnm30vdqug/P1wVDuOO9B83+s3QFeBl9WbHQB3YY5pBulZGLIGw26qrLwfM5UJ4P/Ffca7ca9PM7KEkwqOC9xMfJy3tFkzD2Rjo2AHN9s7xHtpf95m8MzToy1Q7ykU/8bhImOrkZKaJJtIfmykYhebKDpeETEWJiyyaubIl71KAsWacrvQnEfo2fe62kR3SGv2auPDxMaGKPqtDpe2e/Y9I85Fv3tfWk53DDFoZNzExT4jc825bCqqz2DBbz4Q/Miw3rcdHx7uaRHinEJsBveNhZSH31GMLtU/dVNF3TNhlEH62Zmjgu7IpWb6Tr/4KnLjf/0p7ye34jP49nv1iBj99j3p1hwgAGU56ag4j7TW/iMh+uH+pg1hm6xZjhFInZGzQqtMl/qjBlr1oJ8=", + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCNVaIVHzjCkmCyQnpHfgLLvPtc96PVg/+8/cT2ty6TFe3ALaZJSHTWXjOPJaSkhBef2PCmbcsd3+p+QDl87nRl9O5fV376mrGwsxlpI2a1FnzpBkAEpZ2KyE4B593xGlpmvrMOF9gY4qGdNHCXw2puZ/IkmYaiROYpL2ptiSfTGc1R/ZrEvs0fhYwyi4xYfb+iGVSvjhhTqzJYNW6IBmMZVbDCdYX+JvSKsZYydnkHg7d9QJORZ3TnPe3Tmnn+PAse9V0z9VKOScfoRNT+Co9ezLGWNY+Dnnwg0jouA76/CiIIjWunJzLsIeu7cqNwubKO8lsLX9O+6zKR46EEaVr1VoC395IPvBy8x+VWUSpI+M7GLh0iPE56EvwiVm8irTkmY6WPsQ8PMJ5IWZE/OA6w6fupiSgBd5myFpB/wa8yVdY+UPfh40HpEXt0+iPeWK9kz/fJQAgow/FJAAsnI65JdVP4woAUYnmoJ0l6qgDyFQbOxcq7NZdmedHtRz049hM=" + ], + "suspended_at": "0001-01-01 00:00:00 +0000 UTC", + "updated_at": "2024-09-19 17:49:11 +0000 UTC", + "username": "arnol377" + }, + "sensitive_values": { + "gpg_keys": [], + "ssh_keys": [ + false, + false, + false, + false + ] + } + }, + { + "address": "module.repo_list[\"terraform-morpheus-efs\"].data.github_user.pull_request_bypassers[\"gomez385\"]", + "mode": "data", + "type": "github_user", + "name": "pull_request_bypassers", + "index": "gomez385", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "avatar_url": "https://github.e.it.census.gov/avatars/u/603?", + "bio": "", + "blog": "", + "company": "", + "created_at": "2024-06-13 14:57:04 +0000 UTC", + "email": "", + "followers": 0, + "following": 1, + "gpg_keys": [], + "gravatar_id": "", + "id": "603", + "location": "", + "login": "gomez385", + "name": "James Farr Gomez", + "node_id": "MDQ6VXNlcjYwMw==", + "public_gists": 0, + "public_repos": 0, + "site_admin": false, + "ssh_keys": [ + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDuGCb6WHZ8kex7gawtk2pmHd8t77HQ0LE+7sanVKoC5cWC/7RlefKBuH5c8F2RmmB1EaVFT2ylCsR0qnPT8xGH7gjrkRs/B8LAcwvXifev1BkPSE1gJT+lQpnwPkfqBuCbsewOR1XyPqQt5SZh4a9w7GDvBsfO2Ate9ADtX0nsI76t2DURR32ptBKnN2TtYqnD5D3VKV2lhiI2tnz8sO5FZzYycCONsv570N/itwT34gKSLVRsj+0YmPjmOU+7JWpXxdtjocw06ZEGnSyInIH4VJVROE0p3Z63xHQ9fxDtnW71zf0a9UeoY5Vb/b7PbK4NF3Dp9gG8iaL9dqeiZ1XTCcXHDyHGVFej3sl0CkB+BQ/Gz9ZCqkSBcA+n9WA5KclNuOMwe4eLXRwg/gxxmAJB707gXUk+nSPGwYTObtm0+lfspCNQxAFry8gX39mdVqnaCz1agzmwZo7rRls+BZPfDPg3YUkB3v9P8y/cbO6Bn5IRmYB2KQ73E7X8QJcW0+E=", + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQDROzDzCBisy3+PvtvvCt7XxuEpNAwBS6SoK2wKJNnGgYPs8zInboOVZWqRXujOWOySPCloBfYU5B2eg94cVoDnTnc9dArWhBOK0aY93XM7/0s3/01w3Kkyi25oJytr0NRI8liZq6DnF9hFiqxRVcJkoS4+I9t9G3MURjVbcNY10+bIs6Dp9sbnJaJEWvvsbAiz1WdZBAsF3eW20mNkzmQtYoASHWv3AD/j+xLRYvx2sVcPXIGQ4fw3FqQIUOkbVQUW2lCBp+BVZgR1U4dKh5lejddxd7bXblWxJ5qqWPXulqCnUrJBBTWxTPrUxBzcZtxLAj8C04PyZPJYWVVbhuxkMgA7VeUHeZ/iFT6LZeqVtwTDlEPCzShCdIC0JWKzxI+I663YeSf2y1Jh3qT/R+e0qcduEmL3bdE+PyyvQks8WCXVfXtJeHQfkPKcy9gARpQScY/6vSyZbJNfIW1VagCCRZp54AzOlhKTUy2r97zlrzB9gBPU2ycbmLFYOglVrw6Fo6ECV8slQIxuz0lS0RbEI/+c9jWxKqcSrb0zCEgoL+HEdGaElTRENPhApPXZO+YlFZkg9NY9t+uGWCu2xPgSiR2fn44QzfWypxCq05G0fNRQRRIuMnpjkXlv66O/hju+xMTG1fVyKSKq5CA1bDdDn9euZ7Q6OAFsQX73hdYn6Q==" + ], + "suspended_at": "0001-01-01 00:00:00 +0000 UTC", + "updated_at": "2024-09-26 18:00:48 +0000 UTC", + "username": "gomez385" + }, + "sensitive_values": { + "gpg_keys": [], + "ssh_keys": [ + false, + false + ] + } + }, + { + "address": "module.repo_list[\"terraform-morpheus-efs\"].github_repository.repo", + "mode": "managed", + "type": "github_repository", + "name": "repo", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 1, + "values": { + "allow_auto_merge": false, + "allow_merge_commit": false, + "allow_rebase_merge": false, + "allow_squash_merge": true, + "allow_update_branch": false, + "archive_on_destroy": true, + "archived": false, + "auto_init": true, + "default_branch": "main", + "delete_branch_on_merge": true, + "description": "Terraform module repo for terraform-morpheus-efs", + "etag": "W/\"dc3c9f15d960b142b0a0fb60bd0dedabcb32553ca8bcf6de1f86f2f1d0e6b025\"", + "full_name": "CSVD/terraform-morpheus-efs", + "git_clone_url": "git://github.e.it.census.gov/CSVD/terraform-morpheus-efs.git", + "gitignore_template": "", + "has_discussions": false, + "has_downloads": false, + "has_issues": true, + "has_projects": true, + "has_wiki": true, + "homepage_url": "", + "html_url": "https://github.e.it.census.gov/CSVD/terraform-morpheus-efs", + "http_clone_url": "https://github.e.it.census.gov/CSVD/terraform-morpheus-efs.git", + "id": "terraform-morpheus-efs", + "ignore_vulnerability_alerts_during_read": null, + "is_template": false, + "license_template": null, + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "name": "terraform-morpheus-efs", + "node_id": "MDEwOlJlcG9zaXRvcnkxMTQ1", + "pages": [], + "primary_language": "", + "private": false, + "repo_id": 1145, + "security_and_analysis": [ + { + "advanced_security": [ + { + "status": "disabled" + } + ], + "secret_scanning": [ + { + "status": "disabled" + } + ], + "secret_scanning_push_protection": [ + { + "status": "disabled" + } + ] + } + ], + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "ssh_clone_url": "git@github.e.it.census.gov:CSVD/terraform-morpheus-efs.git", + "svn_url": "https://github.e.it.census.gov/CSVD/terraform-morpheus-efs", + "template": [], + "topics": [ + "morpheus-infra" + ], + "visibility": "public", + "vulnerability_alerts": false, + "web_commit_signoff_required": false + }, + "sensitive_values": { + "pages": [], + "security_and_analysis": [ + { + "advanced_security": [ + {} + ], + "secret_scanning": [ + {} + ], + "secret_scanning_push_protection": [ + {} + ] + } + ], + "template": [], + "topics": [ + false + ] + } + }, + { + "address": "module.repo_list[\"terraform-morpheus-efs\"].github_repository_collaborator.collaborators[\"gomez385\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "gomez385", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "terraform-morpheus-efs:gomez385", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "terraform-morpheus-efs", + "username": "gomez385" + }, + "sensitive_values": {}, + "depends_on": [ + "module.repo_list.github_repository.repo" + ] + }, + { + "address": "module.repo_list[\"terraform-morpheus-efs\"].github_repository_collaborator.collaborators[\"morga471\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "morga471", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "terraform-morpheus-efs:morga471", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "terraform-morpheus-efs", + "username": "morga471" + }, + "sensitive_values": {}, + "depends_on": [ + "module.repo_list.github_repository.repo" + ] + }, + { + "address": "module.repo_list[\"terraform-morpheus-efs\"].github_repository_collaborator.collaborators[\"naray007\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "naray007", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "terraform-morpheus-efs:naray007", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "terraform-morpheus-efs", + "username": "naray007" + }, + "sensitive_values": {}, + "depends_on": [ + "module.repo_list.github_repository.repo" + ] + } + ], + "address": "module.repo_list[\"terraform-morpheus-efs\"]" + }, + { + "resources": [ + { + "address": "module.repo_list[\"terraform-morpheus-queue\"].data.github_user.pull_request_bypassers[\"arnol377\"]", + "mode": "data", + "type": "github_user", + "name": "pull_request_bypassers", + "index": "arnol377", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "avatar_url": "https://github.e.it.census.gov/avatars/u/549?", + "bio": "", + "blog": "", + "company": "", + "created_at": "2023-12-26 17:20:24 +0000 UTC", + "email": "", + "followers": 0, + "following": 0, + "gpg_keys": [], + "gravatar_id": "", + "id": "549", + "location": "", + "login": "arnol377", + "name": "David John Arnold Jr", + "node_id": "MDQ6VXNlcjU0OQ==", + "public_gists": 0, + "public_repos": 4, + "site_admin": false, + "ssh_keys": [ + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDBL3xJ3zSxE6Qv8k9b06oFB4dbq2+PiOmsnIfAgL2XZpEenD03jhCF28iAZVy9oovuBCbcyAE9BjTRdWFSjd1dmHthbGe5Jv0/DweNFB/YmX6wJ6knljTA3frkY9bVS9+rqY6N4GG3oG6lyyk7cBaUEagXF4VQQJqX4l7XG1xxUfKLFFhF3Lq+CDg39FwlKk+QxIWMrbRJdpRBDZ03VZnKcgP0m/5K8PrcyGbxOK8qeVREUaqvmQN2Rs4LD1REPZyr3GQ2gtgpqrJ3hym7TwJw3Xl5NW8Y7RAeENem2K3EKoq6qq/wB/YUqMhKD228w5J6B+CoI8nvDqAWZkNAz/uY/GJe4elRJCmFH2F+r3263R5oDnXWSluB7XIm3b+Xt24F8MwoltejSEma41c8FM/xbF3Kle8ofBGFPEXpNDAxICVbyZ6OE4TyqTGKA8xgg9vnR3hCGGERtLYHhPw0aVHY7Zew/6/QV9o6/reO96V92zpXVEpvO09Z40fvTd5cN68=", + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDXRnBg+dayTonnZY3i0dDEHXUFMhcJKtqiFO7Oe/ejasDeW2I+L0f1gg+7u1ms/g8E28/RARN3R1aMnbGvXWdP/yBrhtpWJc5TXK+f33S5lYYjptJ2F6vj7jiRU7pP4uL9wqknj0DoSD0krAEbA85mBJgIV1viL8ZBtT/8iBoD6kHGRXaHpRH5sIFaURRJCcUTJhdqMUPd6bYKE/Bc6ioQLAEow0JB4ju1jPa7fOxhgVrIYxRiMkismhR0WLopB5JxyYDNmIyjUL2vGt9Kpd41DELv+Pn7EaP2HLjubVruWFnxnhZ7nvQwMonnZvjD3f5yPkDUkWnwaVGqw8cm9PFM4buFRmGpsl8YqTFakYgqc+JVDQB8bb9a9sr5/6Hbn41VcXd+KV6dTMK4PKSQFKLaq54ExzlwnE/EHnduE8JgvsfAa316/etFlzTQOBv1KbL8RKK0/vy6wJpiK9laDbymsOJPjZekoc/TD1AIvfWF9oae6wAU86tBVGdEO/JMOMc=", + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCvlUlp/OjFsa4fINqqMXukveo+mCu0Ywp0wwVCURkfJpPFPMdmbp07WlULCX6VgmqH4joCA+LUyY+q6iBZw80lS66lpDcRHMTG4PV7IsPpoYN20bUnm30vdqug/P1wVDuOO9B83+s3QFeBl9WbHQB3YY5pBulZGLIGw26qrLwfM5UJ4P/Ffca7ca9PM7KEkwqOC9xMfJy3tFkzD2Rjo2AHN9s7xHtpf95m8MzToy1Q7ykU/8bhImOrkZKaJJtIfmykYhebKDpeETEWJiyyaubIl71KAsWacrvQnEfo2fe62kR3SGv2auPDxMaGKPqtDpe2e/Y9I85Fv3tfWk53DDFoZNzExT4jc825bCqqz2DBbz4Q/Miw3rcdHx7uaRHinEJsBveNhZSH31GMLtU/dVNF3TNhlEH62Zmjgu7IpWb6Tr/4KnLjf/0p7ye34jP49nv1iBj99j3p1hwgAGU56ag4j7TW/iMh+uH+pg1hm6xZjhFInZGzQqtMl/qjBlr1oJ8=", + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCNVaIVHzjCkmCyQnpHfgLLvPtc96PVg/+8/cT2ty6TFe3ALaZJSHTWXjOPJaSkhBef2PCmbcsd3+p+QDl87nRl9O5fV376mrGwsxlpI2a1FnzpBkAEpZ2KyE4B593xGlpmvrMOF9gY4qGdNHCXw2puZ/IkmYaiROYpL2ptiSfTGc1R/ZrEvs0fhYwyi4xYfb+iGVSvjhhTqzJYNW6IBmMZVbDCdYX+JvSKsZYydnkHg7d9QJORZ3TnPe3Tmnn+PAse9V0z9VKOScfoRNT+Co9ezLGWNY+Dnnwg0jouA76/CiIIjWunJzLsIeu7cqNwubKO8lsLX9O+6zKR46EEaVr1VoC395IPvBy8x+VWUSpI+M7GLh0iPE56EvwiVm8irTkmY6WPsQ8PMJ5IWZE/OA6w6fupiSgBd5myFpB/wa8yVdY+UPfh40HpEXt0+iPeWK9kz/fJQAgow/FJAAsnI65JdVP4woAUYnmoJ0l6qgDyFQbOxcq7NZdmedHtRz049hM=" + ], + "suspended_at": "0001-01-01 00:00:00 +0000 UTC", + "updated_at": "2024-09-19 17:49:11 +0000 UTC", + "username": "arnol377" + }, + "sensitive_values": { + "gpg_keys": [], + "ssh_keys": [ + false, + false, + false, + false + ] + } + }, + { + "address": "module.repo_list[\"terraform-morpheus-queue\"].data.github_user.pull_request_bypassers[\"gomez385\"]", + "mode": "data", + "type": "github_user", + "name": "pull_request_bypassers", + "index": "gomez385", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "avatar_url": "https://github.e.it.census.gov/avatars/u/603?", + "bio": "", + "blog": "", + "company": "", + "created_at": "2024-06-13 14:57:04 +0000 UTC", + "email": "", + "followers": 0, + "following": 1, + "gpg_keys": [], + "gravatar_id": "", + "id": "603", + "location": "", + "login": "gomez385", + "name": "James Farr Gomez", + "node_id": "MDQ6VXNlcjYwMw==", + "public_gists": 0, + "public_repos": 0, + "site_admin": false, + "ssh_keys": [ + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDuGCb6WHZ8kex7gawtk2pmHd8t77HQ0LE+7sanVKoC5cWC/7RlefKBuH5c8F2RmmB1EaVFT2ylCsR0qnPT8xGH7gjrkRs/B8LAcwvXifev1BkPSE1gJT+lQpnwPkfqBuCbsewOR1XyPqQt5SZh4a9w7GDvBsfO2Ate9ADtX0nsI76t2DURR32ptBKnN2TtYqnD5D3VKV2lhiI2tnz8sO5FZzYycCONsv570N/itwT34gKSLVRsj+0YmPjmOU+7JWpXxdtjocw06ZEGnSyInIH4VJVROE0p3Z63xHQ9fxDtnW71zf0a9UeoY5Vb/b7PbK4NF3Dp9gG8iaL9dqeiZ1XTCcXHDyHGVFej3sl0CkB+BQ/Gz9ZCqkSBcA+n9WA5KclNuOMwe4eLXRwg/gxxmAJB707gXUk+nSPGwYTObtm0+lfspCNQxAFry8gX39mdVqnaCz1agzmwZo7rRls+BZPfDPg3YUkB3v9P8y/cbO6Bn5IRmYB2KQ73E7X8QJcW0+E=", + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQDROzDzCBisy3+PvtvvCt7XxuEpNAwBS6SoK2wKJNnGgYPs8zInboOVZWqRXujOWOySPCloBfYU5B2eg94cVoDnTnc9dArWhBOK0aY93XM7/0s3/01w3Kkyi25oJytr0NRI8liZq6DnF9hFiqxRVcJkoS4+I9t9G3MURjVbcNY10+bIs6Dp9sbnJaJEWvvsbAiz1WdZBAsF3eW20mNkzmQtYoASHWv3AD/j+xLRYvx2sVcPXIGQ4fw3FqQIUOkbVQUW2lCBp+BVZgR1U4dKh5lejddxd7bXblWxJ5qqWPXulqCnUrJBBTWxTPrUxBzcZtxLAj8C04PyZPJYWVVbhuxkMgA7VeUHeZ/iFT6LZeqVtwTDlEPCzShCdIC0JWKzxI+I663YeSf2y1Jh3qT/R+e0qcduEmL3bdE+PyyvQks8WCXVfXtJeHQfkPKcy9gARpQScY/6vSyZbJNfIW1VagCCRZp54AzOlhKTUy2r97zlrzB9gBPU2ycbmLFYOglVrw6Fo6ECV8slQIxuz0lS0RbEI/+c9jWxKqcSrb0zCEgoL+HEdGaElTRENPhApPXZO+YlFZkg9NY9t+uGWCu2xPgSiR2fn44QzfWypxCq05G0fNRQRRIuMnpjkXlv66O/hju+xMTG1fVyKSKq5CA1bDdDn9euZ7Q6OAFsQX73hdYn6Q==" + ], + "suspended_at": "0001-01-01 00:00:00 +0000 UTC", + "updated_at": "2024-09-26 18:00:48 +0000 UTC", + "username": "gomez385" + }, + "sensitive_values": { + "gpg_keys": [], + "ssh_keys": [ + false, + false + ] + } + }, + { + "address": "module.repo_list[\"terraform-morpheus-queue\"].github_repository.repo", + "mode": "managed", + "type": "github_repository", + "name": "repo", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 1, + "values": { + "allow_auto_merge": false, + "allow_merge_commit": false, + "allow_rebase_merge": false, + "allow_squash_merge": true, + "allow_update_branch": false, + "archive_on_destroy": true, + "archived": false, + "auto_init": true, + "default_branch": "main", + "delete_branch_on_merge": true, + "description": "Terraform module repo for terraform-morpheus-queue", + "etag": "W/\"e4bd91a09e8cbd03ee4a92bf1a00e87c4419bfe4eb3e04e88e40e8ecd5e8919f\"", + "full_name": "CSVD/terraform-morpheus-queue", + "git_clone_url": "git://github.e.it.census.gov/CSVD/terraform-morpheus-queue.git", + "gitignore_template": "", + "has_discussions": false, + "has_downloads": false, + "has_issues": true, + "has_projects": true, + "has_wiki": true, + "homepage_url": "", + "html_url": "https://github.e.it.census.gov/CSVD/terraform-morpheus-queue", + "http_clone_url": "https://github.e.it.census.gov/CSVD/terraform-morpheus-queue.git", + "id": "terraform-morpheus-queue", + "ignore_vulnerability_alerts_during_read": null, + "is_template": false, + "license_template": null, + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "name": "terraform-morpheus-queue", + "node_id": "MDEwOlJlcG9zaXRvcnkxMTM4", + "pages": [], + "primary_language": "HCL", + "private": false, + "repo_id": 1138, + "security_and_analysis": [ + { + "advanced_security": [ + { + "status": "disabled" + } + ], + "secret_scanning": [ + { + "status": "disabled" + } + ], + "secret_scanning_push_protection": [ + { + "status": "disabled" + } + ] + } + ], + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "ssh_clone_url": "git@github.e.it.census.gov:CSVD/terraform-morpheus-queue.git", + "svn_url": "https://github.e.it.census.gov/CSVD/terraform-morpheus-queue", + "template": [], + "topics": [ + "morpheus-infra" + ], + "visibility": "public", + "vulnerability_alerts": false, + "web_commit_signoff_required": false + }, + "sensitive_values": { + "pages": [], + "security_and_analysis": [ + { + "advanced_security": [ + {} + ], + "secret_scanning": [ + {} + ], + "secret_scanning_push_protection": [ + {} + ] + } + ], + "template": [], + "topics": [ + false + ] + } + }, + { + "address": "module.repo_list[\"terraform-morpheus-queue\"].github_repository_collaborator.collaborators[\"gomez385\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "gomez385", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "terraform-morpheus-queue:gomez385", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "terraform-morpheus-queue", + "username": "gomez385" + }, + "sensitive_values": {}, + "depends_on": [ + "module.repo_list.github_repository.repo" + ] + }, + { + "address": "module.repo_list[\"terraform-morpheus-queue\"].github_repository_collaborator.collaborators[\"morga471\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "morga471", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "terraform-morpheus-queue:morga471", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "terraform-morpheus-queue", + "username": "morga471" + }, + "sensitive_values": {}, + "depends_on": [ + "module.repo_list.github_repository.repo" + ] + }, + { + "address": "module.repo_list[\"terraform-morpheus-queue\"].github_repository_collaborator.collaborators[\"naray007\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "naray007", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "terraform-morpheus-queue:naray007", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "terraform-morpheus-queue", + "username": "naray007" + }, + "sensitive_values": {}, + "depends_on": [ + "module.repo_list.github_repository.repo" + ] + } + ], + "address": "module.repo_list[\"terraform-morpheus-queue\"]" + }, + { + "resources": [ + { + "address": "module.repo_list[\"terraform-morpheus-search\"].data.github_user.pull_request_bypassers[\"arnol377\"]", + "mode": "data", + "type": "github_user", + "name": "pull_request_bypassers", + "index": "arnol377", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "avatar_url": "https://github.e.it.census.gov/avatars/u/549?", + "bio": "", + "blog": "", + "company": "", + "created_at": "2023-12-26 17:20:24 +0000 UTC", + "email": "", + "followers": 0, + "following": 0, + "gpg_keys": [], + "gravatar_id": "", + "id": "549", + "location": "", + "login": "arnol377", + "name": "David John Arnold Jr", + "node_id": "MDQ6VXNlcjU0OQ==", + "public_gists": 0, + "public_repos": 4, + "site_admin": false, + "ssh_keys": [ + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDBL3xJ3zSxE6Qv8k9b06oFB4dbq2+PiOmsnIfAgL2XZpEenD03jhCF28iAZVy9oovuBCbcyAE9BjTRdWFSjd1dmHthbGe5Jv0/DweNFB/YmX6wJ6knljTA3frkY9bVS9+rqY6N4GG3oG6lyyk7cBaUEagXF4VQQJqX4l7XG1xxUfKLFFhF3Lq+CDg39FwlKk+QxIWMrbRJdpRBDZ03VZnKcgP0m/5K8PrcyGbxOK8qeVREUaqvmQN2Rs4LD1REPZyr3GQ2gtgpqrJ3hym7TwJw3Xl5NW8Y7RAeENem2K3EKoq6qq/wB/YUqMhKD228w5J6B+CoI8nvDqAWZkNAz/uY/GJe4elRJCmFH2F+r3263R5oDnXWSluB7XIm3b+Xt24F8MwoltejSEma41c8FM/xbF3Kle8ofBGFPEXpNDAxICVbyZ6OE4TyqTGKA8xgg9vnR3hCGGERtLYHhPw0aVHY7Zew/6/QV9o6/reO96V92zpXVEpvO09Z40fvTd5cN68=", + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDXRnBg+dayTonnZY3i0dDEHXUFMhcJKtqiFO7Oe/ejasDeW2I+L0f1gg+7u1ms/g8E28/RARN3R1aMnbGvXWdP/yBrhtpWJc5TXK+f33S5lYYjptJ2F6vj7jiRU7pP4uL9wqknj0DoSD0krAEbA85mBJgIV1viL8ZBtT/8iBoD6kHGRXaHpRH5sIFaURRJCcUTJhdqMUPd6bYKE/Bc6ioQLAEow0JB4ju1jPa7fOxhgVrIYxRiMkismhR0WLopB5JxyYDNmIyjUL2vGt9Kpd41DELv+Pn7EaP2HLjubVruWFnxnhZ7nvQwMonnZvjD3f5yPkDUkWnwaVGqw8cm9PFM4buFRmGpsl8YqTFakYgqc+JVDQB8bb9a9sr5/6Hbn41VcXd+KV6dTMK4PKSQFKLaq54ExzlwnE/EHnduE8JgvsfAa316/etFlzTQOBv1KbL8RKK0/vy6wJpiK9laDbymsOJPjZekoc/TD1AIvfWF9oae6wAU86tBVGdEO/JMOMc=", + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCvlUlp/OjFsa4fINqqMXukveo+mCu0Ywp0wwVCURkfJpPFPMdmbp07WlULCX6VgmqH4joCA+LUyY+q6iBZw80lS66lpDcRHMTG4PV7IsPpoYN20bUnm30vdqug/P1wVDuOO9B83+s3QFeBl9WbHQB3YY5pBulZGLIGw26qrLwfM5UJ4P/Ffca7ca9PM7KEkwqOC9xMfJy3tFkzD2Rjo2AHN9s7xHtpf95m8MzToy1Q7ykU/8bhImOrkZKaJJtIfmykYhebKDpeETEWJiyyaubIl71KAsWacrvQnEfo2fe62kR3SGv2auPDxMaGKPqtDpe2e/Y9I85Fv3tfWk53DDFoZNzExT4jc825bCqqz2DBbz4Q/Miw3rcdHx7uaRHinEJsBveNhZSH31GMLtU/dVNF3TNhlEH62Zmjgu7IpWb6Tr/4KnLjf/0p7ye34jP49nv1iBj99j3p1hwgAGU56ag4j7TW/iMh+uH+pg1hm6xZjhFInZGzQqtMl/qjBlr1oJ8=", + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCNVaIVHzjCkmCyQnpHfgLLvPtc96PVg/+8/cT2ty6TFe3ALaZJSHTWXjOPJaSkhBef2PCmbcsd3+p+QDl87nRl9O5fV376mrGwsxlpI2a1FnzpBkAEpZ2KyE4B593xGlpmvrMOF9gY4qGdNHCXw2puZ/IkmYaiROYpL2ptiSfTGc1R/ZrEvs0fhYwyi4xYfb+iGVSvjhhTqzJYNW6IBmMZVbDCdYX+JvSKsZYydnkHg7d9QJORZ3TnPe3Tmnn+PAse9V0z9VKOScfoRNT+Co9ezLGWNY+Dnnwg0jouA76/CiIIjWunJzLsIeu7cqNwubKO8lsLX9O+6zKR46EEaVr1VoC395IPvBy8x+VWUSpI+M7GLh0iPE56EvwiVm8irTkmY6WPsQ8PMJ5IWZE/OA6w6fupiSgBd5myFpB/wa8yVdY+UPfh40HpEXt0+iPeWK9kz/fJQAgow/FJAAsnI65JdVP4woAUYnmoJ0l6qgDyFQbOxcq7NZdmedHtRz049hM=" + ], + "suspended_at": "0001-01-01 00:00:00 +0000 UTC", + "updated_at": "2024-09-19 17:49:11 +0000 UTC", + "username": "arnol377" + }, + "sensitive_values": { + "gpg_keys": [], + "ssh_keys": [ + false, + false, + false, + false + ] + } + }, + { + "address": "module.repo_list[\"terraform-morpheus-search\"].data.github_user.pull_request_bypassers[\"gomez385\"]", + "mode": "data", + "type": "github_user", + "name": "pull_request_bypassers", + "index": "gomez385", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "avatar_url": "https://github.e.it.census.gov/avatars/u/603?", + "bio": "", + "blog": "", + "company": "", + "created_at": "2024-06-13 14:57:04 +0000 UTC", + "email": "", + "followers": 0, + "following": 1, + "gpg_keys": [], + "gravatar_id": "", + "id": "603", + "location": "", + "login": "gomez385", + "name": "James Farr Gomez", + "node_id": "MDQ6VXNlcjYwMw==", + "public_gists": 0, + "public_repos": 0, + "site_admin": false, + "ssh_keys": [ + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDuGCb6WHZ8kex7gawtk2pmHd8t77HQ0LE+7sanVKoC5cWC/7RlefKBuH5c8F2RmmB1EaVFT2ylCsR0qnPT8xGH7gjrkRs/B8LAcwvXifev1BkPSE1gJT+lQpnwPkfqBuCbsewOR1XyPqQt5SZh4a9w7GDvBsfO2Ate9ADtX0nsI76t2DURR32ptBKnN2TtYqnD5D3VKV2lhiI2tnz8sO5FZzYycCONsv570N/itwT34gKSLVRsj+0YmPjmOU+7JWpXxdtjocw06ZEGnSyInIH4VJVROE0p3Z63xHQ9fxDtnW71zf0a9UeoY5Vb/b7PbK4NF3Dp9gG8iaL9dqeiZ1XTCcXHDyHGVFej3sl0CkB+BQ/Gz9ZCqkSBcA+n9WA5KclNuOMwe4eLXRwg/gxxmAJB707gXUk+nSPGwYTObtm0+lfspCNQxAFry8gX39mdVqnaCz1agzmwZo7rRls+BZPfDPg3YUkB3v9P8y/cbO6Bn5IRmYB2KQ73E7X8QJcW0+E=", + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQDROzDzCBisy3+PvtvvCt7XxuEpNAwBS6SoK2wKJNnGgYPs8zInboOVZWqRXujOWOySPCloBfYU5B2eg94cVoDnTnc9dArWhBOK0aY93XM7/0s3/01w3Kkyi25oJytr0NRI8liZq6DnF9hFiqxRVcJkoS4+I9t9G3MURjVbcNY10+bIs6Dp9sbnJaJEWvvsbAiz1WdZBAsF3eW20mNkzmQtYoASHWv3AD/j+xLRYvx2sVcPXIGQ4fw3FqQIUOkbVQUW2lCBp+BVZgR1U4dKh5lejddxd7bXblWxJ5qqWPXulqCnUrJBBTWxTPrUxBzcZtxLAj8C04PyZPJYWVVbhuxkMgA7VeUHeZ/iFT6LZeqVtwTDlEPCzShCdIC0JWKzxI+I663YeSf2y1Jh3qT/R+e0qcduEmL3bdE+PyyvQks8WCXVfXtJeHQfkPKcy9gARpQScY/6vSyZbJNfIW1VagCCRZp54AzOlhKTUy2r97zlrzB9gBPU2ycbmLFYOglVrw6Fo6ECV8slQIxuz0lS0RbEI/+c9jWxKqcSrb0zCEgoL+HEdGaElTRENPhApPXZO+YlFZkg9NY9t+uGWCu2xPgSiR2fn44QzfWypxCq05G0fNRQRRIuMnpjkXlv66O/hju+xMTG1fVyKSKq5CA1bDdDn9euZ7Q6OAFsQX73hdYn6Q==" + ], + "suspended_at": "0001-01-01 00:00:00 +0000 UTC", + "updated_at": "2024-09-26 18:00:48 +0000 UTC", + "username": "gomez385" + }, + "sensitive_values": { + "gpg_keys": [], + "ssh_keys": [ + false, + false + ] + } + }, + { + "address": "module.repo_list[\"terraform-morpheus-search\"].github_repository.repo", + "mode": "managed", + "type": "github_repository", + "name": "repo", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 1, + "values": { + "allow_auto_merge": false, + "allow_merge_commit": false, + "allow_rebase_merge": false, + "allow_squash_merge": true, + "allow_update_branch": false, + "archive_on_destroy": true, + "archived": false, + "auto_init": true, + "default_branch": "main", + "delete_branch_on_merge": true, + "description": "Terraform module repo for terraform-morpheus-search", + "etag": "W/\"8cb7ea94eb2507e506f9e00f1b11e0ac253c20001ed277f7a39f198c58d8edfb\"", + "full_name": "CSVD/terraform-morpheus-search", + "git_clone_url": "git://github.e.it.census.gov/CSVD/terraform-morpheus-search.git", + "gitignore_template": "", + "has_discussions": false, + "has_downloads": false, + "has_issues": true, + "has_projects": true, + "has_wiki": true, + "homepage_url": "", + "html_url": "https://github.e.it.census.gov/CSVD/terraform-morpheus-search", + "http_clone_url": "https://github.e.it.census.gov/CSVD/terraform-morpheus-search.git", + "id": "terraform-morpheus-search", + "ignore_vulnerability_alerts_during_read": null, + "is_template": false, + "license_template": null, + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "name": "terraform-morpheus-search", + "node_id": "MDEwOlJlcG9zaXRvcnkxMTQw", + "pages": [], + "primary_language": "", + "private": false, + "repo_id": 1140, + "security_and_analysis": [ + { + "advanced_security": [ + { + "status": "disabled" + } + ], + "secret_scanning": [ + { + "status": "disabled" + } + ], + "secret_scanning_push_protection": [ + { + "status": "disabled" + } + ] + } + ], + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "ssh_clone_url": "git@github.e.it.census.gov:CSVD/terraform-morpheus-search.git", + "svn_url": "https://github.e.it.census.gov/CSVD/terraform-morpheus-search", + "template": [], + "topics": [ + "morpheus-infra" + ], + "visibility": "public", + "vulnerability_alerts": false, + "web_commit_signoff_required": false + }, + "sensitive_values": { + "pages": [], + "security_and_analysis": [ + { + "advanced_security": [ + {} + ], + "secret_scanning": [ + {} + ], + "secret_scanning_push_protection": [ + {} + ] + } + ], + "template": [], + "topics": [ + false + ] + } + }, + { + "address": "module.repo_list[\"terraform-morpheus-search\"].github_repository_collaborator.collaborators[\"gomez385\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "gomez385", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "terraform-morpheus-search:gomez385", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "terraform-morpheus-search", + "username": "gomez385" + }, + "sensitive_values": {}, + "depends_on": [ + "module.repo_list.github_repository.repo" + ] + }, + { + "address": "module.repo_list[\"terraform-morpheus-search\"].github_repository_collaborator.collaborators[\"morga471\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "morga471", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "terraform-morpheus-search:morga471", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "terraform-morpheus-search", + "username": "morga471" + }, + "sensitive_values": {}, + "depends_on": [ + "module.repo_list.github_repository.repo" + ] + }, + { + "address": "module.repo_list[\"terraform-morpheus-search\"].github_repository_collaborator.collaborators[\"naray007\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "naray007", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "terraform-morpheus-search:naray007", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "terraform-morpheus-search", + "username": "naray007" + }, + "sensitive_values": {}, + "depends_on": [ + "module.repo_list.github_repository.repo" + ] + } + ], + "address": "module.repo_list[\"terraform-morpheus-search\"]" + }, + { + "resources": [ + { + "address": "module.repo_list[\"terraform-morpheus-storage\"].data.github_user.pull_request_bypassers[\"arnol377\"]", + "mode": "data", + "type": "github_user", + "name": "pull_request_bypassers", + "index": "arnol377", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "avatar_url": "https://github.e.it.census.gov/avatars/u/549?", + "bio": "", + "blog": "", + "company": "", + "created_at": "2023-12-26 17:20:24 +0000 UTC", + "email": "", + "followers": 0, + "following": 0, + "gpg_keys": [], + "gravatar_id": "", + "id": "549", + "location": "", + "login": "arnol377", + "name": "David John Arnold Jr", + "node_id": "MDQ6VXNlcjU0OQ==", + "public_gists": 0, + "public_repos": 4, + "site_admin": false, + "ssh_keys": [ + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDBL3xJ3zSxE6Qv8k9b06oFB4dbq2+PiOmsnIfAgL2XZpEenD03jhCF28iAZVy9oovuBCbcyAE9BjTRdWFSjd1dmHthbGe5Jv0/DweNFB/YmX6wJ6knljTA3frkY9bVS9+rqY6N4GG3oG6lyyk7cBaUEagXF4VQQJqX4l7XG1xxUfKLFFhF3Lq+CDg39FwlKk+QxIWMrbRJdpRBDZ03VZnKcgP0m/5K8PrcyGbxOK8qeVREUaqvmQN2Rs4LD1REPZyr3GQ2gtgpqrJ3hym7TwJw3Xl5NW8Y7RAeENem2K3EKoq6qq/wB/YUqMhKD228w5J6B+CoI8nvDqAWZkNAz/uY/GJe4elRJCmFH2F+r3263R5oDnXWSluB7XIm3b+Xt24F8MwoltejSEma41c8FM/xbF3Kle8ofBGFPEXpNDAxICVbyZ6OE4TyqTGKA8xgg9vnR3hCGGERtLYHhPw0aVHY7Zew/6/QV9o6/reO96V92zpXVEpvO09Z40fvTd5cN68=", + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDXRnBg+dayTonnZY3i0dDEHXUFMhcJKtqiFO7Oe/ejasDeW2I+L0f1gg+7u1ms/g8E28/RARN3R1aMnbGvXWdP/yBrhtpWJc5TXK+f33S5lYYjptJ2F6vj7jiRU7pP4uL9wqknj0DoSD0krAEbA85mBJgIV1viL8ZBtT/8iBoD6kHGRXaHpRH5sIFaURRJCcUTJhdqMUPd6bYKE/Bc6ioQLAEow0JB4ju1jPa7fOxhgVrIYxRiMkismhR0WLopB5JxyYDNmIyjUL2vGt9Kpd41DELv+Pn7EaP2HLjubVruWFnxnhZ7nvQwMonnZvjD3f5yPkDUkWnwaVGqw8cm9PFM4buFRmGpsl8YqTFakYgqc+JVDQB8bb9a9sr5/6Hbn41VcXd+KV6dTMK4PKSQFKLaq54ExzlwnE/EHnduE8JgvsfAa316/etFlzTQOBv1KbL8RKK0/vy6wJpiK9laDbymsOJPjZekoc/TD1AIvfWF9oae6wAU86tBVGdEO/JMOMc=", + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCvlUlp/OjFsa4fINqqMXukveo+mCu0Ywp0wwVCURkfJpPFPMdmbp07WlULCX6VgmqH4joCA+LUyY+q6iBZw80lS66lpDcRHMTG4PV7IsPpoYN20bUnm30vdqug/P1wVDuOO9B83+s3QFeBl9WbHQB3YY5pBulZGLIGw26qrLwfM5UJ4P/Ffca7ca9PM7KEkwqOC9xMfJy3tFkzD2Rjo2AHN9s7xHtpf95m8MzToy1Q7ykU/8bhImOrkZKaJJtIfmykYhebKDpeETEWJiyyaubIl71KAsWacrvQnEfo2fe62kR3SGv2auPDxMaGKPqtDpe2e/Y9I85Fv3tfWk53DDFoZNzExT4jc825bCqqz2DBbz4Q/Miw3rcdHx7uaRHinEJsBveNhZSH31GMLtU/dVNF3TNhlEH62Zmjgu7IpWb6Tr/4KnLjf/0p7ye34jP49nv1iBj99j3p1hwgAGU56ag4j7TW/iMh+uH+pg1hm6xZjhFInZGzQqtMl/qjBlr1oJ8=", + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCNVaIVHzjCkmCyQnpHfgLLvPtc96PVg/+8/cT2ty6TFe3ALaZJSHTWXjOPJaSkhBef2PCmbcsd3+p+QDl87nRl9O5fV376mrGwsxlpI2a1FnzpBkAEpZ2KyE4B593xGlpmvrMOF9gY4qGdNHCXw2puZ/IkmYaiROYpL2ptiSfTGc1R/ZrEvs0fhYwyi4xYfb+iGVSvjhhTqzJYNW6IBmMZVbDCdYX+JvSKsZYydnkHg7d9QJORZ3TnPe3Tmnn+PAse9V0z9VKOScfoRNT+Co9ezLGWNY+Dnnwg0jouA76/CiIIjWunJzLsIeu7cqNwubKO8lsLX9O+6zKR46EEaVr1VoC395IPvBy8x+VWUSpI+M7GLh0iPE56EvwiVm8irTkmY6WPsQ8PMJ5IWZE/OA6w6fupiSgBd5myFpB/wa8yVdY+UPfh40HpEXt0+iPeWK9kz/fJQAgow/FJAAsnI65JdVP4woAUYnmoJ0l6qgDyFQbOxcq7NZdmedHtRz049hM=" + ], + "suspended_at": "0001-01-01 00:00:00 +0000 UTC", + "updated_at": "2024-09-19 17:49:11 +0000 UTC", + "username": "arnol377" + }, + "sensitive_values": { + "gpg_keys": [], + "ssh_keys": [ + false, + false, + false, + false + ] + } + }, + { + "address": "module.repo_list[\"terraform-morpheus-storage\"].data.github_user.pull_request_bypassers[\"gomez385\"]", + "mode": "data", + "type": "github_user", + "name": "pull_request_bypassers", + "index": "gomez385", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "avatar_url": "https://github.e.it.census.gov/avatars/u/603?", + "bio": "", + "blog": "", + "company": "", + "created_at": "2024-06-13 14:57:04 +0000 UTC", + "email": "", + "followers": 0, + "following": 1, + "gpg_keys": [], + "gravatar_id": "", + "id": "603", + "location": "", + "login": "gomez385", + "name": "James Farr Gomez", + "node_id": "MDQ6VXNlcjYwMw==", + "public_gists": 0, + "public_repos": 0, + "site_admin": false, + "ssh_keys": [ + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDuGCb6WHZ8kex7gawtk2pmHd8t77HQ0LE+7sanVKoC5cWC/7RlefKBuH5c8F2RmmB1EaVFT2ylCsR0qnPT8xGH7gjrkRs/B8LAcwvXifev1BkPSE1gJT+lQpnwPkfqBuCbsewOR1XyPqQt5SZh4a9w7GDvBsfO2Ate9ADtX0nsI76t2DURR32ptBKnN2TtYqnD5D3VKV2lhiI2tnz8sO5FZzYycCONsv570N/itwT34gKSLVRsj+0YmPjmOU+7JWpXxdtjocw06ZEGnSyInIH4VJVROE0p3Z63xHQ9fxDtnW71zf0a9UeoY5Vb/b7PbK4NF3Dp9gG8iaL9dqeiZ1XTCcXHDyHGVFej3sl0CkB+BQ/Gz9ZCqkSBcA+n9WA5KclNuOMwe4eLXRwg/gxxmAJB707gXUk+nSPGwYTObtm0+lfspCNQxAFry8gX39mdVqnaCz1agzmwZo7rRls+BZPfDPg3YUkB3v9P8y/cbO6Bn5IRmYB2KQ73E7X8QJcW0+E=", + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQDROzDzCBisy3+PvtvvCt7XxuEpNAwBS6SoK2wKJNnGgYPs8zInboOVZWqRXujOWOySPCloBfYU5B2eg94cVoDnTnc9dArWhBOK0aY93XM7/0s3/01w3Kkyi25oJytr0NRI8liZq6DnF9hFiqxRVcJkoS4+I9t9G3MURjVbcNY10+bIs6Dp9sbnJaJEWvvsbAiz1WdZBAsF3eW20mNkzmQtYoASHWv3AD/j+xLRYvx2sVcPXIGQ4fw3FqQIUOkbVQUW2lCBp+BVZgR1U4dKh5lejddxd7bXblWxJ5qqWPXulqCnUrJBBTWxTPrUxBzcZtxLAj8C04PyZPJYWVVbhuxkMgA7VeUHeZ/iFT6LZeqVtwTDlEPCzShCdIC0JWKzxI+I663YeSf2y1Jh3qT/R+e0qcduEmL3bdE+PyyvQks8WCXVfXtJeHQfkPKcy9gARpQScY/6vSyZbJNfIW1VagCCRZp54AzOlhKTUy2r97zlrzB9gBPU2ycbmLFYOglVrw6Fo6ECV8slQIxuz0lS0RbEI/+c9jWxKqcSrb0zCEgoL+HEdGaElTRENPhApPXZO+YlFZkg9NY9t+uGWCu2xPgSiR2fn44QzfWypxCq05G0fNRQRRIuMnpjkXlv66O/hju+xMTG1fVyKSKq5CA1bDdDn9euZ7Q6OAFsQX73hdYn6Q==" + ], + "suspended_at": "0001-01-01 00:00:00 +0000 UTC", + "updated_at": "2024-09-26 18:00:48 +0000 UTC", + "username": "gomez385" + }, + "sensitive_values": { + "gpg_keys": [], + "ssh_keys": [ + false, + false + ] + } + }, + { + "address": "module.repo_list[\"terraform-morpheus-storage\"].github_repository.repo", + "mode": "managed", + "type": "github_repository", + "name": "repo", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 1, + "values": { + "allow_auto_merge": false, + "allow_merge_commit": false, + "allow_rebase_merge": false, + "allow_squash_merge": true, + "allow_update_branch": false, + "archive_on_destroy": true, + "archived": false, + "auto_init": true, + "default_branch": "main", + "delete_branch_on_merge": true, + "description": "Terraform module repo for terraform-morpheus-storage", + "etag": "W/\"51245141e6ea8cc96e5b15673bc1da6a606761a6028d890b25a2f12333b1417e\"", + "full_name": "CSVD/terraform-morpheus-storage", + "git_clone_url": "git://github.e.it.census.gov/CSVD/terraform-morpheus-storage.git", + "gitignore_template": "", + "has_discussions": false, + "has_downloads": false, + "has_issues": true, + "has_projects": true, + "has_wiki": true, + "homepage_url": "", + "html_url": "https://github.e.it.census.gov/CSVD/terraform-morpheus-storage", + "http_clone_url": "https://github.e.it.census.gov/CSVD/terraform-morpheus-storage.git", + "id": "terraform-morpheus-storage", + "ignore_vulnerability_alerts_during_read": null, + "is_template": false, + "license_template": null, + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "name": "terraform-morpheus-storage", + "node_id": "MDEwOlJlcG9zaXRvcnkxMTQx", + "pages": [], + "primary_language": "", + "private": false, + "repo_id": 1141, + "security_and_analysis": [ + { + "advanced_security": [ + { + "status": "disabled" + } + ], + "secret_scanning": [ + { + "status": "disabled" + } + ], + "secret_scanning_push_protection": [ + { + "status": "disabled" + } + ] + } + ], + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "ssh_clone_url": "git@github.e.it.census.gov:CSVD/terraform-morpheus-storage.git", + "svn_url": "https://github.e.it.census.gov/CSVD/terraform-morpheus-storage", + "template": [], + "topics": [ + "morpheus-infra" + ], + "visibility": "public", + "vulnerability_alerts": false, + "web_commit_signoff_required": false + }, + "sensitive_values": { + "pages": [], + "security_and_analysis": [ + { + "advanced_security": [ + {} + ], + "secret_scanning": [ + {} + ], + "secret_scanning_push_protection": [ + {} + ] + } + ], + "template": [], + "topics": [ + false + ] + } + }, + { + "address": "module.repo_list[\"terraform-morpheus-storage\"].github_repository_collaborator.collaborators[\"gomez385\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "gomez385", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "terraform-morpheus-storage:gomez385", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "terraform-morpheus-storage", + "username": "gomez385" + }, + "sensitive_values": {}, + "depends_on": [ + "module.repo_list.github_repository.repo" + ] + }, + { + "address": "module.repo_list[\"terraform-morpheus-storage\"].github_repository_collaborator.collaborators[\"morga471\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "morga471", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "terraform-morpheus-storage:morga471", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "terraform-morpheus-storage", + "username": "morga471" + }, + "sensitive_values": {}, + "depends_on": [ + "module.repo_list.github_repository.repo" + ] + }, + { + "address": "module.repo_list[\"terraform-morpheus-storage\"].github_repository_collaborator.collaborators[\"naray007\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "naray007", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "terraform-morpheus-storage:naray007", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "terraform-morpheus-storage", + "username": "naray007" + }, + "sensitive_values": {}, + "depends_on": [ + "module.repo_list.github_repository.repo" + ] + } + ], + "address": "module.repo_list[\"terraform-morpheus-storage\"]" + }, + { + "resources": [ + { + "address": "module.repo_list[\"tf-caching\"].data.github_user.pull_request_bypassers[\"arnol377\"]", + "mode": "data", + "type": "github_user", + "name": "pull_request_bypassers", + "index": "arnol377", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "avatar_url": "https://github.e.it.census.gov/avatars/u/549?", + "bio": "", + "blog": "", + "company": "", + "created_at": "2023-12-26 17:20:24 +0000 UTC", + "email": "", + "followers": 0, + "following": 0, + "gpg_keys": [], + "gravatar_id": "", + "id": "549", + "location": "", + "login": "arnol377", + "name": "David John Arnold Jr", + "node_id": "MDQ6VXNlcjU0OQ==", + "public_gists": 0, + "public_repos": 4, + "site_admin": false, + "ssh_keys": [ + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDBL3xJ3zSxE6Qv8k9b06oFB4dbq2+PiOmsnIfAgL2XZpEenD03jhCF28iAZVy9oovuBCbcyAE9BjTRdWFSjd1dmHthbGe5Jv0/DweNFB/YmX6wJ6knljTA3frkY9bVS9+rqY6N4GG3oG6lyyk7cBaUEagXF4VQQJqX4l7XG1xxUfKLFFhF3Lq+CDg39FwlKk+QxIWMrbRJdpRBDZ03VZnKcgP0m/5K8PrcyGbxOK8qeVREUaqvmQN2Rs4LD1REPZyr3GQ2gtgpqrJ3hym7TwJw3Xl5NW8Y7RAeENem2K3EKoq6qq/wB/YUqMhKD228w5J6B+CoI8nvDqAWZkNAz/uY/GJe4elRJCmFH2F+r3263R5oDnXWSluB7XIm3b+Xt24F8MwoltejSEma41c8FM/xbF3Kle8ofBGFPEXpNDAxICVbyZ6OE4TyqTGKA8xgg9vnR3hCGGERtLYHhPw0aVHY7Zew/6/QV9o6/reO96V92zpXVEpvO09Z40fvTd5cN68=", + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDXRnBg+dayTonnZY3i0dDEHXUFMhcJKtqiFO7Oe/ejasDeW2I+L0f1gg+7u1ms/g8E28/RARN3R1aMnbGvXWdP/yBrhtpWJc5TXK+f33S5lYYjptJ2F6vj7jiRU7pP4uL9wqknj0DoSD0krAEbA85mBJgIV1viL8ZBtT/8iBoD6kHGRXaHpRH5sIFaURRJCcUTJhdqMUPd6bYKE/Bc6ioQLAEow0JB4ju1jPa7fOxhgVrIYxRiMkismhR0WLopB5JxyYDNmIyjUL2vGt9Kpd41DELv+Pn7EaP2HLjubVruWFnxnhZ7nvQwMonnZvjD3f5yPkDUkWnwaVGqw8cm9PFM4buFRmGpsl8YqTFakYgqc+JVDQB8bb9a9sr5/6Hbn41VcXd+KV6dTMK4PKSQFKLaq54ExzlwnE/EHnduE8JgvsfAa316/etFlzTQOBv1KbL8RKK0/vy6wJpiK9laDbymsOJPjZekoc/TD1AIvfWF9oae6wAU86tBVGdEO/JMOMc=", + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCvlUlp/OjFsa4fINqqMXukveo+mCu0Ywp0wwVCURkfJpPFPMdmbp07WlULCX6VgmqH4joCA+LUyY+q6iBZw80lS66lpDcRHMTG4PV7IsPpoYN20bUnm30vdqug/P1wVDuOO9B83+s3QFeBl9WbHQB3YY5pBulZGLIGw26qrLwfM5UJ4P/Ffca7ca9PM7KEkwqOC9xMfJy3tFkzD2Rjo2AHN9s7xHtpf95m8MzToy1Q7ykU/8bhImOrkZKaJJtIfmykYhebKDpeETEWJiyyaubIl71KAsWacrvQnEfo2fe62kR3SGv2auPDxMaGKPqtDpe2e/Y9I85Fv3tfWk53DDFoZNzExT4jc825bCqqz2DBbz4Q/Miw3rcdHx7uaRHinEJsBveNhZSH31GMLtU/dVNF3TNhlEH62Zmjgu7IpWb6Tr/4KnLjf/0p7ye34jP49nv1iBj99j3p1hwgAGU56ag4j7TW/iMh+uH+pg1hm6xZjhFInZGzQqtMl/qjBlr1oJ8=", + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCNVaIVHzjCkmCyQnpHfgLLvPtc96PVg/+8/cT2ty6TFe3ALaZJSHTWXjOPJaSkhBef2PCmbcsd3+p+QDl87nRl9O5fV376mrGwsxlpI2a1FnzpBkAEpZ2KyE4B593xGlpmvrMOF9gY4qGdNHCXw2puZ/IkmYaiROYpL2ptiSfTGc1R/ZrEvs0fhYwyi4xYfb+iGVSvjhhTqzJYNW6IBmMZVbDCdYX+JvSKsZYydnkHg7d9QJORZ3TnPe3Tmnn+PAse9V0z9VKOScfoRNT+Co9ezLGWNY+Dnnwg0jouA76/CiIIjWunJzLsIeu7cqNwubKO8lsLX9O+6zKR46EEaVr1VoC395IPvBy8x+VWUSpI+M7GLh0iPE56EvwiVm8irTkmY6WPsQ8PMJ5IWZE/OA6w6fupiSgBd5myFpB/wa8yVdY+UPfh40HpEXt0+iPeWK9kz/fJQAgow/FJAAsnI65JdVP4woAUYnmoJ0l6qgDyFQbOxcq7NZdmedHtRz049hM=" + ], + "suspended_at": "0001-01-01 00:00:00 +0000 UTC", + "updated_at": "2024-09-19 17:49:11 +0000 UTC", + "username": "arnol377" + }, + "sensitive_values": { + "gpg_keys": [], + "ssh_keys": [ + false, + false, + false, + false + ] + } + }, + { + "address": "module.repo_list[\"tf-caching\"].data.github_user.pull_request_bypassers[\"gomez385\"]", + "mode": "data", + "type": "github_user", + "name": "pull_request_bypassers", + "index": "gomez385", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "avatar_url": "https://github.e.it.census.gov/avatars/u/603?", + "bio": "", + "blog": "", + "company": "", + "created_at": "2024-06-13 14:57:04 +0000 UTC", + "email": "", + "followers": 0, + "following": 1, + "gpg_keys": [], + "gravatar_id": "", + "id": "603", + "location": "", + "login": "gomez385", + "name": "James Farr Gomez", + "node_id": "MDQ6VXNlcjYwMw==", + "public_gists": 0, + "public_repos": 0, + "site_admin": false, + "ssh_keys": [ + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDuGCb6WHZ8kex7gawtk2pmHd8t77HQ0LE+7sanVKoC5cWC/7RlefKBuH5c8F2RmmB1EaVFT2ylCsR0qnPT8xGH7gjrkRs/B8LAcwvXifev1BkPSE1gJT+lQpnwPkfqBuCbsewOR1XyPqQt5SZh4a9w7GDvBsfO2Ate9ADtX0nsI76t2DURR32ptBKnN2TtYqnD5D3VKV2lhiI2tnz8sO5FZzYycCONsv570N/itwT34gKSLVRsj+0YmPjmOU+7JWpXxdtjocw06ZEGnSyInIH4VJVROE0p3Z63xHQ9fxDtnW71zf0a9UeoY5Vb/b7PbK4NF3Dp9gG8iaL9dqeiZ1XTCcXHDyHGVFej3sl0CkB+BQ/Gz9ZCqkSBcA+n9WA5KclNuOMwe4eLXRwg/gxxmAJB707gXUk+nSPGwYTObtm0+lfspCNQxAFry8gX39mdVqnaCz1agzmwZo7rRls+BZPfDPg3YUkB3v9P8y/cbO6Bn5IRmYB2KQ73E7X8QJcW0+E=", + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQDROzDzCBisy3+PvtvvCt7XxuEpNAwBS6SoK2wKJNnGgYPs8zInboOVZWqRXujOWOySPCloBfYU5B2eg94cVoDnTnc9dArWhBOK0aY93XM7/0s3/01w3Kkyi25oJytr0NRI8liZq6DnF9hFiqxRVcJkoS4+I9t9G3MURjVbcNY10+bIs6Dp9sbnJaJEWvvsbAiz1WdZBAsF3eW20mNkzmQtYoASHWv3AD/j+xLRYvx2sVcPXIGQ4fw3FqQIUOkbVQUW2lCBp+BVZgR1U4dKh5lejddxd7bXblWxJ5qqWPXulqCnUrJBBTWxTPrUxBzcZtxLAj8C04PyZPJYWVVbhuxkMgA7VeUHeZ/iFT6LZeqVtwTDlEPCzShCdIC0JWKzxI+I663YeSf2y1Jh3qT/R+e0qcduEmL3bdE+PyyvQks8WCXVfXtJeHQfkPKcy9gARpQScY/6vSyZbJNfIW1VagCCRZp54AzOlhKTUy2r97zlrzB9gBPU2ycbmLFYOglVrw6Fo6ECV8slQIxuz0lS0RbEI/+c9jWxKqcSrb0zCEgoL+HEdGaElTRENPhApPXZO+YlFZkg9NY9t+uGWCu2xPgSiR2fn44QzfWypxCq05G0fNRQRRIuMnpjkXlv66O/hju+xMTG1fVyKSKq5CA1bDdDn9euZ7Q6OAFsQX73hdYn6Q==" + ], + "suspended_at": "0001-01-01 00:00:00 +0000 UTC", + "updated_at": "2024-09-26 18:00:48 +0000 UTC", + "username": "gomez385" + }, + "sensitive_values": { + "gpg_keys": [], + "ssh_keys": [ + false, + false + ] + } + }, + { + "address": "module.repo_list[\"tf-caching\"].github_repository.repo", + "mode": "managed", + "type": "github_repository", + "name": "repo", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 1, + "values": { + "allow_auto_merge": false, + "allow_merge_commit": false, + "allow_rebase_merge": false, + "allow_squash_merge": true, + "allow_update_branch": false, + "archive_on_destroy": true, + "archived": false, + "auto_init": true, + "default_branch": "main", + "delete_branch_on_merge": true, + "description": "Terraform Caching service", + "etag": "W/\"5ee9fd5731599f36499bd171abf061ba0433be3abed89a7b88e9f51a44c79e8d\"", + "full_name": "CSVD/tf-caching", + "git_clone_url": "git://github.e.it.census.gov/CSVD/tf-caching.git", + "gitignore_template": "", + "has_discussions": false, + "has_downloads": false, + "has_issues": true, + "has_projects": true, + "has_wiki": true, + "homepage_url": "", + "html_url": "https://github.e.it.census.gov/CSVD/tf-caching", + "http_clone_url": "https://github.e.it.census.gov/CSVD/tf-caching.git", + "id": "tf-caching", + "ignore_vulnerability_alerts_during_read": null, + "is_template": false, + "license_template": null, + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "name": "tf-caching", + "node_id": "MDEwOlJlcG9zaXRvcnkxMTAw", + "pages": [], + "primary_language": "HCL", + "private": false, + "repo_id": 1100, + "security_and_analysis": [ + { + "advanced_security": [ + { + "status": "disabled" + } + ], + "secret_scanning": [ + { + "status": "disabled" + } + ], + "secret_scanning_push_protection": [ + { + "status": "disabled" + } + ] + } + ], + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "ssh_clone_url": "git@github.e.it.census.gov:CSVD/tf-caching.git", + "svn_url": "https://github.e.it.census.gov/CSVD/tf-caching", + "template": [], + "topics": [ + "terraform-tools" + ], + "visibility": "public", + "vulnerability_alerts": false, + "web_commit_signoff_required": false + }, + "sensitive_values": { + "pages": [], + "security_and_analysis": [ + { + "advanced_security": [ + {} + ], + "secret_scanning": [ + {} + ], + "secret_scanning_push_protection": [ + {} + ] + } + ], + "template": [], + "topics": [ + false + ] + } + }, + { + "address": "module.repo_list[\"tf-caching\"].github_repository_collaborator.collaborators[\"gomez385\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "gomez385", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "tf-caching:gomez385", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "tf-caching", + "username": "gomez385" + }, + "sensitive_values": {}, + "depends_on": [ + "module.repo_list.github_repository.repo" + ] + }, + { + "address": "module.repo_list[\"tf-caching\"].github_repository_collaborator.collaborators[\"morga471\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "morga471", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "tf-caching:morga471", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "tf-caching", + "username": "morga471" + }, + "sensitive_values": {}, + "depends_on": [ + "module.repo_list.github_repository.repo" + ] + }, + { + "address": "module.repo_list[\"tf-caching\"].github_repository_collaborator.collaborators[\"naray007\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "naray007", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "tf-caching:naray007", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "tf-caching", + "username": "naray007" + }, + "sensitive_values": {}, + "depends_on": [ + "module.repo_list.github_repository.repo" + ] + } + ], + "address": "module.repo_list[\"tf-caching\"]" + }, + { + "resources": [ + { + "address": "module.repo_list[\"tf-tools\"].data.github_user.pull_request_bypassers[\"arnol377\"]", + "mode": "data", + "type": "github_user", + "name": "pull_request_bypassers", + "index": "arnol377", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "avatar_url": "https://github.e.it.census.gov/avatars/u/549?", + "bio": "", + "blog": "", + "company": "", + "created_at": "2023-12-26 17:20:24 +0000 UTC", + "email": "", + "followers": 0, + "following": 0, + "gpg_keys": [], + "gravatar_id": "", + "id": "549", + "location": "", + "login": "arnol377", + "name": "David John Arnold Jr", + "node_id": "MDQ6VXNlcjU0OQ==", + "public_gists": 0, + "public_repos": 4, + "site_admin": false, + "ssh_keys": [ + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDBL3xJ3zSxE6Qv8k9b06oFB4dbq2+PiOmsnIfAgL2XZpEenD03jhCF28iAZVy9oovuBCbcyAE9BjTRdWFSjd1dmHthbGe5Jv0/DweNFB/YmX6wJ6knljTA3frkY9bVS9+rqY6N4GG3oG6lyyk7cBaUEagXF4VQQJqX4l7XG1xxUfKLFFhF3Lq+CDg39FwlKk+QxIWMrbRJdpRBDZ03VZnKcgP0m/5K8PrcyGbxOK8qeVREUaqvmQN2Rs4LD1REPZyr3GQ2gtgpqrJ3hym7TwJw3Xl5NW8Y7RAeENem2K3EKoq6qq/wB/YUqMhKD228w5J6B+CoI8nvDqAWZkNAz/uY/GJe4elRJCmFH2F+r3263R5oDnXWSluB7XIm3b+Xt24F8MwoltejSEma41c8FM/xbF3Kle8ofBGFPEXpNDAxICVbyZ6OE4TyqTGKA8xgg9vnR3hCGGERtLYHhPw0aVHY7Zew/6/QV9o6/reO96V92zpXVEpvO09Z40fvTd5cN68=", + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDXRnBg+dayTonnZY3i0dDEHXUFMhcJKtqiFO7Oe/ejasDeW2I+L0f1gg+7u1ms/g8E28/RARN3R1aMnbGvXWdP/yBrhtpWJc5TXK+f33S5lYYjptJ2F6vj7jiRU7pP4uL9wqknj0DoSD0krAEbA85mBJgIV1viL8ZBtT/8iBoD6kHGRXaHpRH5sIFaURRJCcUTJhdqMUPd6bYKE/Bc6ioQLAEow0JB4ju1jPa7fOxhgVrIYxRiMkismhR0WLopB5JxyYDNmIyjUL2vGt9Kpd41DELv+Pn7EaP2HLjubVruWFnxnhZ7nvQwMonnZvjD3f5yPkDUkWnwaVGqw8cm9PFM4buFRmGpsl8YqTFakYgqc+JVDQB8bb9a9sr5/6Hbn41VcXd+KV6dTMK4PKSQFKLaq54ExzlwnE/EHnduE8JgvsfAa316/etFlzTQOBv1KbL8RKK0/vy6wJpiK9laDbymsOJPjZekoc/TD1AIvfWF9oae6wAU86tBVGdEO/JMOMc=", + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCvlUlp/OjFsa4fINqqMXukveo+mCu0Ywp0wwVCURkfJpPFPMdmbp07WlULCX6VgmqH4joCA+LUyY+q6iBZw80lS66lpDcRHMTG4PV7IsPpoYN20bUnm30vdqug/P1wVDuOO9B83+s3QFeBl9WbHQB3YY5pBulZGLIGw26qrLwfM5UJ4P/Ffca7ca9PM7KEkwqOC9xMfJy3tFkzD2Rjo2AHN9s7xHtpf95m8MzToy1Q7ykU/8bhImOrkZKaJJtIfmykYhebKDpeETEWJiyyaubIl71KAsWacrvQnEfo2fe62kR3SGv2auPDxMaGKPqtDpe2e/Y9I85Fv3tfWk53DDFoZNzExT4jc825bCqqz2DBbz4Q/Miw3rcdHx7uaRHinEJsBveNhZSH31GMLtU/dVNF3TNhlEH62Zmjgu7IpWb6Tr/4KnLjf/0p7ye34jP49nv1iBj99j3p1hwgAGU56ag4j7TW/iMh+uH+pg1hm6xZjhFInZGzQqtMl/qjBlr1oJ8=", + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCNVaIVHzjCkmCyQnpHfgLLvPtc96PVg/+8/cT2ty6TFe3ALaZJSHTWXjOPJaSkhBef2PCmbcsd3+p+QDl87nRl9O5fV376mrGwsxlpI2a1FnzpBkAEpZ2KyE4B593xGlpmvrMOF9gY4qGdNHCXw2puZ/IkmYaiROYpL2ptiSfTGc1R/ZrEvs0fhYwyi4xYfb+iGVSvjhhTqzJYNW6IBmMZVbDCdYX+JvSKsZYydnkHg7d9QJORZ3TnPe3Tmnn+PAse9V0z9VKOScfoRNT+Co9ezLGWNY+Dnnwg0jouA76/CiIIjWunJzLsIeu7cqNwubKO8lsLX9O+6zKR46EEaVr1VoC395IPvBy8x+VWUSpI+M7GLh0iPE56EvwiVm8irTkmY6WPsQ8PMJ5IWZE/OA6w6fupiSgBd5myFpB/wa8yVdY+UPfh40HpEXt0+iPeWK9kz/fJQAgow/FJAAsnI65JdVP4woAUYnmoJ0l6qgDyFQbOxcq7NZdmedHtRz049hM=" + ], + "suspended_at": "0001-01-01 00:00:00 +0000 UTC", + "updated_at": "2024-09-19 17:49:11 +0000 UTC", + "username": "arnol377" + }, + "sensitive_values": { + "gpg_keys": [], + "ssh_keys": [ + false, + false, + false, + false + ] + } + }, + { + "address": "module.repo_list[\"tf-tools\"].data.github_user.pull_request_bypassers[\"gomez385\"]", + "mode": "data", + "type": "github_user", + "name": "pull_request_bypassers", + "index": "gomez385", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "avatar_url": "https://github.e.it.census.gov/avatars/u/603?", + "bio": "", + "blog": "", + "company": "", + "created_at": "2024-06-13 14:57:04 +0000 UTC", + "email": "", + "followers": 0, + "following": 1, + "gpg_keys": [], + "gravatar_id": "", + "id": "603", + "location": "", + "login": "gomez385", + "name": "James Farr Gomez", + "node_id": "MDQ6VXNlcjYwMw==", + "public_gists": 0, + "public_repos": 0, + "site_admin": false, + "ssh_keys": [ + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDuGCb6WHZ8kex7gawtk2pmHd8t77HQ0LE+7sanVKoC5cWC/7RlefKBuH5c8F2RmmB1EaVFT2ylCsR0qnPT8xGH7gjrkRs/B8LAcwvXifev1BkPSE1gJT+lQpnwPkfqBuCbsewOR1XyPqQt5SZh4a9w7GDvBsfO2Ate9ADtX0nsI76t2DURR32ptBKnN2TtYqnD5D3VKV2lhiI2tnz8sO5FZzYycCONsv570N/itwT34gKSLVRsj+0YmPjmOU+7JWpXxdtjocw06ZEGnSyInIH4VJVROE0p3Z63xHQ9fxDtnW71zf0a9UeoY5Vb/b7PbK4NF3Dp9gG8iaL9dqeiZ1XTCcXHDyHGVFej3sl0CkB+BQ/Gz9ZCqkSBcA+n9WA5KclNuOMwe4eLXRwg/gxxmAJB707gXUk+nSPGwYTObtm0+lfspCNQxAFry8gX39mdVqnaCz1agzmwZo7rRls+BZPfDPg3YUkB3v9P8y/cbO6Bn5IRmYB2KQ73E7X8QJcW0+E=", + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQDROzDzCBisy3+PvtvvCt7XxuEpNAwBS6SoK2wKJNnGgYPs8zInboOVZWqRXujOWOySPCloBfYU5B2eg94cVoDnTnc9dArWhBOK0aY93XM7/0s3/01w3Kkyi25oJytr0NRI8liZq6DnF9hFiqxRVcJkoS4+I9t9G3MURjVbcNY10+bIs6Dp9sbnJaJEWvvsbAiz1WdZBAsF3eW20mNkzmQtYoASHWv3AD/j+xLRYvx2sVcPXIGQ4fw3FqQIUOkbVQUW2lCBp+BVZgR1U4dKh5lejddxd7bXblWxJ5qqWPXulqCnUrJBBTWxTPrUxBzcZtxLAj8C04PyZPJYWVVbhuxkMgA7VeUHeZ/iFT6LZeqVtwTDlEPCzShCdIC0JWKzxI+I663YeSf2y1Jh3qT/R+e0qcduEmL3bdE+PyyvQks8WCXVfXtJeHQfkPKcy9gARpQScY/6vSyZbJNfIW1VagCCRZp54AzOlhKTUy2r97zlrzB9gBPU2ycbmLFYOglVrw6Fo6ECV8slQIxuz0lS0RbEI/+c9jWxKqcSrb0zCEgoL+HEdGaElTRENPhApPXZO+YlFZkg9NY9t+uGWCu2xPgSiR2fn44QzfWypxCq05G0fNRQRRIuMnpjkXlv66O/hju+xMTG1fVyKSKq5CA1bDdDn9euZ7Q6OAFsQX73hdYn6Q==" + ], + "suspended_at": "0001-01-01 00:00:00 +0000 UTC", + "updated_at": "2024-09-26 18:00:48 +0000 UTC", + "username": "gomez385" + }, + "sensitive_values": { + "gpg_keys": [], + "ssh_keys": [ + false, + false + ] + } + }, + { + "address": "module.repo_list[\"tf-tools\"].github_repository.repo", + "mode": "managed", + "type": "github_repository", + "name": "repo", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 1, + "values": { + "allow_auto_merge": false, + "allow_merge_commit": false, + "allow_rebase_merge": false, + "allow_squash_merge": true, + "allow_update_branch": false, + "archive_on_destroy": true, + "archived": false, + "auto_init": true, + "default_branch": "main", + "delete_branch_on_merge": true, + "description": "Tools for managing Terraform", + "etag": "W/\"d1710d2138a2f53f9531ba47fcc1aedfba1c84fb09fd10113527aba58c749e49\"", + "full_name": "CSVD/tf-tools", + "git_clone_url": "git://github.e.it.census.gov/CSVD/tf-tools.git", + "gitignore_template": "", + "has_discussions": false, + "has_downloads": false, + "has_issues": true, + "has_projects": true, + "has_wiki": true, + "homepage_url": "", + "html_url": "https://github.e.it.census.gov/CSVD/tf-tools", + "http_clone_url": "https://github.e.it.census.gov/CSVD/tf-tools.git", + "id": "tf-tools", + "ignore_vulnerability_alerts_during_read": null, + "is_template": false, + "license_template": null, + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "name": "tf-tools", + "node_id": "MDEwOlJlcG9zaXRvcnkxMDU2", + "pages": [], + "primary_language": "", + "private": false, + "repo_id": 1056, + "security_and_analysis": [ + { + "advanced_security": [ + { + "status": "disabled" + } + ], + "secret_scanning": [ + { + "status": "disabled" + } + ], + "secret_scanning_push_protection": [ + { + "status": "disabled" + } + ] + } + ], + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "ssh_clone_url": "git@github.e.it.census.gov:CSVD/tf-tools.git", + "svn_url": "https://github.e.it.census.gov/CSVD/tf-tools", + "template": [], + "topics": [ + "terraform-tools" + ], + "visibility": "public", + "vulnerability_alerts": false, + "web_commit_signoff_required": false + }, + "sensitive_values": { + "pages": [], + "security_and_analysis": [ + { + "advanced_security": [ + {} + ], + "secret_scanning": [ + {} + ], + "secret_scanning_push_protection": [ + {} + ] + } + ], + "template": [], + "topics": [ + false + ] + } + }, + { + "address": "module.repo_list[\"tf-tools\"].github_repository_collaborator.collaborators[\"gomez385\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "gomez385", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "tf-tools:gomez385", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "tf-tools", + "username": "gomez385" + }, + "sensitive_values": {}, + "depends_on": [ + "module.repo_list.github_repository.repo" + ] + }, + { + "address": "module.repo_list[\"tf-tools\"].github_repository_collaborator.collaborators[\"morga471\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "morga471", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "tf-tools:morga471", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "tf-tools", + "username": "morga471" + }, + "sensitive_values": {}, + "depends_on": [ + "module.repo_list.github_repository.repo" + ] + }, + { + "address": "module.repo_list[\"tf-tools\"].github_repository_collaborator.collaborators[\"naray007\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "naray007", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "tf-tools:naray007", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "tf-tools", + "username": "naray007" + }, + "sensitive_values": {}, + "depends_on": [ + "module.repo_list.github_repository.repo" + ] + } + ], + "address": "module.repo_list[\"tf-tools\"]" + }, + { + "resources": [ + { + "address": "module.repo_list[\"vpc-services\"].data.github_user.pull_request_bypassers[\"arnol377\"]", + "mode": "data", + "type": "github_user", + "name": "pull_request_bypassers", + "index": "arnol377", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "avatar_url": "https://github.e.it.census.gov/avatars/u/549?", + "bio": "", + "blog": "", + "company": "", + "created_at": "2023-12-26 17:20:24 +0000 UTC", + "email": "", + "followers": 0, + "following": 0, + "gpg_keys": [], + "gravatar_id": "", + "id": "549", + "location": "", + "login": "arnol377", + "name": "David John Arnold Jr", + "node_id": "MDQ6VXNlcjU0OQ==", + "public_gists": 0, + "public_repos": 4, + "site_admin": false, + "ssh_keys": [ + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDBL3xJ3zSxE6Qv8k9b06oFB4dbq2+PiOmsnIfAgL2XZpEenD03jhCF28iAZVy9oovuBCbcyAE9BjTRdWFSjd1dmHthbGe5Jv0/DweNFB/YmX6wJ6knljTA3frkY9bVS9+rqY6N4GG3oG6lyyk7cBaUEagXF4VQQJqX4l7XG1xxUfKLFFhF3Lq+CDg39FwlKk+QxIWMrbRJdpRBDZ03VZnKcgP0m/5K8PrcyGbxOK8qeVREUaqvmQN2Rs4LD1REPZyr3GQ2gtgpqrJ3hym7TwJw3Xl5NW8Y7RAeENem2K3EKoq6qq/wB/YUqMhKD228w5J6B+CoI8nvDqAWZkNAz/uY/GJe4elRJCmFH2F+r3263R5oDnXWSluB7XIm3b+Xt24F8MwoltejSEma41c8FM/xbF3Kle8ofBGFPEXpNDAxICVbyZ6OE4TyqTGKA8xgg9vnR3hCGGERtLYHhPw0aVHY7Zew/6/QV9o6/reO96V92zpXVEpvO09Z40fvTd5cN68=", + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDXRnBg+dayTonnZY3i0dDEHXUFMhcJKtqiFO7Oe/ejasDeW2I+L0f1gg+7u1ms/g8E28/RARN3R1aMnbGvXWdP/yBrhtpWJc5TXK+f33S5lYYjptJ2F6vj7jiRU7pP4uL9wqknj0DoSD0krAEbA85mBJgIV1viL8ZBtT/8iBoD6kHGRXaHpRH5sIFaURRJCcUTJhdqMUPd6bYKE/Bc6ioQLAEow0JB4ju1jPa7fOxhgVrIYxRiMkismhR0WLopB5JxyYDNmIyjUL2vGt9Kpd41DELv+Pn7EaP2HLjubVruWFnxnhZ7nvQwMonnZvjD3f5yPkDUkWnwaVGqw8cm9PFM4buFRmGpsl8YqTFakYgqc+JVDQB8bb9a9sr5/6Hbn41VcXd+KV6dTMK4PKSQFKLaq54ExzlwnE/EHnduE8JgvsfAa316/etFlzTQOBv1KbL8RKK0/vy6wJpiK9laDbymsOJPjZekoc/TD1AIvfWF9oae6wAU86tBVGdEO/JMOMc=", + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCvlUlp/OjFsa4fINqqMXukveo+mCu0Ywp0wwVCURkfJpPFPMdmbp07WlULCX6VgmqH4joCA+LUyY+q6iBZw80lS66lpDcRHMTG4PV7IsPpoYN20bUnm30vdqug/P1wVDuOO9B83+s3QFeBl9WbHQB3YY5pBulZGLIGw26qrLwfM5UJ4P/Ffca7ca9PM7KEkwqOC9xMfJy3tFkzD2Rjo2AHN9s7xHtpf95m8MzToy1Q7ykU/8bhImOrkZKaJJtIfmykYhebKDpeETEWJiyyaubIl71KAsWacrvQnEfo2fe62kR3SGv2auPDxMaGKPqtDpe2e/Y9I85Fv3tfWk53DDFoZNzExT4jc825bCqqz2DBbz4Q/Miw3rcdHx7uaRHinEJsBveNhZSH31GMLtU/dVNF3TNhlEH62Zmjgu7IpWb6Tr/4KnLjf/0p7ye34jP49nv1iBj99j3p1hwgAGU56ag4j7TW/iMh+uH+pg1hm6xZjhFInZGzQqtMl/qjBlr1oJ8=", + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCNVaIVHzjCkmCyQnpHfgLLvPtc96PVg/+8/cT2ty6TFe3ALaZJSHTWXjOPJaSkhBef2PCmbcsd3+p+QDl87nRl9O5fV376mrGwsxlpI2a1FnzpBkAEpZ2KyE4B593xGlpmvrMOF9gY4qGdNHCXw2puZ/IkmYaiROYpL2ptiSfTGc1R/ZrEvs0fhYwyi4xYfb+iGVSvjhhTqzJYNW6IBmMZVbDCdYX+JvSKsZYydnkHg7d9QJORZ3TnPe3Tmnn+PAse9V0z9VKOScfoRNT+Co9ezLGWNY+Dnnwg0jouA76/CiIIjWunJzLsIeu7cqNwubKO8lsLX9O+6zKR46EEaVr1VoC395IPvBy8x+VWUSpI+M7GLh0iPE56EvwiVm8irTkmY6WPsQ8PMJ5IWZE/OA6w6fupiSgBd5myFpB/wa8yVdY+UPfh40HpEXt0+iPeWK9kz/fJQAgow/FJAAsnI65JdVP4woAUYnmoJ0l6qgDyFQbOxcq7NZdmedHtRz049hM=" + ], + "suspended_at": "0001-01-01 00:00:00 +0000 UTC", + "updated_at": "2024-09-19 17:49:11 +0000 UTC", + "username": "arnol377" + }, + "sensitive_values": { + "gpg_keys": [], + "ssh_keys": [ + false, + false, + false, + false + ] + } + }, + { + "address": "module.repo_list[\"vpc-services\"].data.github_user.pull_request_bypassers[\"gomez385\"]", + "mode": "data", + "type": "github_user", + "name": "pull_request_bypassers", + "index": "gomez385", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "avatar_url": "https://github.e.it.census.gov/avatars/u/603?", + "bio": "", + "blog": "", + "company": "", + "created_at": "2024-06-13 14:57:04 +0000 UTC", + "email": "", + "followers": 0, + "following": 1, + "gpg_keys": [], + "gravatar_id": "", + "id": "603", + "location": "", + "login": "gomez385", + "name": "James Farr Gomez", + "node_id": "MDQ6VXNlcjYwMw==", + "public_gists": 0, + "public_repos": 0, + "site_admin": false, + "ssh_keys": [ + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDuGCb6WHZ8kex7gawtk2pmHd8t77HQ0LE+7sanVKoC5cWC/7RlefKBuH5c8F2RmmB1EaVFT2ylCsR0qnPT8xGH7gjrkRs/B8LAcwvXifev1BkPSE1gJT+lQpnwPkfqBuCbsewOR1XyPqQt5SZh4a9w7GDvBsfO2Ate9ADtX0nsI76t2DURR32ptBKnN2TtYqnD5D3VKV2lhiI2tnz8sO5FZzYycCONsv570N/itwT34gKSLVRsj+0YmPjmOU+7JWpXxdtjocw06ZEGnSyInIH4VJVROE0p3Z63xHQ9fxDtnW71zf0a9UeoY5Vb/b7PbK4NF3Dp9gG8iaL9dqeiZ1XTCcXHDyHGVFej3sl0CkB+BQ/Gz9ZCqkSBcA+n9WA5KclNuOMwe4eLXRwg/gxxmAJB707gXUk+nSPGwYTObtm0+lfspCNQxAFry8gX39mdVqnaCz1agzmwZo7rRls+BZPfDPg3YUkB3v9P8y/cbO6Bn5IRmYB2KQ73E7X8QJcW0+E=", + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQDROzDzCBisy3+PvtvvCt7XxuEpNAwBS6SoK2wKJNnGgYPs8zInboOVZWqRXujOWOySPCloBfYU5B2eg94cVoDnTnc9dArWhBOK0aY93XM7/0s3/01w3Kkyi25oJytr0NRI8liZq6DnF9hFiqxRVcJkoS4+I9t9G3MURjVbcNY10+bIs6Dp9sbnJaJEWvvsbAiz1WdZBAsF3eW20mNkzmQtYoASHWv3AD/j+xLRYvx2sVcPXIGQ4fw3FqQIUOkbVQUW2lCBp+BVZgR1U4dKh5lejddxd7bXblWxJ5qqWPXulqCnUrJBBTWxTPrUxBzcZtxLAj8C04PyZPJYWVVbhuxkMgA7VeUHeZ/iFT6LZeqVtwTDlEPCzShCdIC0JWKzxI+I663YeSf2y1Jh3qT/R+e0qcduEmL3bdE+PyyvQks8WCXVfXtJeHQfkPKcy9gARpQScY/6vSyZbJNfIW1VagCCRZp54AzOlhKTUy2r97zlrzB9gBPU2ycbmLFYOglVrw6Fo6ECV8slQIxuz0lS0RbEI/+c9jWxKqcSrb0zCEgoL+HEdGaElTRENPhApPXZO+YlFZkg9NY9t+uGWCu2xPgSiR2fn44QzfWypxCq05G0fNRQRRIuMnpjkXlv66O/hju+xMTG1fVyKSKq5CA1bDdDn9euZ7Q6OAFsQX73hdYn6Q==" + ], + "suspended_at": "0001-01-01 00:00:00 +0000 UTC", + "updated_at": "2024-09-26 18:00:48 +0000 UTC", + "username": "gomez385" + }, + "sensitive_values": { + "gpg_keys": [], + "ssh_keys": [ + false, + false + ] + } + }, + { + "address": "module.repo_list[\"vpc-services\"].github_repository.repo", + "mode": "managed", + "type": "github_repository", + "name": "repo", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 1, + "values": { + "allow_auto_merge": false, + "allow_merge_commit": false, + "allow_rebase_merge": false, + "allow_squash_merge": true, + "allow_update_branch": false, + "archive_on_destroy": true, + "archived": false, + "auto_init": true, + "default_branch": "main", + "delete_branch_on_merge": true, + "description": "Add VPC Endpoints for Supported Services to given Subnet", + "etag": "W/\"8969d0ce7e0936f79fadaff73fe21b8c6f5ca99794c37d0ed1a53ad9457f4cc4\"", + "full_name": "CSVD/vpc-services", + "git_clone_url": "git://github.e.it.census.gov/CSVD/vpc-services.git", + "gitignore_template": "", + "has_discussions": false, + "has_downloads": false, + "has_issues": true, + "has_projects": true, + "has_wiki": true, + "homepage_url": "", + "html_url": "https://github.e.it.census.gov/CSVD/vpc-services", + "http_clone_url": "https://github.e.it.census.gov/CSVD/vpc-services.git", + "id": "vpc-services", + "ignore_vulnerability_alerts_during_read": null, + "is_template": false, + "license_template": null, + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "name": "vpc-services", + "node_id": "MDEwOlJlcG9zaXRvcnkxMDQz", + "pages": [], + "primary_language": "Python", + "private": false, + "repo_id": 1043, + "security_and_analysis": [ + { + "advanced_security": [ + { + "status": "disabled" + } + ], + "secret_scanning": [ + { + "status": "disabled" + } + ], + "secret_scanning_push_protection": [ + { + "status": "disabled" + } + ] + } + ], + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "ssh_clone_url": "git@github.e.it.census.gov:CSVD/vpc-services.git", + "svn_url": "https://github.e.it.census.gov/CSVD/vpc-services", + "template": [], + "topics": [ + "terraform" + ], + "visibility": "public", + "vulnerability_alerts": false, + "web_commit_signoff_required": false + }, + "sensitive_values": { + "pages": [], + "security_and_analysis": [ + { + "advanced_security": [ + {} + ], + "secret_scanning": [ + {} + ], + "secret_scanning_push_protection": [ + {} + ] + } + ], + "template": [], + "topics": [ + false + ] + } + }, + { + "address": "module.repo_list[\"vpc-services\"].github_repository_collaborator.collaborators[\"gomez385\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "gomez385", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "vpc-services:gomez385", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "vpc-services", + "username": "gomez385" + }, + "sensitive_values": {}, + "depends_on": [ + "module.repo_list.github_repository.repo" + ] + }, + { + "address": "module.repo_list[\"vpc-services\"].github_repository_collaborator.collaborators[\"morga471\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "morga471", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "vpc-services:morga471", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "vpc-services", + "username": "morga471" + }, + "sensitive_values": {}, + "depends_on": [ + "module.repo_list.github_repository.repo" + ] + }, + { + "address": "module.repo_list[\"vpc-services\"].github_repository_collaborator.collaborators[\"naray007\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "naray007", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "vpc-services:naray007", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "vpc-services", + "username": "naray007" + }, + "sensitive_values": {}, + "depends_on": [ + "module.repo_list.github_repository.repo" + ] + } + ], + "address": "module.repo_list[\"vpc-services\"]" + }, + { + "resources": [ + { + "address": "module.repo_list[\"windows-image-pipeline\"].data.github_user.pull_request_bypassers[\"arnol377\"]", + "mode": "data", + "type": "github_user", + "name": "pull_request_bypassers", + "index": "arnol377", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "avatar_url": "https://github.e.it.census.gov/avatars/u/549?", + "bio": "", + "blog": "", + "company": "", + "created_at": "2023-12-26 17:20:24 +0000 UTC", + "email": "", + "followers": 0, + "following": 0, + "gpg_keys": [], + "gravatar_id": "", + "id": "549", + "location": "", + "login": "arnol377", + "name": "David John Arnold Jr", + "node_id": "MDQ6VXNlcjU0OQ==", + "public_gists": 0, + "public_repos": 4, + "site_admin": false, + "ssh_keys": [ + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDBL3xJ3zSxE6Qv8k9b06oFB4dbq2+PiOmsnIfAgL2XZpEenD03jhCF28iAZVy9oovuBCbcyAE9BjTRdWFSjd1dmHthbGe5Jv0/DweNFB/YmX6wJ6knljTA3frkY9bVS9+rqY6N4GG3oG6lyyk7cBaUEagXF4VQQJqX4l7XG1xxUfKLFFhF3Lq+CDg39FwlKk+QxIWMrbRJdpRBDZ03VZnKcgP0m/5K8PrcyGbxOK8qeVREUaqvmQN2Rs4LD1REPZyr3GQ2gtgpqrJ3hym7TwJw3Xl5NW8Y7RAeENem2K3EKoq6qq/wB/YUqMhKD228w5J6B+CoI8nvDqAWZkNAz/uY/GJe4elRJCmFH2F+r3263R5oDnXWSluB7XIm3b+Xt24F8MwoltejSEma41c8FM/xbF3Kle8ofBGFPEXpNDAxICVbyZ6OE4TyqTGKA8xgg9vnR3hCGGERtLYHhPw0aVHY7Zew/6/QV9o6/reO96V92zpXVEpvO09Z40fvTd5cN68=", + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDXRnBg+dayTonnZY3i0dDEHXUFMhcJKtqiFO7Oe/ejasDeW2I+L0f1gg+7u1ms/g8E28/RARN3R1aMnbGvXWdP/yBrhtpWJc5TXK+f33S5lYYjptJ2F6vj7jiRU7pP4uL9wqknj0DoSD0krAEbA85mBJgIV1viL8ZBtT/8iBoD6kHGRXaHpRH5sIFaURRJCcUTJhdqMUPd6bYKE/Bc6ioQLAEow0JB4ju1jPa7fOxhgVrIYxRiMkismhR0WLopB5JxyYDNmIyjUL2vGt9Kpd41DELv+Pn7EaP2HLjubVruWFnxnhZ7nvQwMonnZvjD3f5yPkDUkWnwaVGqw8cm9PFM4buFRmGpsl8YqTFakYgqc+JVDQB8bb9a9sr5/6Hbn41VcXd+KV6dTMK4PKSQFKLaq54ExzlwnE/EHnduE8JgvsfAa316/etFlzTQOBv1KbL8RKK0/vy6wJpiK9laDbymsOJPjZekoc/TD1AIvfWF9oae6wAU86tBVGdEO/JMOMc=", + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCvlUlp/OjFsa4fINqqMXukveo+mCu0Ywp0wwVCURkfJpPFPMdmbp07WlULCX6VgmqH4joCA+LUyY+q6iBZw80lS66lpDcRHMTG4PV7IsPpoYN20bUnm30vdqug/P1wVDuOO9B83+s3QFeBl9WbHQB3YY5pBulZGLIGw26qrLwfM5UJ4P/Ffca7ca9PM7KEkwqOC9xMfJy3tFkzD2Rjo2AHN9s7xHtpf95m8MzToy1Q7ykU/8bhImOrkZKaJJtIfmykYhebKDpeETEWJiyyaubIl71KAsWacrvQnEfo2fe62kR3SGv2auPDxMaGKPqtDpe2e/Y9I85Fv3tfWk53DDFoZNzExT4jc825bCqqz2DBbz4Q/Miw3rcdHx7uaRHinEJsBveNhZSH31GMLtU/dVNF3TNhlEH62Zmjgu7IpWb6Tr/4KnLjf/0p7ye34jP49nv1iBj99j3p1hwgAGU56ag4j7TW/iMh+uH+pg1hm6xZjhFInZGzQqtMl/qjBlr1oJ8=", + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCNVaIVHzjCkmCyQnpHfgLLvPtc96PVg/+8/cT2ty6TFe3ALaZJSHTWXjOPJaSkhBef2PCmbcsd3+p+QDl87nRl9O5fV376mrGwsxlpI2a1FnzpBkAEpZ2KyE4B593xGlpmvrMOF9gY4qGdNHCXw2puZ/IkmYaiROYpL2ptiSfTGc1R/ZrEvs0fhYwyi4xYfb+iGVSvjhhTqzJYNW6IBmMZVbDCdYX+JvSKsZYydnkHg7d9QJORZ3TnPe3Tmnn+PAse9V0z9VKOScfoRNT+Co9ezLGWNY+Dnnwg0jouA76/CiIIjWunJzLsIeu7cqNwubKO8lsLX9O+6zKR46EEaVr1VoC395IPvBy8x+VWUSpI+M7GLh0iPE56EvwiVm8irTkmY6WPsQ8PMJ5IWZE/OA6w6fupiSgBd5myFpB/wa8yVdY+UPfh40HpEXt0+iPeWK9kz/fJQAgow/FJAAsnI65JdVP4woAUYnmoJ0l6qgDyFQbOxcq7NZdmedHtRz049hM=" + ], + "suspended_at": "0001-01-01 00:00:00 +0000 UTC", + "updated_at": "2024-09-19 17:49:11 +0000 UTC", + "username": "arnol377" + }, + "sensitive_values": { + "gpg_keys": [], + "ssh_keys": [ + false, + false, + false, + false + ] + } + }, + { + "address": "module.repo_list[\"windows-image-pipeline\"].data.github_user.pull_request_bypassers[\"gomez385\"]", + "mode": "data", + "type": "github_user", + "name": "pull_request_bypassers", + "index": "gomez385", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "avatar_url": "https://github.e.it.census.gov/avatars/u/603?", + "bio": "", + "blog": "", + "company": "", + "created_at": "2024-06-13 14:57:04 +0000 UTC", + "email": "", + "followers": 0, + "following": 1, + "gpg_keys": [], + "gravatar_id": "", + "id": "603", + "location": "", + "login": "gomez385", + "name": "James Farr Gomez", + "node_id": "MDQ6VXNlcjYwMw==", + "public_gists": 0, + "public_repos": 0, + "site_admin": false, + "ssh_keys": [ + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDuGCb6WHZ8kex7gawtk2pmHd8t77HQ0LE+7sanVKoC5cWC/7RlefKBuH5c8F2RmmB1EaVFT2ylCsR0qnPT8xGH7gjrkRs/B8LAcwvXifev1BkPSE1gJT+lQpnwPkfqBuCbsewOR1XyPqQt5SZh4a9w7GDvBsfO2Ate9ADtX0nsI76t2DURR32ptBKnN2TtYqnD5D3VKV2lhiI2tnz8sO5FZzYycCONsv570N/itwT34gKSLVRsj+0YmPjmOU+7JWpXxdtjocw06ZEGnSyInIH4VJVROE0p3Z63xHQ9fxDtnW71zf0a9UeoY5Vb/b7PbK4NF3Dp9gG8iaL9dqeiZ1XTCcXHDyHGVFej3sl0CkB+BQ/Gz9ZCqkSBcA+n9WA5KclNuOMwe4eLXRwg/gxxmAJB707gXUk+nSPGwYTObtm0+lfspCNQxAFry8gX39mdVqnaCz1agzmwZo7rRls+BZPfDPg3YUkB3v9P8y/cbO6Bn5IRmYB2KQ73E7X8QJcW0+E=", + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQDROzDzCBisy3+PvtvvCt7XxuEpNAwBS6SoK2wKJNnGgYPs8zInboOVZWqRXujOWOySPCloBfYU5B2eg94cVoDnTnc9dArWhBOK0aY93XM7/0s3/01w3Kkyi25oJytr0NRI8liZq6DnF9hFiqxRVcJkoS4+I9t9G3MURjVbcNY10+bIs6Dp9sbnJaJEWvvsbAiz1WdZBAsF3eW20mNkzmQtYoASHWv3AD/j+xLRYvx2sVcPXIGQ4fw3FqQIUOkbVQUW2lCBp+BVZgR1U4dKh5lejddxd7bXblWxJ5qqWPXulqCnUrJBBTWxTPrUxBzcZtxLAj8C04PyZPJYWVVbhuxkMgA7VeUHeZ/iFT6LZeqVtwTDlEPCzShCdIC0JWKzxI+I663YeSf2y1Jh3qT/R+e0qcduEmL3bdE+PyyvQks8WCXVfXtJeHQfkPKcy9gARpQScY/6vSyZbJNfIW1VagCCRZp54AzOlhKTUy2r97zlrzB9gBPU2ycbmLFYOglVrw6Fo6ECV8slQIxuz0lS0RbEI/+c9jWxKqcSrb0zCEgoL+HEdGaElTRENPhApPXZO+YlFZkg9NY9t+uGWCu2xPgSiR2fn44QzfWypxCq05G0fNRQRRIuMnpjkXlv66O/hju+xMTG1fVyKSKq5CA1bDdDn9euZ7Q6OAFsQX73hdYn6Q==" + ], + "suspended_at": "0001-01-01 00:00:00 +0000 UTC", + "updated_at": "2024-09-26 18:00:48 +0000 UTC", + "username": "gomez385" + }, + "sensitive_values": { + "gpg_keys": [], + "ssh_keys": [ + false, + false + ] + } + }, + { + "address": "module.repo_list[\"windows-image-pipeline\"].github_repository.repo", + "mode": "managed", + "type": "github_repository", + "name": "repo", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 1, + "values": { + "allow_auto_merge": false, + "allow_merge_commit": false, + "allow_rebase_merge": false, + "allow_squash_merge": true, + "allow_update_branch": false, + "archive_on_destroy": true, + "archived": false, + "auto_init": true, + "default_branch": "main", + "delete_branch_on_merge": true, + "description": "Template repo for windows image pipelines", + "etag": "W/\"fc963d8c556c73f42ddddb1b4f9d81d4f5fdd9c84aa49e56469aac6094ababc7\"", + "full_name": "CSVD/windows-image-pipeline", + "git_clone_url": "git://github.e.it.census.gov/CSVD/windows-image-pipeline.git", + "gitignore_template": "", + "has_discussions": false, + "has_downloads": false, + "has_issues": true, + "has_projects": true, + "has_wiki": true, + "homepage_url": "", + "html_url": "https://github.e.it.census.gov/CSVD/windows-image-pipeline", + "http_clone_url": "https://github.e.it.census.gov/CSVD/windows-image-pipeline.git", + "id": "windows-image-pipeline", + "ignore_vulnerability_alerts_during_read": null, + "is_template": false, + "license_template": null, + "merge_commit_message": "PR_TITLE", + "merge_commit_title": "MERGE_MESSAGE", + "name": "windows-image-pipeline", + "node_id": "MDEwOlJlcG9zaXRvcnk5NzY=", + "pages": [], + "primary_language": "PowerShell", + "private": true, + "repo_id": 976, + "security_and_analysis": [ + { + "advanced_security": [ + { + "status": "disabled" + } + ], + "secret_scanning": [ + { + "status": "disabled" + } + ], + "secret_scanning_push_protection": [ + { + "status": "disabled" + } + ] + } + ], + "squash_merge_commit_message": "COMMIT_MESSAGES", + "squash_merge_commit_title": "COMMIT_OR_PR_TITLE", + "ssh_clone_url": "git@github.e.it.census.gov:CSVD/windows-image-pipeline.git", + "svn_url": "https://github.e.it.census.gov/CSVD/windows-image-pipeline", + "template": [], + "topics": [ + "terraform" + ], + "visibility": "private", + "vulnerability_alerts": false, + "web_commit_signoff_required": false + }, + "sensitive_values": { + "pages": [], + "security_and_analysis": [ + { + "advanced_security": [ + {} + ], + "secret_scanning": [ + {} + ], + "secret_scanning_push_protection": [ + {} + ] + } + ], + "template": [], + "topics": [ + false + ] + } + }, + { + "address": "module.repo_list[\"windows-image-pipeline\"].github_repository_collaborator.collaborators[\"gomez385\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "gomez385", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "windows-image-pipeline:gomez385", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "windows-image-pipeline", + "username": "gomez385" + }, + "sensitive_values": {}, + "depends_on": [ + "module.repo_list.github_repository.repo" + ] + }, + { + "address": "module.repo_list[\"windows-image-pipeline\"].github_repository_collaborator.collaborators[\"morga471\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "morga471", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "windows-image-pipeline:morga471", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "windows-image-pipeline", + "username": "morga471" + }, + "sensitive_values": {}, + "depends_on": [ + "module.repo_list.github_repository.repo" + ] + }, + { + "address": "module.repo_list[\"windows-image-pipeline\"].github_repository_collaborator.collaborators[\"naray007\"]", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "index": "naray007", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "id": "windows-image-pipeline:naray007", + "invitation_id": null, + "permission": "admin", + "permission_diff_suppression": false, + "repository": "windows-image-pipeline", + "username": "naray007" + }, + "sensitive_values": {}, + "depends_on": [ + "module.repo_list.github_repository.repo" + ] + }, + { + "address": "module.repo_list[\"windows-image-pipeline\"].github_repository_file.managed_extra_files[\"s3_upload.yaml\"]", + "mode": "managed", + "type": "github_repository_file", + "name": "managed_extra_files", + "index": "s3_upload.yaml", + "provider_name": "registry.terraform.io/integrations/github", + "schema_version": 0, + "values": { + "autocreate_branch": false, + "autocreate_branch_source_branch": "main", + "autocreate_branch_source_sha": null, + "branch": "main", + "commit_author": null, + "commit_email": null, + "commit_message": "Update .github/workflows/s3_upload.yaml", + "commit_sha": "1baa59fb5fd836bc27589385c4c19f0ebc3cd472", + "content": "# This is a basic workflow to help you get started with Actions\nname: S3 Upload\n\non:\n push:\n branches: [ \"main\" ]\n # Allows you to run this workflow manually from the Actions tab\n workflow_dispatch:\n \n# A workflow run is made up of one or more jobs that can run sequentially or in parallel\njobs:\n # This workflow contains a single job called \"build\"\n build:\n # The type of runner that the job will run on\n runs-on: [ \"229685449397\" ]\n \n # Steps represent a sequence of tasks that will be executed as part of the job\n steps:\n # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it\n - uses: CSVD/gh-actions-checkout@v4\n id: checkout\n with:\n persist-credentials: false\n\n - uses: CSVD/gh-actions-setup-node@v3\n with:\n node-version: 16\n \n - name: AWS Auth\n id: aws_auth\n uses: CSVD/aws-auth@main\n with:\n ecs: true\n\n - run: |\n zip -r windows-image-pipeline.zip *\n aws s3 cp windows-image-pipeline.zip s3://csvd-dev-ew-github-actions\n env:\n AWS_ACCESS_KEY_ID: ${{ steps.aws_auth.outputs.aws_access_key_id }}\n AWS_SECRET_ACCESS_KEY: ${{ steps.aws_auth.outputs.aws_secret_access_key }}\n AWS_SESSION_TOKEN: ${{ steps.aws_auth.outputs.aws_session_token }}\n", + "file": ".github/workflows/s3_upload.yaml", + "id": "windows-image-pipeline/.github/workflows/s3_upload.yaml", + "overwrite_on_create": true, + "ref": "main", + "repository": "windows-image-pipeline", + "sha": "5e9f4796f2b0984ab197852e12b20978270981a3" + }, + "sensitive_values": {}, + "depends_on": [ + "module.image_pipeline_repos.github_repository.repo" + ] + } + ], + "address": "module.repo_list[\"windows-image-pipeline\"]" + } + ] + } + } + }, + "configuration": { + "provider_config": { + "aws": { + "name": "aws", + "full_name": "registry.terraform.io/hashicorp/aws", + "version_constraint": "5.84.0" + }, + "aws.east": { + "name": "aws", + "full_name": "registry.terraform.io/hashicorp/aws", + "alias": "east", + "version_constraint": "5.84.0", + "expressions": { + "region": { + "constant_value": "us-gov-east-1" + } + } + }, + "aws.west": { + "name": "aws", + "full_name": "registry.terraform.io/hashicorp/aws", + "alias": "west", + "version_constraint": "5.84.0", + "expressions": { + "region": { + "constant_value": "us-gov-west-1" + } + } + }, + "github": { + "name": "github", + "full_name": "registry.terraform.io/integrations/github", + "version_constraint": ">= 6.5.0", + "expressions": { + "base_url": { + "constant_value": "https://github.e.it.census.gov/" + }, + "owner": { + "constant_value": "CSVD" + } + } + }, + "local": { + "name": "local", + "full_name": "registry.terraform.io/hashicorp/local", + "version_constraint": ">= 2.1.0" + }, + "null": { + "name": "null", + "full_name": "registry.terraform.io/hashicorp/null", + "version_constraint": ">= 3.0.0" + } + }, + "root_module": { + "resources": [ + { + "address": "aws_kms_alias.actions_bucket_east", + "mode": "managed", + "type": "aws_kms_alias", + "name": "actions_bucket_east", + "provider_config_key": "aws.east", + "expressions": { + "name": { + "references": [ + "local.east_bucket_name" + ] + }, + "target_key_id": { + "references": [ + "aws_kms_key.actions_bucket_east.key_id", + "aws_kms_key.actions_bucket_east" + ] + } + }, + "schema_version": 0 + }, + { + "address": "aws_kms_alias.actions_bucket_west", + "mode": "managed", + "type": "aws_kms_alias", + "name": "actions_bucket_west", + "provider_config_key": "aws.west", + "expressions": { + "name": { + "references": [ + "local.base_bucket_name" + ] + }, + "target_key_id": { + "references": [ + "aws_kms_key.actions_bucket_west.key_id", + "aws_kms_key.actions_bucket_west" + ] + } + }, + "schema_version": 0 + }, + { + "address": "aws_kms_key.actions_bucket_east", + "mode": "managed", + "type": "aws_kms_key", + "name": "actions_bucket_east", + "provider_config_key": "aws.east", + "expressions": { + "deletion_window_in_days": { + "references": [ + "local.kms_key_deletion_days" + ] + }, + "description": { + "references": [ + "local.kms_description" + ] + }, + "enable_key_rotation": { + "references": [ + "local.enable_key_rotation" + ] + }, + "policy": { + "references": [ + "data.aws_partition.current.partition", + "data.aws_partition.current", + "data.aws_caller_identity.current.account_id", + "data.aws_caller_identity.current" + ] + } + }, + "schema_version": 0 + }, + { + "address": "aws_kms_key.actions_bucket_west", + "mode": "managed", + "type": "aws_kms_key", + "name": "actions_bucket_west", + "provider_config_key": "aws.west", + "expressions": { + "deletion_window_in_days": { + "references": [ + "local.kms_key_deletion_days" + ] + }, + "description": { + "references": [ + "local.kms_description" + ] + }, + "enable_key_rotation": { + "references": [ + "local.enable_key_rotation" + ] + }, + "policy": { + "references": [ + "data.aws_partition.current.partition", + "data.aws_partition.current", + "data.aws_caller_identity.current.account_id", + "data.aws_caller_identity.current" + ] + } + }, + "schema_version": 0 + }, + { + "address": "aws_s3_bucket.actions_east", + "mode": "managed", + "type": "aws_s3_bucket", + "name": "actions_east", + "provider_config_key": "aws.east", + "expressions": { + "bucket": { + "references": [ + "local.east_bucket_name" + ] + } + }, + "schema_version": 0 + }, + { + "address": "aws_s3_bucket.actions_west", + "mode": "managed", + "type": "aws_s3_bucket", + "name": "actions_west", + "provider_config_key": "aws.west", + "expressions": { + "bucket": { + "references": [ + "local.base_bucket_name" + ] + } + }, + "schema_version": 0 + }, + { + "address": "aws_s3_bucket_policy.actions_east", + "mode": "managed", + "type": "aws_s3_bucket_policy", + "name": "actions_east", + "provider_config_key": "aws.east", + "expressions": { + "bucket": { + "references": [ + "aws_s3_bucket.actions_east.id", + "aws_s3_bucket.actions_east" + ] + }, + "policy": { + "references": [ + "data.aws_partition.current.partition", + "data.aws_partition.current", + "data.aws_caller_identity.current.account_id", + "data.aws_caller_identity.current", + "local.ecs_s3_actions", + "aws_s3_bucket.actions_east.arn", + "aws_s3_bucket.actions_east", + "aws_s3_bucket.actions_east.arn", + "aws_s3_bucket.actions_east" + ] + } + }, + "schema_version": 0 + }, + { + "address": "aws_s3_bucket_policy.actions_west", + "mode": "managed", + "type": "aws_s3_bucket_policy", + "name": "actions_west", + "provider_config_key": "aws.west", + "expressions": { + "bucket": { + "references": [ + "aws_s3_bucket.actions_west.id", + "aws_s3_bucket.actions_west" + ] + }, + "policy": { + "references": [ + "data.aws_partition.current.partition", + "data.aws_partition.current", + "data.aws_caller_identity.current.account_id", + "data.aws_caller_identity.current", + "local.ecs_s3_actions", + "aws_s3_bucket.actions_west.arn", + "aws_s3_bucket.actions_west", + "aws_s3_bucket.actions_west.arn", + "aws_s3_bucket.actions_west" + ] + } + }, + "schema_version": 0 + }, + { + "address": "aws_s3_bucket_public_access_block.actions_east", + "mode": "managed", + "type": "aws_s3_bucket_public_access_block", + "name": "actions_east", + "provider_config_key": "aws.east", + "expressions": { + "block_public_acls": { + "constant_value": true + }, + "block_public_policy": { + "constant_value": true + }, + "bucket": { + "references": [ + "aws_s3_bucket.actions_east.id", + "aws_s3_bucket.actions_east" + ] + }, + "ignore_public_acls": { + "constant_value": true + }, + "restrict_public_buckets": { + "constant_value": true + } + }, + "schema_version": 0 + }, + { + "address": "aws_s3_bucket_public_access_block.actions_west", + "mode": "managed", + "type": "aws_s3_bucket_public_access_block", + "name": "actions_west", + "provider_config_key": "aws.west", + "expressions": { + "block_public_acls": { + "constant_value": true + }, + "block_public_policy": { + "constant_value": true + }, + "bucket": { + "references": [ + "aws_s3_bucket.actions_west.id", + "aws_s3_bucket.actions_west" + ] + }, + "ignore_public_acls": { + "constant_value": true + }, + "restrict_public_buckets": { + "constant_value": true + } + }, + "schema_version": 0 + }, + { + "address": "aws_s3_bucket_server_side_encryption_configuration.actions_east", + "mode": "managed", + "type": "aws_s3_bucket_server_side_encryption_configuration", + "name": "actions_east", + "provider_config_key": "aws.east", + "expressions": { + "bucket": { + "references": [ + "aws_s3_bucket.actions_east.id", + "aws_s3_bucket.actions_east" + ] + }, + "rule": [ + { + "apply_server_side_encryption_by_default": [ + { + "kms_master_key_id": { + "references": [ + "aws_kms_key.actions_bucket_east.arn", + "aws_kms_key.actions_bucket_east" + ] + }, + "sse_algorithm": { + "constant_value": "aws:kms" + } + } + ] + } + ] + }, + "schema_version": 0 + }, + { + "address": "aws_s3_bucket_server_side_encryption_configuration.actions_west", + "mode": "managed", + "type": "aws_s3_bucket_server_side_encryption_configuration", + "name": "actions_west", + "provider_config_key": "aws.west", + "expressions": { + "bucket": { + "references": [ + "aws_s3_bucket.actions_west.id", + "aws_s3_bucket.actions_west" + ] + }, + "rule": [ + { + "apply_server_side_encryption_by_default": [ + { + "kms_master_key_id": { + "references": [ + "aws_kms_key.actions_bucket_west.arn", + "aws_kms_key.actions_bucket_west" + ] + }, + "sse_algorithm": { + "constant_value": "aws:kms" + } + } + ] + } + ] + }, + "schema_version": 0 + }, + { + "address": "aws_s3_bucket_versioning.actions_east", + "mode": "managed", + "type": "aws_s3_bucket_versioning", + "name": "actions_east", + "provider_config_key": "aws.east", + "expressions": { + "bucket": { + "references": [ + "aws_s3_bucket.actions_east.id", + "aws_s3_bucket.actions_east" + ] + }, + "versioning_configuration": [ + { + "status": { + "constant_value": "Enabled" + } + } + ] + }, + "schema_version": 0 + }, + { + "address": "aws_s3_bucket_versioning.actions_west", + "mode": "managed", + "type": "aws_s3_bucket_versioning", + "name": "actions_west", + "provider_config_key": "aws.west", + "expressions": { + "bucket": { + "references": [ + "aws_s3_bucket.actions_west.id", + "aws_s3_bucket.actions_west" + ] + }, + "versioning_configuration": [ + { + "status": { + "constant_value": "Enabled" + } + } + ] + }, + "schema_version": 0 + }, + { + "address": "github_team.terraform_reviewers", + "mode": "managed", + "type": "github_team", + "name": "terraform_reviewers", + "provider_config_key": "github", + "expressions": { + "description": { + "constant_value": "Reviewers for changes in Terraform" + }, + "name": { + "constant_value": "terraform-reviewers" + }, + "privacy": { + "constant_value": "closed" + } + }, + "schema_version": 0 + }, + { + "address": "github_team_members.terraform_reviewer_members", + "mode": "managed", + "type": "github_team_members", + "name": "terraform_reviewer_members", + "provider_config_key": "github", + "expressions": { + "team_id": { + "references": [ + "github_team.terraform_reviewers.id", + "github_team.terraform_reviewers" + ] + } + }, + "schema_version": 0 + }, + { + "address": "data.aws_caller_identity.current", + "mode": "data", + "type": "aws_caller_identity", + "name": "current", + "provider_config_key": "aws", + "schema_version": 0 + }, + { + "address": "data.aws_partition.current", + "mode": "data", + "type": "aws_partition", + "name": "current", + "provider_config_key": "aws", + "schema_version": 0 + }, + { + "address": "data.github_organization_teams.teams", + "mode": "data", + "type": "github_organization_teams", + "name": "teams", + "provider_config_key": "github", + "schema_version": 0 + } + ], + "module_calls": { + "imported_repos": { + "source": "HappyPathway/gh-actions/importer", + "expressions": { + "github_repo_topics": { + "references": [ + "each.value.topics", + "each.value" + ] + }, + "internal_repo": { + "references": [ + "each.value.name", + "each.value", + "each.value.org", + "each.value", + "each.value.topics", + "each.value", + "each.value.collaborators", + "each.value" + ] + }, + "public_repo": { + "references": [ + "each.value.public_repo", + "each.value" + ] + }, + "vulnerability_alerts": { + "references": [ + "each.value.vulnerability_alerts", + "each.value" + ] + } + }, + "for_each_expression": { + "references": [ + "var.imported_repos" + ] + }, + "module": { + "outputs": { + "internal_repo": { + "expression": { + "references": [ + "module.internal_github_actions.github_repo", + "module.internal_github_actions" + ] + } + } + }, + "resources": [ + { + "address": "local_file.script", + "mode": "managed", + "type": "local_file", + "name": "script", + "provider_config_key": "local", + "expressions": { + "content": { + "references": [ + "path.module", + "local.repo_path", + "var.public_repo.clone_url", + "var.public_repo", + "module.internal_github_actions.github_repo.ssh_clone_url", + "module.internal_github_actions.github_repo", + "module.internal_github_actions", + "module.internal_github_actions.github_repo.default_branch", + "module.internal_github_actions.github_repo", + "module.internal_github_actions", + "var.public_repo.default_branch", + "var.public_repo", + "path.module" + ] + }, + "filename": { + "references": [ + "path.module" + ] + } + }, + "schema_version": 0 + }, + { + "address": "null_resource.git_import", + "mode": "managed", + "type": "null_resource", + "name": "git_import", + "provider_config_key": "null", + "provisioners": [ + { + "type": "local-exec", + "expressions": { + "command": { + "references": [ + "local_file.script.filename", + "local_file.script" + ] + } + } + } + ], + "schema_version": 0, + "depends_on": [ + "local_file.script" + ] + } + ], + "module_calls": { + "internal_github_actions": { + "source": "HappyPathway/repo/github", + "expressions": { + "admin_teams": { + "references": [ + "var.internal_repo.admin_teams", + "var.internal_repo" + ] + }, + "collaborators": { + "references": [ + "var.internal_repo.collaborators", + "var.internal_repo" + ] + }, + "create_codeowners": { + "constant_value": false + }, + "enforce_prs": { + "constant_value": false + }, + "force_name": { + "constant_value": true + }, + "github_is_private": { + "constant_value": false + }, + "github_org_teams": { + "references": [ + "var.github_org_teams" + ] + }, + "github_repo_description": { + "references": [ + "var.internal_repo.name", + "var.internal_repo" + ] + }, + "github_repo_topics": { + "references": [ + "var.github_repo_topics" + ] + }, + "name": { + "references": [ + "var.internal_repo.name", + "var.internal_repo" + ] + }, + "repo_org": { + "references": [ + "var.internal_repo.org", + "var.internal_repo" + ] + }, + "vulnerability_alerts": { + "references": [ + "var.vulnerability_alerts" + ] + } + }, + "module": { + "outputs": { + "default_branch": { + "expression": { + "references": [ + "local.github_repo.default_branch", + "local.github_repo" + ] + }, + "description": "Default branch of the repository" + }, + "full_name": { + "expression": { + "references": [ + "local.github_repo.full_name", + "local.github_repo" + ] + }, + "description": "Full name of the repository in org/repo format" + }, + "git_clone_url": { + "expression": { + "references": [ + "local.github_repo.git_clone_url", + "local.github_repo" + ] + }, + "description": "URL that can be provided to git clone to clone the repository anonymously via the git protocol" + }, + "github_repo": { + "expression": { + "references": [ + "local.github_repo" + ] + }, + "description": "All attributes of the GitHub repository" + }, + "html_url": { + "expression": { + "references": [ + "local.github_repo.html_url", + "local.github_repo" + ] + }, + "description": "URL to the repository on GitHub" + }, + "http_clone_url": { + "expression": { + "references": [ + "local.github_repo.http_clone_url", + "local.github_repo" + ] + }, + "description": "URL that can be provided to git clone to clone the repository via HTTPS" + }, + "node_id": { + "expression": { + "references": [ + "local.github_repo.node_id", + "local.github_repo" + ] + }, + "description": "Node ID of the repository, used for GraphQL API access" + }, + "repo_id": { + "expression": { + "references": [ + "local.github_repo.repo_id", + "local.github_repo" + ] + }, + "description": "Repository ID" + }, + "ssh_clone_url": { + "expression": { + "references": [ + "local.github_repo.ssh_clone_url", + "local.github_repo" + ] + }, + "description": "URL that can be provided to git clone to clone the repository via SSH" + }, + "template": { + "expression": { + "references": [ + "local.github_repo.template", + "local.github_repo" + ] + }, + "description": "Template repository this repository was created from" + }, + "topics": { + "expression": { + "references": [ + "local.github_repo.topics", + "local.github_repo" + ] + }, + "description": "List of topics applied to the repository" + }, + "visibility": { + "expression": { + "references": [ + "local.github_repo.visibility", + "local.github_repo" + ] + }, + "description": "Whether the repository is private or public" + } + }, + "resources": [ + { + "address": "github_actions_environment_secret.environment_secrets", + "mode": "managed", + "type": "github_actions_environment_secret", + "name": "environment_secrets", + "provider_config_key": "github", + "expressions": { + "environment": { + "references": [ + "each.value.env_name", + "each.value" + ] + }, + "plaintext_value": { + "references": [ + "each.value.value", + "each.value" + ] + }, + "repository": { + "references": [ + "github_repository.repo[0].name", + "github_repository.repo[0]", + "github_repository.repo" + ] + }, + "secret_name": { + "references": [ + "each.value.name", + "each.value" + ] + } + }, + "schema_version": 0, + "for_each_expression": { + "references": [ + "var.environments" + ] + }, + "depends_on": [ + "github_repository_environment.environments" + ] + }, + { + "address": "github_actions_environment_variable.environment_variables", + "mode": "managed", + "type": "github_actions_environment_variable", + "name": "environment_variables", + "provider_config_key": "github", + "expressions": { + "environment": { + "references": [ + "each.value.env_name", + "each.value" + ] + }, + "repository": { + "references": [ + "github_repository.repo[0].name", + "github_repository.repo[0]", + "github_repository.repo" + ] + }, + "value": { + "references": [ + "each.value.value", + "each.value" + ] + }, + "variable_name": { + "references": [ + "each.value.name", + "each.value" + ] + } + }, + "schema_version": 0, + "for_each_expression": { + "references": [ + "var.environments" + ] + }, + "depends_on": [ + "github_repository_environment.environments" + ] + }, + { + "address": "github_actions_secret.secret", + "mode": "managed", + "type": "github_actions_secret", + "name": "secret", + "provider_config_key": "github", + "expressions": { + "plaintext_value": { + "references": [ + "each.value" + ] + }, + "repository": { + "references": [ + "local.github_repo.name", + "local.github_repo" + ] + }, + "secret_name": { + "references": [ + "each.key" + ] + } + }, + "schema_version": 0, + "for_each_expression": { + "references": [ + "var.secrets" + ] + }, + "depends_on": [ + "local.github_repo" + ] + }, + { + "address": "github_actions_variable.variable", + "mode": "managed", + "type": "github_actions_variable", + "name": "variable", + "provider_config_key": "github", + "expressions": { + "repository": { + "references": [ + "local.github_repo.name", + "local.github_repo" + ] + }, + "value": { + "references": [ + "each.value" + ] + }, + "variable_name": { + "references": [ + "each.key" + ] + } + }, + "schema_version": 0, + "for_each_expression": { + "references": [ + "var.vars" + ] + }, + "depends_on": [ + "local.github_repo" + ] + }, + { + "address": "github_branch.branch", + "mode": "managed", + "type": "github_branch", + "name": "branch", + "provider_config_key": "github", + "expressions": { + "branch": { + "references": [ + "var.github_default_branch" + ] + }, + "repository": { + "references": [ + "local.github_repo.name", + "local.github_repo" + ] + } + }, + "schema_version": 0, + "count_expression": { + "references": [ + "var.github_default_branch" + ] + }, + "depends_on": [ + "github_repository.repo" + ] + }, + { + "address": "github_branch_default.default_main_branch", + "mode": "managed", + "type": "github_branch_default", + "name": "default_main_branch", + "provider_config_key": "github", + "expressions": { + "branch": { + "references": [ + "var.github_default_branch" + ] + }, + "repository": { + "references": [ + "local.github_repo.name", + "local.github_repo" + ] + } + }, + "schema_version": 0, + "count_expression": { + "references": [ + "var.github_default_branch" + ] + }, + "depends_on": [ + "github_branch.branch" + ] + }, + { + "address": "github_branch_protection.protection", + "mode": "managed", + "type": "github_branch_protection", + "name": "protection", + "provider_config_key": "github", + "expressions": { + "allows_deletions": { + "constant_value": false + }, + "allows_force_pushes": { + "constant_value": false + }, + "enforce_admins": { + "references": [ + "var.github_enforce_admins_branch_protection" + ] + }, + "pattern": { + "references": [ + "each.key" + ] + }, + "repository_id": { + "references": [ + "var.create_repo", + "github_repository.repo[0].node_id", + "github_repository.repo[0]", + "github_repository.repo", + "data.github_repository.existing[0].node_id", + "data.github_repository.existing[0]", + "data.github_repository.existing" + ] + }, + "require_signed_commits": { + "references": [ + "var.require_signed_commits" + ] + }, + "required_linear_history": { + "constant_value": true + }, + "required_pull_request_reviews": [ + { + "dismiss_stale_reviews": { + "references": [ + "var.github_dismiss_stale_reviews" + ] + }, + "require_code_owner_reviews": { + "references": [ + "var.github_require_code_owner_reviews" + ] + }, + "require_last_push_approval": { + "references": [ + "var.require_last_push_approval" + ] + }, + "required_approving_review_count": { + "references": [ + "var.github_required_approving_review_count" + ] + } + } + ] + }, + "schema_version": 2, + "for_each_expression": { + "references": [ + "local.branch_protection_rules", + "var.enforce_prs", + "var.github_is_private", + "var.github_pro_enabled" + ] + }, + "depends_on": [ + "github_repository.repo", + "github_branch.branch", + "github_branch_default.default_main_branch" + ] + }, + { + "address": "github_repository.repo", + "mode": "managed", + "type": "github_repository", + "name": "repo", + "provider_config_key": "github", + "expressions": { + "allow_auto_merge": { + "references": [ + "var.github_allow_auto_merge" + ] + }, + "allow_merge_commit": { + "references": [ + "var.github_allow_merge_commit" + ] + }, + "allow_rebase_merge": { + "references": [ + "var.github_allow_rebase_merge" + ] + }, + "allow_squash_merge": { + "references": [ + "var.github_allow_squash_merge" + ] + }, + "allow_update_branch": { + "references": [ + "var.github_allow_update_branch" + ] + }, + "archive_on_destroy": { + "references": [ + "var.archive_on_destroy" + ] + }, + "archived": { + "references": [ + "var.archived" + ] + }, + "auto_init": { + "references": [ + "var.github_auto_init" + ] + }, + "delete_branch_on_merge": { + "references": [ + "var.github_delete_branch_on_merge" + ] + }, + "description": { + "references": [ + "var.github_repo_description" + ] + }, + "gitignore_template": { + "references": [ + "var.gitignore_template" + ] + }, + "has_discussions": { + "references": [ + "var.github_has_discussions" + ] + }, + "has_downloads": { + "references": [ + "var.github_has_downloads" + ] + }, + "has_issues": { + "references": [ + "var.github_has_issues" + ] + }, + "has_projects": { + "references": [ + "var.github_has_projects" + ] + }, + "has_wiki": { + "references": [ + "var.github_has_wiki" + ] + }, + "homepage_url": { + "references": [ + "var.homepage_url" + ] + }, + "is_template": { + "references": [ + "var.is_template" + ] + }, + "license_template": { + "references": [ + "var.license_template" + ] + }, + "merge_commit_message": { + "references": [ + "var.github_merge_commit_message" + ] + }, + "merge_commit_title": { + "references": [ + "var.github_merge_commit_title" + ] + }, + "name": { + "references": [ + "local.repo_name" + ] + }, + "squash_merge_commit_message": { + "references": [ + "var.github_squash_merge_commit_message" + ] + }, + "squash_merge_commit_title": { + "references": [ + "var.github_squash_merge_commit_title" + ] + }, + "topics": { + "references": [ + "var.github_repo_topics" + ] + }, + "visibility": { + "references": [ + "var.github_is_private" + ] + }, + "vulnerability_alerts": { + "references": [ + "var.vulnerability_alerts" + ] + } + }, + "schema_version": 1, + "count_expression": { + "references": [ + "var.create_repo" + ] + } + }, + { + "address": "github_repository_collaborator.collaborators", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "provider_config_key": "github", + "expressions": { + "permission": { + "references": [ + "local.permission_map", + "each.value" + ] + }, + "repository": { + "references": [ + "local.github_repo.name", + "local.github_repo" + ] + }, + "username": { + "references": [ + "each.key" + ] + } + }, + "schema_version": 0, + "for_each_expression": { + "references": [ + "var.collaborators" + ] + }, + "depends_on": [ + "data.github_user.collaborators" + ] + }, + { + "address": "github_repository_deploy_key.deploy_key", + "mode": "managed", + "type": "github_repository_deploy_key", + "name": "deploy_key", + "provider_config_key": "github", + "expressions": { + "key": { + "references": [ + "each.value.key", + "each.value" + ] + }, + "read_only": { + "references": [ + "each.value.read_only", + "each.value" + ] + }, + "repository": { + "references": [ + "local.github_repo.name", + "local.github_repo" + ] + }, + "title": { + "references": [ + "each.value.title", + "each.value" + ] + } + }, + "schema_version": 0, + "for_each_expression": { + "references": [ + "var.deploy_keys" + ] + }, + "depends_on": [ + "github_repository.repo" + ] + }, + { + "address": "github_repository_environment.environments", + "mode": "managed", + "type": "github_repository_environment", + "name": "environments", + "provider_config_key": "github", + "expressions": { + "deployment_branch_policy": [ + { + "custom_branch_policies": { + "references": [ + "each.value.deployment_branch_policy.custom_branch_policies", + "each.value.deployment_branch_policy", + "each.value" + ] + }, + "protected_branches": { + "references": [ + "each.value.deployment_branch_policy.protected_branches", + "each.value.deployment_branch_policy", + "each.value" + ] + } + } + ], + "environment": { + "references": [ + "each.value.name", + "each.value" + ] + }, + "repository": { + "references": [ + "github_repository.repo[0].name", + "github_repository.repo[0]", + "github_repository.repo" + ] + }, + "reviewers": [ + { + "teams": { + "references": [ + "each.value.reviewers.teams", + "each.value.reviewers", + "each.value", + "data.github_team.environment_teams" + ] + }, + "users": { + "references": [ + "each.value.reviewers.users", + "each.value.reviewers", + "each.value", + "data.github_user.environment_users" + ] + } + } + ] + }, + "schema_version": 0, + "for_each_expression": { + "references": [ + "var.environments" + ] + } + }, + { + "address": "github_repository_file.codeowners", + "mode": "managed", + "type": "github_repository_file", + "name": "codeowners", + "provider_config_key": "github", + "expressions": { + "branch": { + "references": [ + "var.github_default_branch" + ] + }, + "commit_author": { + "references": [ + "var.commit_author" + ] + }, + "commit_email": { + "references": [ + "var.commit_email" + ] + }, + "commit_message": { + "constant_value": "Update CODEOWNERS file" + }, + "content": { + "references": [ + "path.module", + "local.codeowners" + ] + }, + "file": { + "constant_value": "CODEOWNERS" + }, + "overwrite_on_create": { + "constant_value": true + }, + "repository": { + "references": [ + "local.github_repo.name", + "local.github_repo" + ] + } + }, + "schema_version": 0, + "count_expression": { + "references": [ + "var.create_codeowners", + "local.should_manage_files" + ] + }, + "depends_on": [ + "github_repository.repo", + "github_branch_protection.protection" + ] + }, + { + "address": "github_repository_file.extra_files", + "mode": "managed", + "type": "github_repository_file", + "name": "extra_files", + "provider_config_key": "github", + "expressions": { + "branch": { + "references": [ + "var.github_default_branch" + ] + }, + "commit_author": { + "references": [ + "var.commit_author" + ] + }, + "commit_email": { + "references": [ + "var.commit_email" + ] + }, + "commit_message": { + "references": [ + "each.value.path", + "each.value" + ] + }, + "content": { + "references": [ + "each.value.content", + "each.value" + ] + }, + "file": { + "references": [ + "each.value.path", + "each.value" + ] + }, + "overwrite_on_create": { + "constant_value": true + }, + "repository": { + "references": [ + "local.github_repo.name", + "local.github_repo" + ] + } + }, + "schema_version": 0, + "for_each_expression": { + "references": [ + "local.should_manage_files", + "local.extra_files" + ] + }, + "depends_on": [ + "github_repository.repo", + "github_branch_protection.protection" + ] + }, + { + "address": "github_repository_file.managed_extra_files", + "mode": "managed", + "type": "github_repository_file", + "name": "managed_extra_files", + "provider_config_key": "github", + "expressions": { + "branch": { + "references": [ + "var.github_default_branch" + ] + }, + "commit_author": { + "references": [ + "var.commit_author" + ] + }, + "commit_email": { + "references": [ + "var.commit_email" + ] + }, + "commit_message": { + "references": [ + "each.value.path", + "each.value" + ] + }, + "content": { + "references": [ + "each.value.content", + "each.value" + ] + }, + "file": { + "references": [ + "each.value.path", + "each.value" + ] + }, + "overwrite_on_create": { + "constant_value": true + }, + "repository": { + "references": [ + "local.github_repo.name", + "local.github_repo" + ] + } + }, + "schema_version": 0, + "for_each_expression": { + "references": [ + "local.should_manage_files", + "var.managed_extra_files" + ] + }, + "depends_on": [ + "github_repository.repo", + "github_branch_protection.protection" + ] + }, + { + "address": "github_team_repository.admin", + "mode": "managed", + "type": "github_team_repository", + "name": "admin", + "provider_config_key": "github", + "expressions": { + "permission": { + "constant_value": "admin" + }, + "repository": { + "references": [ + "local.github_repo.name", + "local.github_repo" + ] + }, + "team_id": { + "references": [ + "each.value" + ] + } + }, + "schema_version": 0, + "for_each_expression": { + "references": [ + "var.admin_teams", + "data.github_team.admin_teams" + ] + } + }, + { + "address": "data.github_organization_teams.root_teams", + "mode": "data", + "type": "github_organization_teams", + "name": "root_teams", + "provider_config_key": "github", + "expressions": { + "root_teams_only": { + "constant_value": false + } + }, + "schema_version": 0, + "count_expression": { + "references": [ + "var.github_org_teams", + "var.repo_org" + ] + } + }, + { + "address": "data.github_repository.existing", + "mode": "data", + "type": "github_repository", + "name": "existing", + "provider_config_key": "github", + "expressions": { + "full_name": { + "references": [ + "var.repo_org", + "var.name" + ] + } + }, + "schema_version": 0, + "count_expression": { + "references": [ + "var.create_repo" + ] + } + }, + { + "address": "data.github_team.admin_teams", + "mode": "data", + "type": "github_team", + "name": "admin_teams", + "provider_config_key": "github", + "expressions": { + "slug": { + "references": [ + "each.value" + ] + } + }, + "schema_version": 0, + "for_each_expression": { + "references": [ + "var.admin_teams" + ] + } + }, + { + "address": "data.github_team.environment_teams", + "mode": "data", + "type": "github_team", + "name": "environment_teams", + "provider_config_key": "github", + "expressions": { + "slug": { + "references": [ + "each.value" + ] + } + }, + "schema_version": 0, + "for_each_expression": { + "references": [ + "var.environments" + ] + } + }, + { + "address": "data.github_user.collaborators", + "mode": "data", + "type": "github_user", + "name": "collaborators", + "provider_config_key": "github", + "expressions": { + "username": { + "references": [ + "each.key" + ] + } + }, + "schema_version": 0, + "for_each_expression": { + "references": [ + "var.collaborators" + ] + } + }, + { + "address": "data.github_user.environment_users", + "mode": "data", + "type": "github_user", + "name": "environment_users", + "provider_config_key": "github", + "expressions": { + "username": { + "references": [ + "each.value" + ] + } + }, + "schema_version": 0, + "for_each_expression": { + "references": [ + "var.environments" + ] + } + }, + { + "address": "data.github_user.pull_request_bypassers", + "mode": "data", + "type": "github_user", + "name": "pull_request_bypassers", + "provider_config_key": "github", + "expressions": { + "username": { + "references": [ + "each.value" + ] + } + }, + "schema_version": 0, + "for_each_expression": { + "references": [ + "var.pull_request_bypassers" + ] + } + } + ], + "variables": { + "additional_codeowners": { + "default": [], + "description": "Additional entries for CODEOWNERS file" + }, + "admin_teams": { + "default": [], + "description": "Teams to grant admin access" + }, + "allow_unsigned_files": { + "default": false, + "description": "Whether to allow file management even when signed commits are required" + }, + "archive_on_destroy": { + "default": true, + "description": "Archive repository instead of deleting on destroy" + }, + "archived": { + "default": false, + "description": "Archive this repository" + }, + "collaborators": { + "default": {}, + "description": "Map of collaborators and their permission levels" + }, + "commit_author": { + "default": "Terraform", + "description": "The author name to use for file commits" + }, + "commit_email": { + "default": "terraform@roknsound.com", + "description": "The email to use for file commits" + }, + "create_codeowners": { + "default": true, + "description": "Create CODEOWNERS file" + }, + "create_repo": { + "default": true, + "description": "Whether to create a new repository or manage an existing one" + }, + "deploy_keys": { + "default": [], + "description": "List of SSH deploy keys to add to the repository" + }, + "enforce_prs": { + "default": true, + "description": "Enforce pull request reviews" + }, + "environments": { + "default": [], + "description": "List of GitHub environments to create for the repository" + }, + "extra_files": { + "default": [], + "description": "Additional files to create in the repository" + }, + "force_name": { + "default": false, + "description": "Keep exact repository name (no date suffix)" + }, + "github_allow_auto_merge": { + "default": false, + "description": "Allow pull requests to be automatically merged" + }, + "github_allow_merge_commit": { + "default": false, + "description": "Allow merge commits" + }, + "github_allow_rebase_merge": { + "default": false, + "description": "Allow rebase merging" + }, + "github_allow_squash_merge": { + "default": true, + "description": "Allow squash merging" + }, + "github_allow_update_branch": { + "default": true, + "description": "Allow updating pull request branches" + }, + "github_auto_init": { + "default": true, + "description": "Initialize repository with README" + }, + "github_codeowners_team": { + "default": "terraform-reviewers" + }, + "github_default_branch": { + "default": "main", + "description": "Default branch name" + }, + "github_delete_branch_on_merge": { + "default": true, + "description": "Delete head branch after merge" + }, + "github_dismiss_stale_reviews": { + "default": true, + "description": "Dismiss stale pull request approvals" + }, + "github_enforce_admins_branch_protection": { + "default": true, + "description": "Enforce branch protection rules on administrators" + }, + "github_has_discussions": { + "default": false, + "description": "Enable discussions feature" + }, + "github_has_downloads": { + "default": false, + "description": "Enable downloads feature" + }, + "github_has_issues": { + "default": false, + "description": "Enable issues feature" + }, + "github_has_projects": { + "default": true, + "description": "Enable projects feature" + }, + "github_has_wiki": { + "default": true, + "description": "Enable wiki feature" + }, + "github_is_private": { + "default": true, + "description": "Make repository private" + }, + "github_merge_commit_message": { + "default": "PR_TITLE", + "description": "Message for merge commits" + }, + "github_merge_commit_title": { + "default": "MERGE_MESSAGE", + "description": "Title for merge commits" + }, + "github_org_teams": { + "default": null, + "description": "Organization teams configuration" + }, + "github_pro_enabled": { + "default": false, + "description": "Is this a Github Pro Account? If not, then it's limited in feature set" + }, + "github_push_restrictions": { + "default": [], + "description": "List of team/user IDs with push access" + }, + "github_repo_description": { + "default": null, + "description": "Repository description" + }, + "github_repo_topics": { + "default": [], + "description": "Repository topics" + }, + "github_require_code_owner_reviews": { + "default": true, + "description": "Require code owner review" + }, + "github_required_approving_review_count": { + "default": 1, + "description": "Number of approvals needed for pull requests" + }, + "github_squash_merge_commit_message": { + "default": "COMMIT_MESSAGES", + "description": "Message for squash merge commits" + }, + "github_squash_merge_commit_title": { + "default": "COMMIT_OR_PR_TITLE", + "description": "Title for squash merge commits" + }, + "gitignore_template": { + "default": null, + "description": "Gitignore template to use" + }, + "homepage_url": { + "default": null, + "description": "Repository homepage URL" + }, + "is_template": { + "default": false, + "description": "Make this repository a template" + }, + "license_template": { + "default": null, + "description": "License template to use for the repository" + }, + "managed_extra_files": { + "default": [], + "description": "Additional files to manage in the repository" + }, + "name": { + "description": "Name of the repository" + }, + "pages_config": { + "default": null, + "description": "Configuration for GitHub Pages" + }, + "prefix": { + "default": null, + "description": "Prefix to add to repository name" + }, + "pull_request_bypassers": { + "default": [], + "description": "Users/teams that can bypass pull request requirements" + }, + "repo_org": { + "default": null, + "description": "GitHub organization name" + }, + "require_last_push_approval": { + "default": false, + "description": "Require approval from the last pusher" + }, + "require_signed_commits": { + "default": false, + "description": "Whether to require signed commits for the default branch" + }, + "required_status_checks": { + "default": null, + "description": "Required status checks for protected branches" + }, + "secrets": { + "default": [], + "description": "GitHub Actions secrets" + }, + "security_and_analysis": { + "default": null, + "description": "Security and analysis settings for the repository" + }, + "template_repo": { + "default": null, + "description": "Template repository name" + }, + "template_repo_org": { + "default": null, + "description": "Template repository organization" + }, + "vars": { + "default": [], + "description": "GitHub Actions variables" + }, + "vulnerability_alerts": { + "default": false, + "description": "Enable Dependabot alerts" + } + } + } + } + }, + "variables": { + "force": { + "default": false + }, + "github_org_teams": { + "default": [], + "description": "The GitHub organization teams to add to the repository" + }, + "github_repo_topics": {}, + "internal_repo": { + "description": "The internal GitHub repository to create" + }, + "public_repo": { + "description": "The public GitHub repository to import" + }, + "vulnerability_alerts": { + "default": true, + "description": "Enable GitHub vulnerability alerts" + } + } + }, + "version_constraint": "0.0.34" + }, + "repo_list": { + "source": "HappyPathway/repo/github", + "expressions": { + "collaborators": { + "references": [ + "local.collaborators" + ] + }, + "create_codeowners": { + "constant_value": false + }, + "enforce_prs": { + "references": [ + "each.value.enforce_prs", + "each.value" + ] + }, + "force_name": { + "constant_value": true + }, + "github_is_private": { + "references": [ + "each.value.is_private", + "each.value" + ] + }, + "github_org_teams": { + "references": [ + "local.github_organization_teams" + ] + }, + "github_repo_description": { + "references": [ + "each.value.description", + "each.value" + ] + }, + "github_repo_topics": { + "references": [ + "each.value.repo_topics", + "each.value" + ] + }, + "is_template": { + "references": [ + "each.value.is_template", + "each.value" + ] + }, + "managed_extra_files": { + "references": [ + "var.image_pipeline_workflows", + "each.value.name", + "each.value", + "var.image_pipeline_workflows", + "each.value.name", + "each.value", + "path.module", + "each.value.name", + "each.value", + "each.value.managed_extra_files", + "each.value" + ] + }, + "name": { + "references": [ + "each.value.name", + "each.value" + ] + }, + "pull_request_bypassers": { + "references": [ + "local.pull_request_bypassers" + ] + }, + "repo_org": { + "references": [ + "each.value.repo_org", + "each.value" + ] + }, + "template_repo": { + "references": [ + "each.value.template_repo", + "each.value" + ] + }, + "template_repo_org": { + "references": [ + "each.value.template_org", + "each.value" + ] + } + }, + "for_each_expression": { + "references": [ + "var.repolist" + ] + }, + "module": { + "outputs": { + "github_repo": { + "expression": { + "references": [ + "github_repository.repo" + ] + } + } + }, + "resources": [ + { + "address": "github_actions_secret.secret", + "mode": "managed", + "type": "github_actions_secret", + "name": "secret", + "provider_config_key": "github", + "expressions": { + "plaintext_value": { + "references": [ + "each.value" + ] + }, + "repository": { + "references": [ + "github_repository.repo.name", + "github_repository.repo" + ] + }, + "secret_name": { + "references": [ + "each.key" + ] + } + }, + "schema_version": 0, + "for_each_expression": { + "references": [ + "var.secrets" + ] + } + }, + { + "address": "github_actions_variable.variable", + "mode": "managed", + "type": "github_actions_variable", + "name": "variable", + "provider_config_key": "github", + "expressions": { + "repository": { + "references": [ + "github_repository.repo.name", + "github_repository.repo" + ] + }, + "value": { + "references": [ + "each.value" + ] + }, + "variable_name": { + "references": [ + "each.key" + ] + } + }, + "schema_version": 0, + "for_each_expression": { + "references": [ + "var.vars" + ] + } + }, + { + "address": "github_branch.branch", + "mode": "managed", + "type": "github_branch", + "name": "branch", + "provider_config_key": "github", + "expressions": { + "branch": { + "references": [ + "var.github_default_branch" + ] + }, + "repository": { + "references": [ + "github_repository.repo.name", + "github_repository.repo" + ] + } + }, + "schema_version": 0, + "count_expression": { + "references": [ + "var.github_default_branch" + ] + } + }, + { + "address": "github_branch_default.default_main_branch", + "mode": "managed", + "type": "github_branch_default", + "name": "default_main_branch", + "provider_config_key": "github", + "expressions": { + "branch": { + "references": [ + "var.github_default_branch" + ] + }, + "repository": { + "references": [ + "github_repository.repo.name", + "github_repository.repo" + ] + } + }, + "schema_version": 0, + "count_expression": { + "references": [ + "var.github_default_branch" + ] + }, + "depends_on": [ + "github_branch.branch" + ] + }, + { + "address": "github_branch_protection.main", + "mode": "managed", + "type": "github_branch_protection", + "name": "main", + "provider_config_key": "github", + "expressions": { + "enforce_admins": { + "references": [ + "var.github_enforce_admins_branch_protection" + ] + }, + "pattern": { + "references": [ + "var.github_default_branch" + ] + }, + "repository_id": { + "references": [ + "github_repository.repo.node_id", + "github_repository.repo" + ] + }, + "required_pull_request_reviews": [ + { + "dismiss_stale_reviews": { + "references": [ + "var.github_dismiss_stale_reviews" + ] + }, + "pull_request_bypassers": { + "references": [ + "local.pull_request_bypassers" + ] + }, + "require_code_owner_reviews": { + "references": [ + "var.github_require_code_owner_reviews" + ] + }, + "required_approving_review_count": { + "references": [ + "var.github_required_approving_review_count" + ] + } + } + ] + }, + "schema_version": 2, + "count_expression": { + "references": [ + "var.enforce_prs", + "var.github_is_private" + ] + }, + "depends_on": [ + "github_repository_file.codeowners", + "github_repository_file.extra_files" + ] + }, + { + "address": "github_repository.repo", + "mode": "managed", + "type": "github_repository", + "name": "repo", + "provider_config_key": "github", + "expressions": { + "allow_merge_commit": { + "references": [ + "var.github_allow_merge_commit" + ] + }, + "allow_rebase_merge": { + "references": [ + "var.github_allow_rebase_merge" + ] + }, + "allow_squash_merge": { + "references": [ + "var.github_allow_squash_merge" + ] + }, + "archive_on_destroy": { + "references": [ + "var.archive_on_destroy" + ] + }, + "archived": { + "references": [ + "var.archived" + ] + }, + "auto_init": { + "references": [ + "var.github_auto_init" + ] + }, + "delete_branch_on_merge": { + "references": [ + "var.github_delete_branch_on_merge" + ] + }, + "description": { + "references": [ + "var.github_repo_description" + ] + }, + "gitignore_template": { + "references": [ + "var.gitignore_template" + ] + }, + "has_issues": { + "references": [ + "var.github_has_issues" + ] + }, + "has_projects": { + "references": [ + "var.github_has_projects" + ] + }, + "has_wiki": { + "references": [ + "var.github_has_wiki" + ] + }, + "homepage_url": { + "references": [ + "var.homepage_url" + ] + }, + "is_template": { + "references": [ + "var.is_template" + ] + }, + "name": { + "references": [ + "local.repo_name" + ] + }, + "topics": { + "references": [ + "var.github_repo_topics" + ] + }, + "visibility": { + "references": [ + "var.github_is_private" + ] + }, + "vulnerability_alerts": { + "references": [ + "var.vulnerability_alerts" + ] + } + }, + "schema_version": 1 + }, + { + "address": "github_repository_collaborator.collaborators", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "provider_config_key": "github", + "expressions": { + "permission": { + "references": [ + "each.value" + ] + }, + "repository": { + "references": [ + "github_repository.repo.name", + "github_repository.repo" + ] + }, + "username": { + "references": [ + "each.key" + ] + } + }, + "schema_version": 0, + "for_each_expression": { + "references": [ + "var.collaborators" + ] + }, + "depends_on": [ + "github_repository.repo" + ] + }, + { + "address": "github_repository_file.codeowners", + "mode": "managed", + "type": "github_repository_file", + "name": "codeowners", + "provider_config_key": "github", + "expressions": { + "branch": { + "references": [ + "var.github_default_branch" + ] + }, + "content": { + "references": [ + "path.module", + "local.codeowners" + ] + }, + "file": { + "constant_value": "CODEOWNERS" + }, + "overwrite_on_create": { + "constant_value": true + }, + "repository": { + "references": [ + "github_repository.repo.name", + "github_repository.repo" + ] + } + }, + "schema_version": 0, + "count_expression": { + "references": [ + "var.create_codeowners" + ] + } + }, + { + "address": "github_repository_file.extra_files", + "mode": "managed", + "type": "github_repository_file", + "name": "extra_files", + "provider_config_key": "github", + "expressions": { + "branch": { + "references": [ + "var.github_default_branch" + ] + }, + "content": { + "references": [ + "each.value.content", + "each.value" + ] + }, + "file": { + "references": [ + "each.value.path", + "each.value" + ] + }, + "overwrite_on_create": { + "constant_value": true + }, + "repository": { + "references": [ + "github_repository.repo.name", + "github_repository.repo" + ] + } + }, + "schema_version": 0, + "for_each_expression": { + "references": [ + "local.extra_files" + ] + } + }, + { + "address": "github_repository_file.managed_extra_files", + "mode": "managed", + "type": "github_repository_file", + "name": "managed_extra_files", + "provider_config_key": "github", + "expressions": { + "branch": { + "references": [ + "var.github_default_branch" + ] + }, + "content": { + "references": [ + "each.value.content", + "each.value" + ] + }, + "file": { + "references": [ + "each.value.path", + "each.value" + ] + }, + "overwrite_on_create": { + "constant_value": true + }, + "repository": { + "references": [ + "github_repository.repo.name", + "github_repository.repo" + ] + } + }, + "schema_version": 0, + "for_each_expression": { + "references": [ + "var.managed_extra_files" + ] + } + }, + { + "address": "github_team_repository.admin", + "mode": "managed", + "type": "github_team_repository", + "name": "admin", + "provider_config_key": "github", + "expressions": { + "permission": { + "constant_value": "admin" + }, + "repository": { + "references": [ + "github_repository.repo.name", + "github_repository.repo" + ] + }, + "team_id": { + "references": [ + "local.github_teams", + "each.value" + ] + } + }, + "schema_version": 0, + "for_each_expression": { + "references": [ + "var.admin_teams" + ] + }, + "depends_on": [ + "github_repository.repo" + ] + }, + { + "address": "data.github_organization_teams.root_teams", + "mode": "data", + "type": "github_organization_teams", + "name": "root_teams", + "provider_config_key": "github", + "expressions": { + "root_teams_only": { + "constant_value": false + } + }, + "schema_version": 0, + "count_expression": { + "references": [ + "var.github_org_teams" + ] + } + }, + { + "address": "data.github_ref.ref", + "mode": "data", + "type": "github_ref", + "name": "ref", + "provider_config_key": "github", + "expressions": { + "owner": { + "references": [ + "var.template_repo_org" + ] + }, + "ref": { + "references": [ + "data.github_repository.template_repo" + ] + }, + "repository": { + "references": [ + "var.template_repo" + ] + } + }, + "schema_version": 0, + "count_expression": { + "references": [ + "var.template_repo" + ] + } + }, + { + "address": "data.github_repository.template_repo", + "mode": "data", + "type": "github_repository", + "name": "template_repo", + "provider_config_key": "github", + "expressions": { + "full_name": { + "references": [ + "var.template_repo_org", + "var.template_repo" + ] + } + }, + "schema_version": 0, + "count_expression": { + "references": [ + "var.template_repo" + ] + } + }, + { + "address": "data.github_user.pull_request_bypassers", + "mode": "data", + "type": "github_user", + "name": "pull_request_bypassers", + "provider_config_key": "github", + "expressions": { + "username": { + "references": [ + "each.value" + ] + } + }, + "schema_version": 0, + "for_each_expression": { + "references": [ + "var.pull_request_bypassers" + ] + } + } + ], + "variables": { + "additional_codeowners": { + "default": [], + "description": "Enable adding of Codeowner Teams" + }, + "admin_teams": { + "default": [], + "description": "Admin Teams" + }, + "archive_on_destroy": { + "default": true + }, + "archived": { + "default": false + }, + "collaborators": { + "default": {}, + "description": "list of repo callaborators" + }, + "create_codeowners": { + "default": true + }, + "enforce_prs": { + "default": true + }, + "extra_files": { + "default": [], + "description": "Extra Files" + }, + "force_name": { + "default": false, + "description": "Force Naming of Repo. If forced, archive management will not operate on this repo" + }, + "github_allow_merge_commit": { + "default": false + }, + "github_allow_rebase_merge": { + "default": false + }, + "github_allow_squash_merge": { + "default": true + }, + "github_auto_init": { + "default": true + }, + "github_codeowners_team": { + "default": "terraform-reviewers" + }, + "github_default_branch": { + "default": "main" + }, + "github_delete_branch_on_merge": { + "default": true + }, + "github_dismiss_stale_reviews": { + "default": true + }, + "github_enforce_admins_branch_protection": { + "default": true + }, + "github_has_issues": { + "default": true + }, + "github_has_projects": { + "default": true + }, + "github_has_wiki": { + "default": true + }, + "github_is_private": { + "default": true + }, + "github_org_teams": { + "default": null, + "description": "provide module with list of teams so that module does not need to look them up" + }, + "github_push_restrictions": { + "default": [], + "description": "Github Push Restrictions" + }, + "github_repo_description": { + "default": null + }, + "github_repo_topics": { + "default": [], + "description": "Github Repo Topics" + }, + "github_require_code_owner_reviews": { + "default": true + }, + "github_required_approving_review_count": { + "default": 1 + }, + "gitignore_template": { + "default": null + }, + "homepage_url": { + "default": null + }, + "is_template": { + "default": false + }, + "managed_extra_files": { + "default": [], + "description": "Managed Extra Files. Changes to Content will be updated" + }, + "name": { + "description": "Name of the terraform workspace and optionally github repo" + }, + "prefix": { + "default": null + }, + "pull_request_bypassers": { + "default": [] + }, + "repo_org": { + "default": null + }, + "required_status_checks": { + "default": null, + "description": " Required Status Checks\nrequired_status_checks supports the following arguments:\n\nstrict: (Optional) Require branches to be up to date before merging. Defaults to false.\ncontexts: (Optional) The list of status checks to require in order to merge into this branch. \nNo status checks are required by default.\nNote: This attribute can contain multiple string patterns. If specified, usual value is the job name. \nOtherwise, the job id is defaulted to. For workflows that use matrixes, append the matrix name to the \nvalue using the following pattern ([, ]). Matrixes should be specified \nbased on the order of matrix properties in the workflow file. See GitHub Documentation for more \ninformation. For workflows that use reusable workflows, \nthe pattern is / . \nThis can extend multiple levels.\n" + }, + "secrets": { + "default": [], + "description": "Github Action Secrets" + }, + "security_and_analysis": { + "default": { + "advanced_security": { + "status": "disabled" + }, + "secret_scanning": { + "status": "disabled" + }, + "secret_scanning_push_protection": { + "status": "disabled" + } + }, + "description": " Security and Analysis Configuration\nThe security_and_analysis block supports the following:\n\nadvanced_security - (Optional) The advanced security configuration for the repository. See Advanced Security Configuration below for details. If a repository's visibility is public, advanced security is always enabled and cannot be changed, so this setting cannot be supplied.\n\nsecret_scanning - (Optional) The secret scanning configuration for the repository. See Secret Scanning Configuration below for details.\n\nsecret_scanning_push_protection - (Optional) The secret scanning push protection configuration for the repository. See Secret Scanning Push Protection Configuration below for details.\n" + }, + "template_repo": { + "default": null + }, + "template_repo_org": { + "default": null + }, + "vars": { + "default": [], + "description": "Github Action Vars" + }, + "vulnerability_alerts": { + "default": false + } + } + } + }, + "sandbox": { + "source": "HappyPathway/repo/github", + "expressions": { + "collaborators": { + "constant_value": { + "arnol377": "admin" + } + }, + "create_codeowners": { + "constant_value": false + }, + "enforce_prs": { + "constant_value": false + }, + "force_name": { + "constant_value": true + }, + "github_is_private": { + "constant_value": false + }, + "github_org_teams": { + "references": [ + "local.github_organization_teams" + ] + }, + "github_repo_description": { + "references": [ + "each.value" + ] + }, + "github_repo_topics": { + "constant_value": [ + "terraform" + ] + }, + "name": { + "references": [ + "each.value" + ] + }, + "repo_org": { + "constant_value": "arnol377" + } + }, + "for_each_expression": { + "references": [ + "local.workspace_instances" + ] + }, + "module": { + "outputs": { + "github_repo": { + "expression": { + "references": [ + "github_repository.repo" + ] + } + } + }, + "resources": [ + { + "address": "github_actions_secret.secret", + "mode": "managed", + "type": "github_actions_secret", + "name": "secret", + "provider_config_key": "github", + "expressions": { + "plaintext_value": { + "references": [ + "each.value" + ] + }, + "repository": { + "references": [ + "github_repository.repo.name", + "github_repository.repo" + ] + }, + "secret_name": { + "references": [ + "each.key" + ] + } + }, + "schema_version": 0, + "for_each_expression": { + "references": [ + "var.secrets" + ] + } + }, + { + "address": "github_actions_variable.variable", + "mode": "managed", + "type": "github_actions_variable", + "name": "variable", + "provider_config_key": "github", + "expressions": { + "repository": { + "references": [ + "github_repository.repo.name", + "github_repository.repo" + ] + }, + "value": { + "references": [ + "each.value" + ] + }, + "variable_name": { + "references": [ + "each.key" + ] + } + }, + "schema_version": 0, + "for_each_expression": { + "references": [ + "var.vars" + ] + } + }, + { + "address": "github_branch.branch", + "mode": "managed", + "type": "github_branch", + "name": "branch", + "provider_config_key": "github", + "expressions": { + "branch": { + "references": [ + "var.github_default_branch" + ] + }, + "repository": { + "references": [ + "github_repository.repo.name", + "github_repository.repo" + ] + } + }, + "schema_version": 0, + "count_expression": { + "references": [ + "var.github_default_branch" + ] + } + }, + { + "address": "github_branch_default.default_main_branch", + "mode": "managed", + "type": "github_branch_default", + "name": "default_main_branch", + "provider_config_key": "github", + "expressions": { + "branch": { + "references": [ + "var.github_default_branch" + ] + }, + "repository": { + "references": [ + "github_repository.repo.name", + "github_repository.repo" + ] + } + }, + "schema_version": 0, + "count_expression": { + "references": [ + "var.github_default_branch" + ] + }, + "depends_on": [ + "github_branch.branch" + ] + }, + { + "address": "github_branch_protection.main", + "mode": "managed", + "type": "github_branch_protection", + "name": "main", + "provider_config_key": "github", + "expressions": { + "enforce_admins": { + "references": [ + "var.github_enforce_admins_branch_protection" + ] + }, + "pattern": { + "references": [ + "var.github_default_branch" + ] + }, + "repository_id": { + "references": [ + "github_repository.repo.node_id", + "github_repository.repo" + ] + }, + "required_pull_request_reviews": [ + { + "dismiss_stale_reviews": { + "references": [ + "var.github_dismiss_stale_reviews" + ] + }, + "pull_request_bypassers": { + "references": [ + "local.pull_request_bypassers" + ] + }, + "require_code_owner_reviews": { + "references": [ + "var.github_require_code_owner_reviews" + ] + }, + "required_approving_review_count": { + "references": [ + "var.github_required_approving_review_count" + ] + } + } + ] + }, + "schema_version": 2, + "count_expression": { + "references": [ + "var.enforce_prs", + "var.github_is_private" + ] + }, + "depends_on": [ + "github_repository_file.codeowners", + "github_repository_file.extra_files" + ] + }, + { + "address": "github_repository.repo", + "mode": "managed", + "type": "github_repository", + "name": "repo", + "provider_config_key": "github", + "expressions": { + "allow_merge_commit": { + "references": [ + "var.github_allow_merge_commit" + ] + }, + "allow_rebase_merge": { + "references": [ + "var.github_allow_rebase_merge" + ] + }, + "allow_squash_merge": { + "references": [ + "var.github_allow_squash_merge" + ] + }, + "archive_on_destroy": { + "references": [ + "var.archive_on_destroy" + ] + }, + "archived": { + "references": [ + "var.archived" + ] + }, + "auto_init": { + "references": [ + "var.github_auto_init" + ] + }, + "delete_branch_on_merge": { + "references": [ + "var.github_delete_branch_on_merge" + ] + }, + "description": { + "references": [ + "var.github_repo_description" + ] + }, + "gitignore_template": { + "references": [ + "var.gitignore_template" + ] + }, + "has_issues": { + "references": [ + "var.github_has_issues" + ] + }, + "has_projects": { + "references": [ + "var.github_has_projects" + ] + }, + "has_wiki": { + "references": [ + "var.github_has_wiki" + ] + }, + "homepage_url": { + "references": [ + "var.homepage_url" + ] + }, + "is_template": { + "references": [ + "var.is_template" + ] + }, + "name": { + "references": [ + "local.repo_name" + ] + }, + "topics": { + "references": [ + "var.github_repo_topics" + ] + }, + "visibility": { + "references": [ + "var.github_is_private" + ] + }, + "vulnerability_alerts": { + "references": [ + "var.vulnerability_alerts" + ] + } + }, + "schema_version": 1 + }, + { + "address": "github_repository_collaborator.collaborators", + "mode": "managed", + "type": "github_repository_collaborator", + "name": "collaborators", + "provider_config_key": "github", + "expressions": { + "permission": { + "references": [ + "each.value" + ] + }, + "repository": { + "references": [ + "github_repository.repo.name", + "github_repository.repo" + ] + }, + "username": { + "references": [ + "each.key" + ] + } + }, + "schema_version": 0, + "for_each_expression": { + "references": [ + "var.collaborators" + ] + }, + "depends_on": [ + "github_repository.repo" + ] + }, + { + "address": "github_repository_file.codeowners", + "mode": "managed", + "type": "github_repository_file", + "name": "codeowners", + "provider_config_key": "github", + "expressions": { + "branch": { + "references": [ + "var.github_default_branch" + ] + }, + "content": { + "references": [ + "path.module", + "local.codeowners" + ] + }, + "file": { + "constant_value": "CODEOWNERS" + }, + "overwrite_on_create": { + "constant_value": true + }, + "repository": { + "references": [ + "github_repository.repo.name", + "github_repository.repo" + ] + } + }, + "schema_version": 0, + "count_expression": { + "references": [ + "var.create_codeowners" + ] + } + }, + { + "address": "github_repository_file.extra_files", + "mode": "managed", + "type": "github_repository_file", + "name": "extra_files", + "provider_config_key": "github", + "expressions": { + "branch": { + "references": [ + "var.github_default_branch" + ] + }, + "content": { + "references": [ + "each.value.content", + "each.value" + ] + }, + "file": { + "references": [ + "each.value.path", + "each.value" + ] + }, + "overwrite_on_create": { + "constant_value": true + }, + "repository": { + "references": [ + "github_repository.repo.name", + "github_repository.repo" + ] + } + }, + "schema_version": 0, + "for_each_expression": { + "references": [ + "local.extra_files" + ] + } + }, + { + "address": "github_repository_file.managed_extra_files", + "mode": "managed", + "type": "github_repository_file", + "name": "managed_extra_files", + "provider_config_key": "github", + "expressions": { + "branch": { + "references": [ + "var.github_default_branch" + ] + }, + "content": { + "references": [ + "each.value.content", + "each.value" + ] + }, + "file": { + "references": [ + "each.value.path", + "each.value" + ] + }, + "overwrite_on_create": { + "constant_value": true + }, + "repository": { + "references": [ + "github_repository.repo.name", + "github_repository.repo" + ] + } + }, + "schema_version": 0, + "for_each_expression": { + "references": [ + "var.managed_extra_files" + ] + } + }, + { + "address": "github_team_repository.admin", + "mode": "managed", + "type": "github_team_repository", + "name": "admin", + "provider_config_key": "github", + "expressions": { + "permission": { + "constant_value": "admin" + }, + "repository": { + "references": [ + "github_repository.repo.name", + "github_repository.repo" + ] + }, + "team_id": { + "references": [ + "local.github_teams", + "each.value" + ] + } + }, + "schema_version": 0, + "for_each_expression": { + "references": [ + "var.admin_teams" + ] + }, + "depends_on": [ + "github_repository.repo" + ] + }, + { + "address": "data.github_organization_teams.root_teams", + "mode": "data", + "type": "github_organization_teams", + "name": "root_teams", + "provider_config_key": "github", + "expressions": { + "root_teams_only": { + "constant_value": false + } + }, + "schema_version": 0, + "count_expression": { + "references": [ + "var.github_org_teams" + ] + } + }, + { + "address": "data.github_ref.ref", + "mode": "data", + "type": "github_ref", + "name": "ref", + "provider_config_key": "github", + "expressions": { + "owner": { + "references": [ + "var.template_repo_org" + ] + }, + "ref": { + "references": [ + "data.github_repository.template_repo" + ] + }, + "repository": { + "references": [ + "var.template_repo" + ] + } + }, + "schema_version": 0, + "count_expression": { + "references": [ + "var.template_repo" + ] + } + }, + { + "address": "data.github_repository.template_repo", + "mode": "data", + "type": "github_repository", + "name": "template_repo", + "provider_config_key": "github", + "expressions": { + "full_name": { + "references": [ + "var.template_repo_org", + "var.template_repo" + ] + } + }, + "schema_version": 0, + "count_expression": { + "references": [ + "var.template_repo" + ] + } + }, + { + "address": "data.github_user.pull_request_bypassers", + "mode": "data", + "type": "github_user", + "name": "pull_request_bypassers", + "provider_config_key": "github", + "expressions": { + "username": { + "references": [ + "each.value" + ] + } + }, + "schema_version": 0, + "for_each_expression": { + "references": [ + "var.pull_request_bypassers" + ] + } + } + ], + "variables": { + "additional_codeowners": { + "default": [], + "description": "Enable adding of Codeowner Teams" + }, + "admin_teams": { + "default": [], + "description": "Admin Teams" + }, + "archive_on_destroy": { + "default": true + }, + "archived": { + "default": false + }, + "collaborators": { + "default": {}, + "description": "list of repo callaborators" + }, + "create_codeowners": { + "default": true + }, + "enforce_prs": { + "default": true + }, + "extra_files": { + "default": [], + "description": "Extra Files" + }, + "force_name": { + "default": false, + "description": "Force Naming of Repo. If forced, archive management will not operate on this repo" + }, + "github_allow_merge_commit": { + "default": false + }, + "github_allow_rebase_merge": { + "default": false + }, + "github_allow_squash_merge": { + "default": true + }, + "github_auto_init": { + "default": true + }, + "github_codeowners_team": { + "default": "terraform-reviewers" + }, + "github_default_branch": { + "default": "main" + }, + "github_delete_branch_on_merge": { + "default": true + }, + "github_dismiss_stale_reviews": { + "default": true + }, + "github_enforce_admins_branch_protection": { + "default": true + }, + "github_has_issues": { + "default": true + }, + "github_has_projects": { + "default": true + }, + "github_has_wiki": { + "default": true + }, + "github_is_private": { + "default": true + }, + "github_org_teams": { + "default": null, + "description": "provide module with list of teams so that module does not need to look them up" + }, + "github_push_restrictions": { + "default": [], + "description": "Github Push Restrictions" + }, + "github_repo_description": { + "default": null + }, + "github_repo_topics": { + "default": [], + "description": "Github Repo Topics" + }, + "github_require_code_owner_reviews": { + "default": true + }, + "github_required_approving_review_count": { + "default": 1 + }, + "gitignore_template": { + "default": null + }, + "homepage_url": { + "default": null + }, + "is_template": { + "default": false + }, + "managed_extra_files": { + "default": [], + "description": "Managed Extra Files. Changes to Content will be updated" + }, + "name": { + "description": "Name of the terraform workspace and optionally github repo" + }, + "prefix": { + "default": null + }, + "pull_request_bypassers": { + "default": [] + }, + "repo_org": { + "default": null + }, + "required_status_checks": { + "default": null, + "description": " Required Status Checks\nrequired_status_checks supports the following arguments:\n\nstrict: (Optional) Require branches to be up to date before merging. Defaults to false.\ncontexts: (Optional) The list of status checks to require in order to merge into this branch. \nNo status checks are required by default.\nNote: This attribute can contain multiple string patterns. If specified, usual value is the job name. \nOtherwise, the job id is defaulted to. For workflows that use matrixes, append the matrix name to the \nvalue using the following pattern ([, ]). Matrixes should be specified \nbased on the order of matrix properties in the workflow file. See GitHub Documentation for more \ninformation. For workflows that use reusable workflows, \nthe pattern is / . \nThis can extend multiple levels.\n" + }, + "secrets": { + "default": [], + "description": "Github Action Secrets" + }, + "security_and_analysis": { + "default": { + "advanced_security": { + "status": "disabled" + }, + "secret_scanning": { + "status": "disabled" + }, + "secret_scanning_push_protection": { + "status": "disabled" + } + }, + "description": " Security and Analysis Configuration\nThe security_and_analysis block supports the following:\n\nadvanced_security - (Optional) The advanced security configuration for the repository. See Advanced Security Configuration below for details. If a repository's visibility is public, advanced security is always enabled and cannot be changed, so this setting cannot be supplied.\n\nsecret_scanning - (Optional) The secret scanning configuration for the repository. See Secret Scanning Configuration below for details.\n\nsecret_scanning_push_protection - (Optional) The secret scanning push protection configuration for the repository. See Secret Scanning Push Protection Configuration below for details.\n" + }, + "template_repo": { + "default": null + }, + "template_repo_org": { + "default": null + }, + "vars": { + "default": [], + "description": "Github Action Vars" + }, + "vulnerability_alerts": { + "default": false + } + } + } + } + }, + "variables": { + "image_pipeline_workflows": { + "default": {}, + "description": "Map of repository names to workflow template paths" + }, + "imported_repos": { + "default": [], + "description": "List of repositories to import from other sources" + }, + "netbackup_automation_platform": { + "default": false + }, + "repolist": { + "default": [], + "description": "List of repositories to create" + } + } + } + }, + "relevant_attributes": [ + { + "resource": "module.repo_list[\"terraform-ai-ingestion\"].data.github_user.pull_request_bypassers", + "attribute": [] + }, + { + "resource": "module.repo_list[\"morpheus-clouds\"].github_repository.repo", + "attribute": [ + "name" + ] + }, + { + "resource": "module.repo_list[\"service-catalog-workspace\"].github_repository.repo", + "attribute": [] + }, + { + "resource": "module.repo_list[\"terraform-morpheus-queue\"].github_repository.repo", + "attribute": [] + }, + { + "resource": "module.repo_list[\"aws-beanstalk-php\"].github_repository.repo", + "attribute": [] + }, + { + "resource": "module.repo_list[\"image-pipeline-ansible-playbooks\"].github_repository.repo", + "attribute": [] + }, + { + "resource": "module.repo_list[\"windows-image-pipeline\"].github_repository.repo", + "attribute": [ + "name" + ] + }, + { + "resource": "module.repo_list[\"aws-beanstalk-docker\"].github_repository.repo", + "attribute": [ + "name" + ] + }, + { + "resource": "module.repo_list[\"aws-beanstalk-java\"].github_repository.repo", + "attribute": [ + "name" + ] + }, + { + "resource": "module.repo_list[\"vpc-services\"].github_repository.repo", + "attribute": [] + }, + { + "resource": "module.repo_list[\"aws-beanstalk-php\"].data.github_ref.ref[0]", + "attribute": [ + "sha" + ] + }, + { + "resource": "module.repo_list[\"terraform-morpheus-search\"].github_repository.repo", + "attribute": [] + }, + { + "resource": "module.repo_list[\"opensearch\"].github_repository.repo", + "attribute": [] + }, + { + "resource": "module.repo_list[\"Github-Actions-Project\"].github_repository.repo", + "attribute": [] + }, + { + "resource": "module.repo_list[\"aws-beanstalk\"].github_repository.repo", + "attribute": [] + }, + { + "resource": "module.repo_list[\"terraform-morpheus-efs\"].data.github_user.pull_request_bypassers", + "attribute": [] + }, + { + "resource": "module.imported_repos[\"netbackup-automation-platform\"].module.internal_github_actions.data.github_repository.existing[0]", + "attribute": [] + }, + { + "resource": "module.repo_list[\"terraform-morpheus-search\"].data.github_user.pull_request_bypassers", + "attribute": [] + }, + { + "resource": "module.repo_list[\"aws-beanstalk-java\"].data.github_ref.ref[0]", + "attribute": [ + "sha" + ] + }, + { + "resource": "module.repo_list[\"image-pipeline-packer\"].github_repository.repo", + "attribute": [ + "name" + ] + }, + { + "resource": "module.repo_list[\"terraform-aws-image-pipeline\"].github_repository.repo", + "attribute": [] + }, + { + "resource": "module.repo_list[\"image-pipeline-packer\"].github_repository.repo", + "attribute": [] + }, + { + "resource": "module.repo_list[\"tf-caching\"].data.github_user.pull_request_bypassers", + "attribute": [] + }, + { + "resource": "module.imported_repos[\"netbackup-automation-platform\"].module.internal_github_actions.github_repository.repo[0]", + "attribute": [] + }, + { + "resource": "module.repo_list[\"tf-caching\"].github_repository.repo", + "attribute": [ + "node_id" + ] + }, + { + "resource": "module.repo_list[\"aws-beanstalk-java\"].github_repository.repo", + "attribute": [] + }, + { + "resource": "module.repo_list[\"github-runner-image\"].github_repository.repo", + "attribute": [] + }, + { + "resource": "module.repo_list[\"aws-copilot-demo\"].github_repository.repo", + "attribute": [] + }, + { + "resource": "module.repo_list[\"tf-caching\"].github_repository.repo", + "attribute": [] + }, + { + "resource": "module.repo_list[\"terraform-morpheus-alb\"].github_repository.repo", + "attribute": [ + "node_id" + ] + }, + { + "resource": "module.repo_list[\"terraform-git-workspace\"].github_repository.repo", + "attribute": [] + }, + { + "resource": "module.repo_list[\"tf-tools\"].github_repository.repo", + "attribute": [] + }, + { + "resource": "module.repo_list[\"aws-image-pipeline-pip-config\"].github_repository.repo", + "attribute": [] + }, + { + "resource": "module.repo_list[\"gh-actions-setup-node\"].github_repository.repo", + "attribute": [] + }, + { + "resource": "module.repo_list[\"terraform-github-repo\"].github_repository.repo", + "attribute": [] + }, + { + "resource": "module.repo_list[\"github-workspaces\"].github_repository.repo", + "attribute": [] + }, + { + "resource": "module.repo_list[\"morpheus-clouds\"].github_repository.repo", + "attribute": [] + }, + { + "resource": "module.repo_list[\"terraform-aws-image-pipeline\"].github_repository.repo", + "attribute": [ + "name" + ] + }, + { + "resource": "module.repo_list[\"terraform-morpheus-database\"].github_repository.repo", + "attribute": [ + "node_id" + ] + }, + { + "resource": "module.repo_list[\"terraform-morpheus-search\"].github_repository.repo", + "attribute": [ + "node_id" + ] + }, + { + "resource": "module.repo_list[\"terraform-ai-ingestion\"].github_repository.repo", + "attribute": [] + }, + { + "resource": "module.repo_list[\"aws-beanstalk-nodejs\"].data.github_ref.ref[0]", + "attribute": [ + "sha" + ] + }, + { + "resource": "module.repo_list[\"image-pipeline-goss\"].github_repository.repo", + "attribute": [ + "name" + ] + }, + { + "resource": "module.repo_list[\"terraform-aws-efs\"].github_repository.repo", + "attribute": [ + "node_id" + ] + }, + { + "resource": "module.repo_list[\"image-pipeline-asset-releases\"].github_repository.repo", + "attribute": [] + }, + { + "resource": "module.repo_list[\"image-pipeline-goss\"].github_repository.repo", + "attribute": [] + }, + { + "resource": "module.repo_list[\"terraform-aws-ses\"].data.github_user.pull_request_bypassers", + "attribute": [] + }, + { + "resource": "module.repo_list[\"terraform-morpheus-database\"].data.github_user.pull_request_bypassers", + "attribute": [] + }, + { + "resource": "module.repo_list[\"supervisord-conf\"].github_repository.repo", + "attribute": [ + "node_id" + ] + }, + { + "resource": "module.repo_list[\"terraform-morpheus-alb\"].github_repository.repo", + "attribute": [] + }, + { + "resource": "module.repo_list[\"pip-config\"].github_repository.repo", + "attribute": [] + }, + { + "resource": "module.repo_list[\"template-aws-image-pipeline\"].github_repository.repo", + "attribute": [] + }, + { + "resource": "module.repo_list[\"terraform-aws-efs\"].github_repository.repo", + "attribute": [] + }, + { + "resource": "github_team.terraform_reviewers", + "attribute": [ + "id" + ] + }, + { + "resource": "module.repo_list[\"terraform-ai-ingestion\"].github_repository.repo", + "attribute": [ + "node_id" + ] + }, + { + "resource": "module.repo_list[\"pip-config\"].data.github_user.pull_request_bypassers", + "attribute": [] + }, + { + "resource": "module.repo_list[\"terraform-morpheus-database\"].github_repository.repo", + "attribute": [] + }, + { + "resource": "module.repo_list[\"terraform-aws-rds\"].github_repository.repo", + "attribute": [] + }, + { + "resource": "module.repo_list[\"automation-repos\"].github_repository.repo", + "attribute": [] + }, + { + "resource": "module.repo_list[\"docker-image-pipeline\"].github_repository.repo", + "attribute": [ + "name" + ] + }, + { + "resource": "module.repo_list[\"pip-config\"].github_repository.repo", + "attribute": [ + "node_id" + ] + }, + { + "resource": "module.repo_list[\"terraform-morpheus-queue\"].github_repository.repo", + "attribute": [ + "node_id" + ] + }, + { + "resource": "module.repo_list[\"aws-beanstalk-docker\"].github_repository.repo", + "attribute": [] + }, + { + "resource": "module.repo_list[\"aws-beanstalk-nodejs\"].github_repository.repo", + "attribute": [] + }, + { + "resource": "module.repo_list[\"terraform-morpheus-alb\"].data.github_user.pull_request_bypassers", + "attribute": [] + }, + { + "resource": "module.repo_list[\"tf-tools\"].github_repository.repo", + "attribute": [ + "node_id" + ] + }, + { + "resource": "module.repo_list[\"terraform-aws-ses\"].github_repository.repo", + "attribute": [ + "node_id" + ] + }, + { + "resource": "module.repo_list[\"terraform-aws-ses\"].github_repository.repo", + "attribute": [] + }, + { + "resource": "module.repo_list[\"terraform-morpheus-storage\"].github_repository.repo", + "attribute": [] + }, + { + "resource": "module.repo_list[\"terraform-morpheus-efs\"].github_repository.repo", + "attribute": [] + }, + { + "resource": "module.repo_list[\"terraform-morpheus-storage\"].data.github_user.pull_request_bypassers", + "attribute": [] + }, + { + "resource": "module.repo_list[\"aws-image-pipeline\"].github_repository.repo", + "attribute": [ + "name" + ] + }, + { + "resource": "module.repo_list[\"terraform-morpheus-cluster\"].github_repository.repo", + "attribute": [ + "node_id" + ] + }, + { + "resource": "module.repo_list[\"github-runner-images\"].github_repository.repo", + "attribute": [] + }, + { + "resource": "module.repo_list[\"csvd-org-management\"].github_repository.repo", + "attribute": [] + }, + { + "resource": "module.repo_list[\"aws-secrets\"].github_repository.repo", + "attribute": [] + }, + { + "resource": "module.repo_list[\"tf-tools\"].data.github_user.pull_request_bypassers", + "attribute": [] + }, + { + "resource": "module.repo_list[\"supervisord-conf\"].data.github_user.pull_request_bypassers", + "attribute": [] + }, + { + "resource": "module.repo_list[\"terraform-morpheus-cluster\"].data.github_user.pull_request_bypassers", + "attribute": [] + }, + { + "resource": "module.repo_list[\"image-pipeline-ansible-playbooks\"].github_repository.repo", + "attribute": [ + "name" + ] + }, + { + "resource": "module.repo_list[\"aws-beanstalk-php\"].github_repository.repo", + "attribute": [ + "name" + ] + }, + { + "resource": "module.repo_list[\"aws-image-pipeline\"].github_repository.repo", + "attribute": [] + }, + { + "resource": "module.repo_list[\"beanstalk-flask-demo\"].github_repository.repo", + "attribute": [] + }, + { + "resource": "module.repo_list[\"morpheus-repos\"].github_repository.repo", + "attribute": [] + }, + { + "resource": "module.repo_list[\"terraform-morpheus-queue\"].data.github_user.pull_request_bypassers", + "attribute": [] + }, + { + "resource": "module.repo_list[\"terraform-aws-rds\"].data.github_user.pull_request_bypassers", + "attribute": [] + }, + { + "resource": "module.repo_list[\"aws-beanstalk-docker\"].data.github_ref.ref[0]", + "attribute": [ + "sha" + ] + }, + { + "resource": "module.repo_list[\"docker-image-pipeline\"].github_repository.repo", + "attribute": [] + }, + { + "resource": "module.repo_list[\"terraform-morpheus-cluster\"].github_repository.repo", + "attribute": [] + }, + { + "resource": "module.repo_list[\"supervisord-managed-runners\"].github_repository.repo", + "attribute": [] + }, + { + "resource": "module.repo_list[\"supervisord-conf\"].github_repository.repo", + "attribute": [] + }, + { + "resource": "module.repo_list[\"github-runners-workspace\"].github_repository.repo", + "attribute": [] + }, + { + "resource": "module.repo_list[\"terraform-aws-efs\"].data.github_user.pull_request_bypassers", + "attribute": [] + }, + { + "resource": "module.repo_list[\"aws-beanstalk-nodejs\"].github_repository.repo", + "attribute": [ + "name" + ] + }, + { + "resource": "module.repo_list[\"terraform-morpheus-storage\"].github_repository.repo", + "attribute": [ + "node_id" + ] + }, + { + "resource": "module.repo_list[\"terraform-morpheus-efs\"].github_repository.repo", + "attribute": [ + "node_id" + ] + }, + { + "resource": "module.repo_list[\"terraform-aws-rds\"].github_repository.repo", + "attribute": [ + "node_id" + ] + }, + { + "resource": "module.repo_list[\"windows-image-pipeline\"].github_repository.repo", + "attribute": [] + } + ], + "checks": [ + { + "address": { + "kind": "var", + "module": "module.imported_repos.module.internal_github_actions", + "name": "collaborators", + "to_display": "module.imported_repos.module.internal_github_actions.var.collaborators" + }, + "status": "pass", + "instances": [ + { + "address": { + "module": "module.imported_repos[\"netbackup-automation-platform\"].module.internal_github_actions", + "to_display": "module.imported_repos[\"netbackup-automation-platform\"].module.internal_github_actions.var.collaborators" + }, + "status": "pass" + } + ] + }, + { + "address": { + "kind": "var", + "module": "module.imported_repos.module.internal_github_actions", + "name": "security_and_analysis", + "to_display": "module.imported_repos.module.internal_github_actions.var.security_and_analysis" + }, + "status": "pass", + "instances": [ + { + "address": { + "module": "module.imported_repos[\"netbackup-automation-platform\"].module.internal_github_actions", + "to_display": "module.imported_repos[\"netbackup-automation-platform\"].module.internal_github_actions.var.security_and_analysis" + }, + "status": "pass" + } + ] + } + ], + "timestamp": "2025-04-01T20:35:53Z", + "applyable": true, + "complete": true, + "errored": false +} diff --git a/varfiles/csvd.json b/varfiles/csvd.json new file mode 100644 index 0000000..c4b180a --- /dev/null +++ b/varfiles/csvd.json @@ -0,0 +1,4 @@ +{ + "GITHUB_OWNER": "CSVD", + "TF_WORKSPACE_COLOR": "34" +} \ No newline at end of file diff --git a/varfiles/csvd.tfvars b/varfiles/csvd.tfvars new file mode 100644 index 0000000..254f257 --- /dev/null +++ b/varfiles/csvd.tfvars @@ -0,0 +1,562 @@ +image_pipeline_workflows = { + "image-pipeline-goss-testing" = "./workflows/goss-testing.yaml" + "image-pipeline-goss" = "./workflows/goss-testing.yaml" +} + +github_org = "CSVD" +create_actions_bucket = true +# Adding the imported repositories definition +imported_repos = [ + # { + # name = "netbackup-automation-platform" + # org = "CSVD" + # topics = ["automation-platform"] + # collaborators = { + # "littl381" = "admin" + # "arnol377" = "admin" + # } + # public_repo = { + # default_branch = "main" + # clone_url = "https://github.com/VeritasOS/netbackup-automation-platform.git" + # } + # vulnerability_alerts = false + # } +] + +netbackup_automation_platform = false # Set to false since we're moving it to imported_repos + +repolist = [ + { + description = "Terraform module repo for terraform-morpheus-database" + repo_org = "CSVD" + name = "terraform-morpheus-database" + is_template = false + is_private = false + repo_topics = [ + "morpheus-infra", + ] + }, + { + description = "Terraform module repo for terraform-morpheus-efs" + repo_org = "CSVD" + name = "terraform-morpheus-efs" + enforce_prs = false # Setting to false to avoid branch protection issues + is_template = false + is_private = false + repo_topics = [ + "morpheus-infra", + ] + }, + { + description = "Terraform module repo for terraform-morpheus-loadbalancer" + repo_org = "CSVD" + name = "terraform-morpheus-alb" + enforce_prs = false # Setting to false to avoid branch protection issues + is_template = false + is_private = false + repo_topics = [ + "morpheus-infra", + ] + }, + { + description = "Terraform module repo for terraform-morpheus-cluster" + repo_org = "CSVD" + name = "terraform-morpheus-cluster" + enforce_prs = false # Setting to false to avoid branch protection issues + is_template = false + is_private = false + repo_topics = [ + "morpheus-infra", + ] + }, + { + description = "Terraform module repo for terraform-morpheus-storage" + repo_org = "CSVD" + name = "terraform-morpheus-storage" + enforce_prs = false # Setting to false to avoid branch protection issues + is_template = false + is_private = false + repo_topics = [ + "morpheus-infra", + ] + }, + { + description = "Terraform module repo for terraform-morpheus-queue" + repo_org = "CSVD" + name = "terraform-morpheus-queue" + enforce_prs = false # Setting to false to avoid branch protection issues + is_template = false + is_private = false + repo_topics = [ + "morpheus-infra", + ] + }, + { + description = "Terraform module repo for terraform-morpheus-search" + repo_org = "CSVD" + name = "terraform-morpheus-search" + enforce_prs = false # Setting to false to avoid branch protection issues + is_template = false + is_private = false + repo_topics = [ + "morpheus-infra", + ] + }, + { + description = "service-catalog-workspace" + repo_org = "CSVD" + name = "service-catalog-workspace" + is_template = true + is_private = false + enforce_prs = false # Setting to false to avoid branch protection issues + repo_topics = [ + "terraform-tools", + ] + }, + { + description = "supervisord-managed-runners" + repo_org = "CSVD" + name = "supervisord-managed-runners" + is_template = true + is_private = false + enforce_prs = false # Setting to false to avoid branch protection issues + repo_topics = [ + "terraform-tools", + "github-actions" + ] + }, + { + description = "Workspace for ghe-runners and github-runner-image" + repo_org = "CSVD" + name = "github-runners-workspace" + is_template = true + is_private = true + enforce_prs = false # Setting to false to avoid branch protection issues + repo_topics = [ + "terraform-tools", + "github-actions" + ] + }, + { + description = "Tracking all repos and documentation for Github Actions" + repo_org = "CSVD" + name = "Github-Actions-Project" + is_template = false + is_private = false + enforce_prs = false # Setting to false to avoid branch protection issues + repo_topics = [ + "terraform-tools", + "github-actions" + ] + }, + { + description = "Module for attaching Actions and Environments to target repos" + repo_org = "CSVD" + name = "terraform-git-workspace" + is_private = false + enforce_prs = false # Setting to false to avoid branch protection issues + repo_topics = [ + "terraform-tools", + "github-actions" + ] + }, + { + description = "Managing AWS CSVD Secrets" + repo_org = "CSVD" + name = "aws-secrets" + is_private = false + enforce_prs = false # Setting to false to avoid branch protection issues + repo_topics = [ + "terraform-tools" + ] + }, + { + description = "Managing AWS Github Runner Image" + repo_org = "CSVD" + name = "github-runner-image" + is_private = false + enforce_prs = false # Setting to false to avoid branch protection issues + repo_topics = [ + "terraform-tools" + ] + }, + { + description = "Tools for managing Terraform" + repo_org = "CSVD" + name = "tf-tools" + is_private = false + enforce_prs = false + repo_topics = [ + "terraform-tools" + ] + }, + { + description = "Terraform Caching service" + repo_org = "CSVD" + name = "tf-caching" + is_private = false + enforce_prs = false + repo_topics = [ + "terraform-tools" + ] + }, + { + description = "morpheus-repos" + repo_org = "CSVD" + name = "morpheus-repos" + is_private = false + enforce_prs = false # Setting to false to avoid branch protection issues + repo_topics = [ + "morpheus" + ] + }, + { + description = "supervisord-conf" + repo_org = "CSVD" + name = "supervisord-conf" + enforce_prs = false # Setting to false to avoid branch protection issues + is_private = false + repo_topics = [ + "supervisord", + "automation" + ] + }, + { + description = "Home for github-terraform workspaces" + repo_org = "CSVD" + name = "github-workspaces" + is_private = false + enforce_prs = false # Setting to false to avoid branch protection issues + repo_topics = [ + "github-actions", + "github-workspace" + ] + }, + # aws-copilot-demo + { + description = "AWS Copilot Demo" + repo_org = "CSVD" + name = "aws-copilot-demo" + is_private = false + enforce_prs = false # Setting to false to avoid branch protection issues + repo_topics = [ + "aws-copilot", + "aws-cdk" + ] + }, + # terraform-ai-ingestion + { + description = "Project Repo for AI Ingestion" + repo_org = "CSVD" + name = "terraform-ai-ingestion" + is_private = false + enforce_prs = false # Setting to false to avoid branch protection issues + repo_topics = [ + "ai-ingestion", + "terraform" + ] + }, + { + description = "Module for AWS RDS" + repo_org = "CSVD" + name = "terraform-aws-rds" + enforce_prs = false # Setting to false to avoid branch protection issues + is_private = false + repo_topics = [ + "ai-demo", + "terraform" + ] + }, + { + description = "Module for AWS EFS" + repo_org = "CSVD" + name = "terraform-aws-efs" + enforce_prs = false # Setting to false to avoid branch protection issues + is_private = false + repo_topics = [ + "ai-demo", + "terraform" + ] + }, + { + description = "Module for AWS S3" + repo_org = "CSVD" + name = "terraform-aws-ses" + enforce_prs = false # Setting to false to avoid branch protection issues + is_private = false + repo_topics = [ + "ai-demo", + "terraform" + ] + }, + { + description = "Template Repo for Image Pipeline" + repo_org = "CSVD" + name = "template-aws-image-pipeline" + is_private = false + is_template = true + enforce_prs = false # Setting to false to avoid branch protection issues + repo_topics = [ + "aws-image-pipeline", + "terraform" + ] + }, + { + description = "Pip Configuration for Image Pipeline" + repo_org = "CSVD" + name = "aws-image-pipeline-pip-config" + is_private = false + is_template = true + enforce_prs = false # Setting to false to avoid branch protection issues + repo_topics = [ + "aws-image-pipeline", + "terraform" + ] + }, + { + description = "Terraform Workspace for creating Elastic Beanstalk Apps and Environments" + repo_org = "arnol377" + name = "aws-beanstalk" + is_template = true + is_private = false + enforce_prs = false + repo_topics = [ + "terraform" + ] + }, + { + description = "Automation Repos for Morpheus POC" + repo_org = "CSVD" + name = "automation-repos" + is_template = false + is_private = false + enforce_prs = false + repo_topics = [ + "terraform" + ] + }, + { + description = "Automation Repos for Morpheus POC" + repo_org = "CSVD" + name = "csvd-org-management" + is_template = false + is_private = false + enforce_prs = false + repo_topics = [ + "terraform" + ] + }, + { + description = "Github Runner Images Import" + repo_org = "CSVD" + name = "github-runner-images" + is_template = false + is_private = false + enforce_prs = false + repo_topics = [ + "terraform" + ] + }, + { + description = "Terraform Module for managing github repos" + repo_org = "CSVD" + name = "terraform-github-repo" + is_template = false + is_private = false + enforce_prs = false + repo_topics = [ + "terraform" + ] + }, + { + description = "Terraform Workspace for creating Elastic Beanstalk Apps and Environments" + repo_org = "arnol377" + name = "aws-beanstalk-java" + is_template = true + is_private = false + enforce_prs = false + repo_topics = [ + "terraform" + ] + }, + { + description = "Terraform Workspace for creating Elastic Beanstalk Apps and Environments" + repo_org = "arnol377" + name = "aws-beanstalk-php" + is_template = true + is_private = false + enforce_prs = false + repo_topics = [ + "terraform" + ] + }, + { + description = "Terraform Workspace for creating Elastic Beanstalk Apps and Environments" + repo_org = "arnol377" + name = "aws-beanstalk-nodejs" + is_template = true + is_private = false + enforce_prs = false + repo_topics = [ + "terraform" + ] + }, + { + description = "Terraform Workspace for creating Elastic Beanstalk Apps and Environments" + repo_org = "arnol377" + name = "aws-beanstalk-docker" + is_template = true + is_private = false + enforce_prs = false + repo_topics = [ + "terraform" + ] + }, + { + description = "Terraform Workspace for creating and managing AWS Beanstalk Demo" + repo_org = "arnol377" + name = "beanstalk-flask-demo" + is_template = true + is_private = false + enforce_prs = false + repo_topics = [ + "terraform" + ] + }, + { + description = "Github Actions Setup Node" + repo_org = "arnol377" + name = "gh-actions-setup-node" + is_template = false + is_private = false + enforce_prs = false + repo_topics = [ + "terraform" + ] + }, + { + description = "Add VPC Endpoints for Supported Services to given Subnet" + repo_org = "arnol377" + name = "vpc-services" + is_template = false + is_private = false + enforce_prs = false + repo_topics = [ + "terraform" + ] + }, + { + description = "Terraform workspace for managing OpenSearch" + repo_org = "arnol377" + name = "opensearch" + is_template = false + is_private = false + enforce_prs = false + repo_topics = [ + "terraform" + ] + }, + # Adding morpheus-clouds repository + { + description = "Repo for morpheus cloud" + repo_org = "CSVD" + name = "morpheus-clouds" + is_template = false + is_private = false + enforce_prs = false # Setting to false to avoid branch protection issues + repo_topics = [ + "terraform", + "morpheus", + ] + }, + # Adding image pipeline repositories + { + description = "Template repo for image pipelines" + repo_org = "CSVD" + name = "image-pipeline-goss" + is_template = false + is_private = false + enforce_prs = false # Setting to false to avoid branch protection issues + repo_topics = [ + "terraform" + ] + }, + { + description = "Template repo for image pipelines" + repo_org = "CSVD" + name = "image-pipeline-ansible-playbooks" + is_template = false + is_private = false + enforce_prs = false # Setting to false to avoid branch protection issues + repo_topics = [ + "terraform" + ] + }, + { + description = "Template repo for image pipelines" + repo_org = "CSVD" + name = "image-pipeline-packer" + is_template = false + is_private = false + enforce_prs = false # Setting to false to avoid branch protection issues + repo_topics = [ + "terraform" + ] + }, + { + description = "Template repo for windows image pipelines" + repo_org = "CSVD" + name = "windows-image-pipeline" + is_template = false + is_private = false + enforce_prs = false # Setting to false to avoid branch protection issues + repo_topics = [ + "terraform" + ] + }, + { + description = "Template repo for docker image pipelines" + repo_org = "CSVD" + name = "docker-image-pipeline" + is_template = false + is_private = false + enforce_prs = false # Setting to false to avoid branch protection issues + repo_topics = [ + "terraform" + ] + }, + { + description = "Terraform Workspace for publishing image-pipeline-assets" + repo_org = "CSVD" + name = "image-pipeline-asset-releases" + is_template = false + is_private = false + enforce_prs = false + repo_topics = [ + "terraform" + ] + }, + { + description = "Terraform Workspace for creating and managing AWS Image Pipelines" + repo_org = "CSVD" + name = "aws-image-pipeline" + is_template = true + is_private = false + enforce_prs = false # Setting to false to avoid branch protection issues + repo_topics = [ + "terraform" + ] + }, + { + description = "Terraform Module that creates codepipeline and codebuild jobs and other resources for building and deploying images" + repo_org = "CSVD" + name = "terraform-aws-image-pipeline" + is_template = false + is_private = false + enforce_prs = false # Setting to false to avoid branch protection issues + repo_topics = [ + "terraform" + ] + } +] + diff --git a/varfiles/default.tfvars b/varfiles/default.tfvars index 280739c..fd0393e 100644 --- a/varfiles/default.tfvars +++ b/varfiles/default.tfvars @@ -1,6 +1,26 @@ image_pipeline_workflows = { "image-pipeline-goss-testing" = "./workflows/goss-testing.yaml" + "image-pipeline-goss" = "./workflows/goss-testing.yaml" } +netbackup_automation_platform = false # Set to false since we're moving it to imported_repos + +# New variable for imported repositories +imported_repos = [ + { + name = "netbackup-automation-platform" + org = "CSVD" + topics = ["automation-platform"] + collaborators = { + "littl381" = "admin" + "arnol377" = "admin" + } + public_repo = { + default_branch = "main" + clone_url = "https://github.com/VeritasOS/netbackup-automation-platform.git" + } + vulnerability_alerts = false + } +] repolist = [ { @@ -275,6 +295,246 @@ repolist = [ "aws-image-pipeline", "terraform" ] + }, + { + description = "Terraform Workspace for creating Elastic Beanstalk Apps and Environments" + repo_org = "arnol377" + name = "aws-beanstalk" + is_template = true + is_private = false + enforce_prs = false + repo_topics = [ + "terraform" + ] + }, + { + description = "Automation Repos for Morpheus POC" + repo_org = "CSVD" + name = "automation-repos" + is_template = false + is_private = false + enforce_prs = false + repo_topics = [ + "terraform" + ] + }, + { + description = "Automation Repos for Morpheus POC" + repo_org = "CSVD" + name = "csvd-org-management" + is_template = false + is_private = false + enforce_prs = false + repo_topics = [ + "terraform" + ] + }, + { + description = "Github Runner Images Import" + repo_org = "CSVD" + name = "github-runner-images" + is_template = false + is_private = false + enforce_prs = false + repo_topics = [ + "terraform" + ] + }, + { + description = "Terraform Module for managing github repos" + repo_org = "CSVD" + name = "terraform-github-repo" + is_template = false + is_private = false + enforce_prs = false + repo_topics = [ + "terraform" + ] + }, + { + description = "Terraform Workspace for creating Elastic Beanstalk Apps and Environments" + repo_org = "arnol377" + name = "aws-beanstalk-java" + is_template = true + is_private = false + enforce_prs = false + template_repo = "aws-beanstalk" + template_org = "arnol377" + repo_topics = [ + "terraform" + ] + }, + { + description = "Terraform Workspace for creating Elastic Beanstalk Apps and Environments" + repo_org = "arnol377" + name = "aws-beanstalk-php" + is_template = true + is_private = false + enforce_prs = false + template_repo = "aws-beanstalk" + template_org = "arnol377" + repo_topics = [ + "terraform" + ] + }, + { + description = "Terraform Workspace for creating Elastic Beanstalk Apps and Environments" + repo_org = "arnol377" + name = "aws-beanstalk-nodejs" + is_template = true + is_private = false + enforce_prs = false + template_repo = "aws-beanstalk" + template_org = "arnol377" + repo_topics = [ + "terraform" + ] + }, + { + description = "Terraform Workspace for creating Elastic Beanstalk Apps and Environments" + repo_org = "arnol377" + name = "aws-beanstalk-docker" + is_template = true + is_private = false + enforce_prs = false + template_repo = "aws-beanstalk" + template_org = "arnol377" + repo_topics = [ + "terraform" + ] + }, + { + description = "Terraform Workspace for creating and managing AWS Beanstalk Demo" + repo_org = "arnol377" + name = "beanstalk-flask-demo" + is_template = true + is_private = false + enforce_prs = false + repo_topics = [ + "terraform" + ] + }, + { + description = "Github Actions Setup Node" + repo_org = "arnol377" + name = "gh-actions-setup-node" + is_template = false + is_private = false + enforce_prs = false + repo_topics = [ + "terraform" + ] + }, + { + description = "Add VPC Endpoints for Supported Services to given Subnet" + repo_org = "arnol377" + name = "vpc-services" + is_template = false + is_private = false + enforce_prs = false + repo_topics = [ + "terraform" + ] + }, + { + description = "Terraform workspace for managing OpenSearch" + repo_org = "arnol377" + name = "opensearch" + is_template = false + is_private = false + enforce_prs = false + repo_topics = [ + "terraform" + ] + }, + # Image pipeline repositories from image-pipeline.tf + { + description = "Template repo for image pipelines" + repo_org = "CSVD" + name = "image-pipeline-goss" + is_template = false + is_private = false + enforce_prs = true + repo_topics = [ + "terraform" + ] + }, + { + description = "Template repo for image pipelines" + repo_org = "CSVD" + name = "image-pipeline-ansible-playbooks" + is_template = false + is_private = false + enforce_prs = true + repo_topics = [ + "terraform" + ] + }, + { + description = "Template repo for image pipelines" + repo_org = "CSVD" + name = "image-pipeline-packer" + is_template = false + is_private = false + enforce_prs = true + repo_topics = [ + "terraform" + ] + }, + { + description = "Template repo for windows image pipelines" + repo_org = "CSVD" + name = "windows-image-pipeline" + is_template = false + is_private = false + enforce_prs = true + repo_topics = [ + "terraform" + ] + }, + { + description = "Template repo for docker image pipelines" + repo_org = "CSVD" + name = "docker-image-pipeline" + is_template = false + is_private = false + enforce_prs = true + repo_topics = [ + "terraform" + ] + }, + { + description = "Terraform Workspace for publishing image-pipeline-assets" + repo_org = "CSVD" + name = "image-pipeline-asset-releases" + is_template = false + is_private = false + enforce_prs = false + repo_topics = [ + "terraform" + ] + }, + { + description = "Terraform Workspace for creating and managing AWS Image Pipelines" + repo_org = "CSVD" + name = "aws-image-pipeline" + is_template = true + is_private = false + enforce_prs = true + repo_topics = [ + "terraform" + ] + }, + { + description = "Terraform Module that creates codepipeline and codebuild jobs and other resources for building and deploying images" + repo_org = "CSVD" + name = "terraform-aws-image-pipeline" + is_template = false + is_private = false + enforce_prs = true + repo_topics = [ + "terraform" + ] } ] diff --git a/varfiles/sct-engineering.json b/varfiles/sct-engineering.json new file mode 100644 index 0000000..f4214c3 --- /dev/null +++ b/varfiles/sct-engineering.json @@ -0,0 +1,4 @@ +{ + "GITHUB_OWNER": "sct-engineering", + "TF_WORKSPACE_COLOR": "36" +} \ No newline at end of file diff --git a/varfiles/sct-engineering.tfvars b/varfiles/sct-engineering.tfvars new file mode 100644 index 0000000..2f3cffc --- /dev/null +++ b/varfiles/sct-engineering.tfvars @@ -0,0 +1,50 @@ +github_org = "SCT-Engineering" +create_actions_bucket = false +repolist = [ + { + description = "Github Repo for managing Template Repos" + repo_org = "SCT-Engineering" + name = "template-repos" + enforce_prs = false + is_template = false + is_private = false + repo_topics = [ + "template-repos", + ] + }, + { + description = "Github Repo for managing EKS Clusters throught Templating Repo mechanism" + repo_org = "SCT-Engineering" + name = "eks-clusters" + enforce_prs = false + is_template = false + is_private = false + repo_topics = [ + "template-repos", + ] + }, + { + description = "Terraform module for EKS management" + repo_org = "SCT-Engineering" + name = "module-decomposition" + enforce_prs = false + is_template = false + import = false + repo_topics = [ + "template-repos", + ] + }, + { + description = "Terraform module for EKS management" + repo_org = "SCT-Engineering" + name = "terraform-modules" + enforce_prs = false + is_template = false + import = false + repo_topics = [ + "terraform-modules", + ] + } + +] + diff --git a/variables.tf b/variables.tf index 84c49fe..5d08ae7 100644 --- a/variables.tf +++ b/variables.tf @@ -1,18 +1,56 @@ -variable "image_pipeline_workflows" { - type = map(string) +variable "netbackup_automation_platform" { + type = bool + default = false } -variable "repolist" { +variable "github_org" {} + +variable "create_actions_bucket" { + type = bool + default = true + description = "Flag to control creation of actions bucket resources. Set to false for sct-engineering workspace and true for csvd workspace." +} + +variable "imported_repos" { type = list(object({ - description = string - repo_org = string - name = string - is_template = optional(bool, false) - create_codeowners = optional(bool, false) - enforce_prs = optional(bool, false) - repo_topics = optional(list(string), ["terraform-workspace"]) - is_private = optional(bool, false) - workspace = optional(bool, false) + name = string + org = string + topics = list(string) + collaborators = map(string) + vulnerability_alerts = bool + import = optional(bool, false) + public_repo = object({ + default_branch = string + clone_url = string + }) })) default = [] + description = "List of repositories to import from other sources" +} + +variable "image_pipeline_workflows" { + type = map(string) + description = "Map of repository names to workflow template paths" + default = {} } + +variable "repolist" { + type = list(object({ + description = string + repo_org = string + name = string + is_template = optional(bool, false) + is_private = optional(bool, false) + enforce_prs = optional(bool, true) + repo_topics = optional(list(string), []) + template_repo = optional(string) + template_org = optional(string) + import = optional(bool, false) + managed_extra_files = optional(list(object({ + path = string + content = string + })), []) + })) + default = [] + description = "List of repositories to create" +} \ No newline at end of file