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 0000000..1a3d148 Binary files /dev/null and b/tf.plan differ 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