From b1d060da4636fb15d10b2ad5a3d7c7ed3f84b087 Mon Sep 17 00:00:00 2001 From: Jeff Crichlake Date: Tue, 14 Nov 2023 14:15:45 -0500 Subject: [PATCH 01/15] Updating staging terraform --- operations/environments/staging/main.tf | 2 +- operations/template/main.tf | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/operations/environments/staging/main.tf b/operations/environments/staging/main.tf index ce495af37..d4cc1861c 100644 --- a/operations/environments/staging/main.tf +++ b/operations/environments/staging/main.tf @@ -27,6 +27,6 @@ provider "azurerm" { module "template" { source = "../../template/" - environment = "staging" + environment = "stg" deployer_id = "d59c2c86-de5e-41b7-a752-0869a73f5a60" //github app registration in Flexion Azure Entra } diff --git a/operations/template/main.tf b/operations/template/main.tf index f10451e8d..3cb92e5f5 100644 --- a/operations/template/main.tf +++ b/operations/template/main.tf @@ -32,7 +32,7 @@ resource "azurerm_service_plan" "plan" { # Create the staging App Service resource "azurerm_linux_web_app" "api" { - name = "cdcti-${var.environment}-api2" + name = "cdcti-${var.environment}-api" resource_group_name = data.azurerm_resource_group.group.name location = azurerm_service_plan.plan.location service_plan_id = azurerm_service_plan.plan.id @@ -57,7 +57,7 @@ resource "azurerm_linux_web_app" "api" { } resource "azurerm_storage_account" "docs" { - name = "cdcti${var.environment}docs2" + name = "cdcti${var.environment}docs" resource_group_name = data.azurerm_resource_group.group.name location = data.azurerm_resource_group.group.location account_tier = "Standard" From 6754055f59f10439643b8712272e84719bd291e3 Mon Sep 17 00:00:00 2001 From: Jeff Crichlake Date: Fri, 17 Nov 2023 15:33:26 -0500 Subject: [PATCH 02/15] Adding update --- operations/template/main.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/operations/template/main.tf b/operations/template/main.tf index 3cb92e5f5..5fa49c0b8 100644 --- a/operations/template/main.tf +++ b/operations/template/main.tf @@ -1,7 +1,7 @@ locals { environment_to_rs_environment_prefix_mapping = { dev = "staging" - staging = "staging" + staging = "stg" prod = "" } selected_rs_environment_prefix = lookup(local.environment_to_rs_environment_prefix_mapping, var.environment, "staging") From 96c171582a288d6591279b3818e5d725a4e32d04 Mon Sep 17 00:00:00 2001 From: Jeff Crichlake Date: Fri, 17 Nov 2023 16:05:41 -0500 Subject: [PATCH 03/15] Pushing pipeline changes --- .github/workflows/cicd.yml | 6 +++--- .github/workflows/terraform-ci-deploy.yml | 18 +++++++++--------- .../workflows/terraform-deploy_reusable.yml | 6 +++--- 3 files changed, 15 insertions(+), 15 deletions(-) diff --git a/.github/workflows/cicd.yml b/.github/workflows/cicd.yml index 71d6b0401..385f51343 100644 --- a/.github/workflows/cicd.yml +++ b/.github/workflows/cicd.yml @@ -36,6 +36,6 @@ jobs: APP: ${{ needs.terraform-deploy.outputs.APP }} REGISTRY: ${{ needs.terraform-deploy.outputs.REGISTRY }} secrets: - AZURE_CLIENT_ID: ${{ secrets.AZURE_CLIENT_ID }} - AZURE_TENANT_ID: ${{ secrets.AZURE_TENANT_ID }} - AZURE_SUBSCRIPTION_ID: ${{ secrets.AZURE_SUBSCRIPTION_ID }} + AZURE_CLIENT_ID: ${{ secrets.AZURE_CDC_CLIENT_ID }} + AZURE_TENANT_ID: ${{ secrets.AZURE_CDC_TENANT_ID }} + AZURE_SUBSCRIPTION_ID: ${{ secrets.AZURE_CDC_DMZ_C1_SUBSCRIPTION_ID }} diff --git a/.github/workflows/terraform-ci-deploy.yml b/.github/workflows/terraform-ci-deploy.yml index 482828a6c..53cb20663 100644 --- a/.github/workflows/terraform-ci-deploy.yml +++ b/.github/workflows/terraform-ci-deploy.yml @@ -35,9 +35,9 @@ jobs: TERRAFORM_INIT_PARAMETERS: -backend-config="key=pr_${{ github.event.number }}.tfstate" TERRAFORM_APPLY_PARAMETERS: -var="pr_number=${{ github.event.number }}" secrets: - AZURE_CLIENT_ID: ${{ secrets.AZURE_CLIENT_ID }} - AZURE_TENANT_ID: ${{ secrets.AZURE_TENANT_ID }} - AZURE_SUBSCRIPTION_ID: ${{ secrets.AZURE_SUBSCRIPTION_ID }} + AZURE_CLIENT_ID: ${{ secrets.AZURE_CDC_CLIENT_ID }} + AZURE_TENANT_ID: ${{ secrets.AZURE_CDC_TENANT_ID }} + AZURE_SUBSCRIPTION_ID: ${{ secrets.AZURE_CDC_DMZ_C1_SUBSCRIPTION_ID }} terraform-deploy-skip: # runs when the PR doesn't have any changes that require the PR deploy; this ensures we get the appropriate required PR checks @@ -61,9 +61,9 @@ jobs: APP: ${{ needs.terraform-deploy.outputs.APP }} REGISTRY: ${{ needs.terraform-deploy.outputs.REGISTRY }} secrets: - AZURE_CLIENT_ID: ${{ secrets.AZURE_CLIENT_ID }} - AZURE_TENANT_ID: ${{ secrets.AZURE_TENANT_ID }} - AZURE_SUBSCRIPTION_ID: ${{ secrets.AZURE_SUBSCRIPTION_ID }} + AZURE_CLIENT_ID: ${{ secrets.AZURE_CDC_CLIENT_ID }} + AZURE_TENANT_ID: ${{ secrets.AZURE_CDC_TENANT_ID }} + AZURE_SUBSCRIPTION_ID: ${{ secrets.AZURE_CDC_DMZ_C1_SUBSCRIPTION_ID }} pr-deploy-skip: # runs when the PR doesn't have any changes that require the PR deploy; this ensures we get the appropriate required PR checks @@ -82,9 +82,9 @@ jobs: if: needs.paths-filter.outputs.operations == 'true' && always() runs-on: ubuntu-latest env: - ARM_CLIENT_ID: ${{ secrets.AZURE_CLIENT_ID }} - ARM_TENANT_ID: ${{ secrets.AZURE_TENANT_ID }} - ARM_SUBSCRIPTION_ID: ${{ secrets.AZURE_SUBSCRIPTION_ID }} + ARM_CLIENT_ID: ${{ secrets.AZURE_CDC_CLIENT_ID }} + ARM_TENANT_ID: ${{ secrets.AZURE_CDC_TENANT_ID }} + ARM_SUBSCRIPTION_ID: ${{ secrets.AZURE_CDC_DMZ_C1_SUBSCRIPTION_ID }} ARM_USE_OIDC: true permissions: id-token: write diff --git a/.github/workflows/terraform-deploy_reusable.yml b/.github/workflows/terraform-deploy_reusable.yml index 91e179dc4..71c4428c1 100644 --- a/.github/workflows/terraform-deploy_reusable.yml +++ b/.github/workflows/terraform-deploy_reusable.yml @@ -34,9 +34,9 @@ jobs: name: Terraform Deploy runs-on: ubuntu-latest env: - ARM_CLIENT_ID: ${{ secrets.AZURE_CLIENT_ID }} - ARM_TENANT_ID: ${{ secrets.AZURE_TENANT_ID }} - ARM_SUBSCRIPTION_ID: ${{ secrets.AZURE_SUBSCRIPTION_ID }} + ARM_CLIENT_ID: ${{ secrets.AZURE_CDC_CLIENT_ID }} + ARM_TENANT_ID: ${{ secrets.AZURE_CDC_TENANT_ID }} + ARM_SUBSCRIPTION_ID: ${{ secrets.AZURE_CDC_DMZ_C1_SUBSCRIPTION_ID }} ARM_USE_OIDC: true permissions: id-token: write From 6acfef441eaff5ef78a2251bdb1094a6d35b9053 Mon Sep 17 00:00:00 2001 From: Jeff Crichlake Date: Fri, 17 Nov 2023 16:22:27 -0500 Subject: [PATCH 04/15] Updating staging deployer_id --- operations/environments/staging/main.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/operations/environments/staging/main.tf b/operations/environments/staging/main.tf index d4cc1861c..b2274b3dd 100644 --- a/operations/environments/staging/main.tf +++ b/operations/environments/staging/main.tf @@ -28,5 +28,5 @@ module "template" { source = "../../template/" environment = "stg" - deployer_id = "d59c2c86-de5e-41b7-a752-0869a73f5a60" //github app registration in Flexion Azure Entra + deployer_id = "f5feabe7-5d37-40ba-94f2-e5c0760b4561" //github app registration in Flexion Azure Entra } From 5e903db93f9fd7e3bf1618042fdc157a4a876d1f Mon Sep 17 00:00:00 2001 From: Jeff Crichlake Date: Fri, 17 Nov 2023 16:39:45 -0500 Subject: [PATCH 05/15] Updating yml --- .github/workflows/terraform-deploy_reusable.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/terraform-deploy_reusable.yml b/.github/workflows/terraform-deploy_reusable.yml index 71c4428c1..91e179dc4 100644 --- a/.github/workflows/terraform-deploy_reusable.yml +++ b/.github/workflows/terraform-deploy_reusable.yml @@ -34,9 +34,9 @@ jobs: name: Terraform Deploy runs-on: ubuntu-latest env: - ARM_CLIENT_ID: ${{ secrets.AZURE_CDC_CLIENT_ID }} - ARM_TENANT_ID: ${{ secrets.AZURE_CDC_TENANT_ID }} - ARM_SUBSCRIPTION_ID: ${{ secrets.AZURE_CDC_DMZ_C1_SUBSCRIPTION_ID }} + ARM_CLIENT_ID: ${{ secrets.AZURE_CLIENT_ID }} + ARM_TENANT_ID: ${{ secrets.AZURE_TENANT_ID }} + ARM_SUBSCRIPTION_ID: ${{ secrets.AZURE_SUBSCRIPTION_ID }} ARM_USE_OIDC: true permissions: id-token: write From b9f4135ab5c24c4c2b2ee6d0d95be2b81d139c1d Mon Sep 17 00:00:00 2001 From: halprin Date: Tue, 21 Nov 2023 11:13:43 -0700 Subject: [PATCH 06/15] 497: Update the env to RS env mapping for staging --- operations/environments/staging/main.tf | 2 +- operations/template/main.tf | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/operations/environments/staging/main.tf b/operations/environments/staging/main.tf index b2274b3dd..d6f65a44b 100644 --- a/operations/environments/staging/main.tf +++ b/operations/environments/staging/main.tf @@ -28,5 +28,5 @@ module "template" { source = "../../template/" environment = "stg" - deployer_id = "f5feabe7-5d37-40ba-94f2-e5c0760b4561" //github app registration in Flexion Azure Entra + deployer_id = "f5feabe7-5d37-40ba-94f2-e5c0760b4561" //github app registration in CDC Azure Entra } diff --git a/operations/template/main.tf b/operations/template/main.tf index 5fa49c0b8..83ab675c5 100644 --- a/operations/template/main.tf +++ b/operations/template/main.tf @@ -1,7 +1,7 @@ locals { environment_to_rs_environment_prefix_mapping = { dev = "staging" - staging = "stg" + stg = "staging" prod = "" } selected_rs_environment_prefix = lookup(local.environment_to_rs_environment_prefix_mapping, var.environment, "staging") From a9b55a225e33f4fbb079862d7328cdd2afaba0be Mon Sep 17 00:00:00 2001 From: halprin Date: Tue, 21 Nov 2023 11:19:54 -0700 Subject: [PATCH 07/15] 497: Revert CI deploy to use Flexion Entra domain credentials --- .github/workflows/terraform-ci-deploy.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/terraform-ci-deploy.yml b/.github/workflows/terraform-ci-deploy.yml index 53cb20663..5348ccfd9 100644 --- a/.github/workflows/terraform-ci-deploy.yml +++ b/.github/workflows/terraform-ci-deploy.yml @@ -35,9 +35,9 @@ jobs: TERRAFORM_INIT_PARAMETERS: -backend-config="key=pr_${{ github.event.number }}.tfstate" TERRAFORM_APPLY_PARAMETERS: -var="pr_number=${{ github.event.number }}" secrets: - AZURE_CLIENT_ID: ${{ secrets.AZURE_CDC_CLIENT_ID }} - AZURE_TENANT_ID: ${{ secrets.AZURE_CDC_TENANT_ID }} - AZURE_SUBSCRIPTION_ID: ${{ secrets.AZURE_CDC_DMZ_C1_SUBSCRIPTION_ID }} + AZURE_CLIENT_ID: ${{ secrets.AZURE_CLIENT_ID }} + AZURE_TENANT_ID: ${{ secrets.AZURE_TENANT_ID }} + AZURE_SUBSCRIPTION_ID: ${{ secrets.AZURE_SUBSCRIPTION_ID }} terraform-deploy-skip: # runs when the PR doesn't have any changes that require the PR deploy; this ensures we get the appropriate required PR checks From b33535df790cdea5ade498877e856702d8577887 Mon Sep 17 00:00:00 2001 From: halprin Date: Tue, 21 Nov 2023 11:21:50 -0700 Subject: [PATCH 08/15] 497: Revert CI deploy to use Flexion Entra domain credentials part 2 --- .github/workflows/terraform-ci-deploy.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/terraform-ci-deploy.yml b/.github/workflows/terraform-ci-deploy.yml index 5348ccfd9..482828a6c 100644 --- a/.github/workflows/terraform-ci-deploy.yml +++ b/.github/workflows/terraform-ci-deploy.yml @@ -61,9 +61,9 @@ jobs: APP: ${{ needs.terraform-deploy.outputs.APP }} REGISTRY: ${{ needs.terraform-deploy.outputs.REGISTRY }} secrets: - AZURE_CLIENT_ID: ${{ secrets.AZURE_CDC_CLIENT_ID }} - AZURE_TENANT_ID: ${{ secrets.AZURE_CDC_TENANT_ID }} - AZURE_SUBSCRIPTION_ID: ${{ secrets.AZURE_CDC_DMZ_C1_SUBSCRIPTION_ID }} + AZURE_CLIENT_ID: ${{ secrets.AZURE_CLIENT_ID }} + AZURE_TENANT_ID: ${{ secrets.AZURE_TENANT_ID }} + AZURE_SUBSCRIPTION_ID: ${{ secrets.AZURE_SUBSCRIPTION_ID }} pr-deploy-skip: # runs when the PR doesn't have any changes that require the PR deploy; this ensures we get the appropriate required PR checks @@ -82,9 +82,9 @@ jobs: if: needs.paths-filter.outputs.operations == 'true' && always() runs-on: ubuntu-latest env: - ARM_CLIENT_ID: ${{ secrets.AZURE_CDC_CLIENT_ID }} - ARM_TENANT_ID: ${{ secrets.AZURE_CDC_TENANT_ID }} - ARM_SUBSCRIPTION_ID: ${{ secrets.AZURE_CDC_DMZ_C1_SUBSCRIPTION_ID }} + ARM_CLIENT_ID: ${{ secrets.AZURE_CLIENT_ID }} + ARM_TENANT_ID: ${{ secrets.AZURE_TENANT_ID }} + ARM_SUBSCRIPTION_ID: ${{ secrets.AZURE_SUBSCRIPTION_ID }} ARM_USE_OIDC: true permissions: id-token: write From 873ab5bd3e868dce4bcd311d6b9f4516d426dcda Mon Sep 17 00:00:00 2001 From: halprin Date: Tue, 21 Nov 2023 11:25:15 -0700 Subject: [PATCH 09/15] 497: Use the CDC Entra domain credentials for the terraform-deploy step --- .github/workflows/cicd.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/cicd.yml b/.github/workflows/cicd.yml index 385f51343..33205112c 100644 --- a/.github/workflows/cicd.yml +++ b/.github/workflows/cicd.yml @@ -21,9 +21,9 @@ jobs: with: TERRAFORM_DIRECTORY: operations/environments/staging secrets: - AZURE_CLIENT_ID: ${{ secrets.AZURE_CLIENT_ID }} - AZURE_TENANT_ID: ${{ secrets.AZURE_TENANT_ID }} - AZURE_SUBSCRIPTION_ID: ${{ secrets.AZURE_SUBSCRIPTION_ID }} + AZURE_CLIENT_ID: ${{ secrets.AZURE_CDC_CLIENT_ID }} + AZURE_TENANT_ID: ${{ secrets.AZURE_CDC_TENANT_ID }} + AZURE_SUBSCRIPTION_ID: ${{ secrets.AZURE_CDC_DMZ_C1_SUBSCRIPTION_ID }} staging-deploy: name: Staging Application Deploy From d4675d733b6192850366713b18146ab5b801ab77 Mon Sep 17 00:00:00 2001 From: halprin Date: Tue, 21 Nov 2023 11:35:09 -0700 Subject: [PATCH 10/15] 497: rename the staging environment to stg when doing our application deploy --- .github/workflows/cicd.yml | 2 +- .github/workflows/deploy_reusable.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/cicd.yml b/.github/workflows/cicd.yml index 33205112c..b533eba28 100644 --- a/.github/workflows/cicd.yml +++ b/.github/workflows/cicd.yml @@ -30,7 +30,7 @@ jobs: needs: terraform-deploy uses: ./.github/workflows/deploy_reusable.yml with: - ENVIRONMENT: staging + ENVIRONMENT: stg REPO: trusted-intermediary-router REPO_DOCS: trusted-intermediary-docs APP: ${{ needs.terraform-deploy.outputs.APP }} diff --git a/.github/workflows/deploy_reusable.yml b/.github/workflows/deploy_reusable.yml index 875d7286c..876a53b40 100644 --- a/.github/workflows/deploy_reusable.yml +++ b/.github/workflows/deploy_reusable.yml @@ -147,4 +147,4 @@ jobs: MODIFIED_ENVIRONMENT=${{ inputs.ENVIRONMENT }} fi - az storage blob sync --account-name cdcti${MODIFIED_ENVIRONMENT}docs2 -c '$web' -s ${{ steps.extract.outputs.destination }} + az storage blob sync --account-name cdcti${MODIFIED_ENVIRONMENT}docs -c '$web' -s ${{ steps.extract.outputs.destination }} From bd73c11be5ce6e83e06ba7d6dd7754ac7c24a265 Mon Sep 17 00:00:00 2001 From: halprin Date: Tue, 21 Nov 2023 11:40:38 -0700 Subject: [PATCH 11/15] 497: Test deploy to CDC staging --- .github/workflows/cicd.yml | 1 + .secrets.baseline | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/cicd.yml b/.github/workflows/cicd.yml index b533eba28..a48725631 100644 --- a/.github/workflows/cicd.yml +++ b/.github/workflows/cicd.yml @@ -4,6 +4,7 @@ on: push: branches: - main + - task/updating-staging-azure paths-ignore: - '*.md' workflow_dispatch: diff --git a/.secrets.baseline b/.secrets.baseline index 14effbb95..1e8b3182a 100644 --- a/.secrets.baseline +++ b/.secrets.baseline @@ -118,7 +118,7 @@ "filename": ".github/workflows/cicd.yml", "hashed_secret": "3e26d6750975d678acb8fa35a0f69237881576b0", "is_verified": false, - "line_number": 15, + "line_number": 16, "is_secret": false } ], @@ -223,5 +223,5 @@ } ] }, - "generated_at": "2023-10-27T15:37:42Z" + "generated_at": "2023-11-21T18:40:06Z" } From a104498b68609f4fa4aa3ea15e6a547f55fecb2f Mon Sep 17 00:00:00 2001 From: Basilio Bogado <541149+basiliskus@users.noreply.github.com> Date: Tue, 21 Nov 2023 10:43:20 -0800 Subject: [PATCH 12/15] Fixed terraform formatting --- operations/template/main.tf | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/operations/template/main.tf b/operations/template/main.tf index 83ab675c5..30edbf352 100644 --- a/operations/template/main.tf +++ b/operations/template/main.tf @@ -1,8 +1,8 @@ locals { environment_to_rs_environment_prefix_mapping = { - dev = "staging" - stg = "staging" - prod = "" + dev = "staging" + stg = "staging" + prod = "" } selected_rs_environment_prefix = lookup(local.environment_to_rs_environment_prefix_mapping, var.environment, "staging") rs_domain_prefix = "${local.selected_rs_environment_prefix}${length(local.selected_rs_environment_prefix) == 0 ? "" : "."}" From 603e7e79aee0fc01bbcc9127a9cf5a9609c2e6c2 Mon Sep 17 00:00:00 2001 From: halprin Date: Tue, 21 Nov 2023 11:51:11 -0700 Subject: [PATCH 13/15] 497: Update the Terraform remote state details for the stg environment --- operations/environments/staging/main.tf | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/operations/environments/staging/main.tf b/operations/environments/staging/main.tf index 5b427a62d..4a75854f9 100644 --- a/operations/environments/staging/main.tf +++ b/operations/environments/staging/main.tf @@ -8,9 +8,9 @@ terraform { # Use a remote Terraform state in Azure Storage backend "azurerm" { - resource_group_name = "cdcti-terraform" - storage_account_name = "cdctiterraform" - container_name = "tfstate" + resource_group_name = "csels-rsti-stg-moderate-rg" + storage_account_name = "cdcintermediaryterraform" + container_name = "terraform-state" key = "staging.terraform.tfstate" } } From 45581d56797ae1334f3104bf5db784f7c0fb3164 Mon Sep 17 00:00:00 2001 From: halprin Date: Tue, 21 Nov 2023 11:59:59 -0700 Subject: [PATCH 14/15] 497: Update the storage account name for the stg terraform remote state --- operations/environments/staging/main.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/operations/environments/staging/main.tf b/operations/environments/staging/main.tf index 4a75854f9..caf8c57b5 100644 --- a/operations/environments/staging/main.tf +++ b/operations/environments/staging/main.tf @@ -9,7 +9,7 @@ terraform { # Use a remote Terraform state in Azure Storage backend "azurerm" { resource_group_name = "csels-rsti-stg-moderate-rg" - storage_account_name = "cdcintermediaryterraform" + storage_account_name = "cdcintermediarytrfrmstg" container_name = "terraform-state" key = "staging.terraform.tfstate" } From e16358d0369b0ef3b0b18016af4302c40f63f967 Mon Sep 17 00:00:00 2001 From: halprin Date: Wed, 22 Nov 2023 14:58:05 -0700 Subject: [PATCH 15/15] 497: Only deploy to staging from the main branch --- .github/workflows/cicd.yml | 1 - .secrets.baseline | 4 ++-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/cicd.yml b/.github/workflows/cicd.yml index a48725631..b533eba28 100644 --- a/.github/workflows/cicd.yml +++ b/.github/workflows/cicd.yml @@ -4,7 +4,6 @@ on: push: branches: - main - - task/updating-staging-azure paths-ignore: - '*.md' workflow_dispatch: diff --git a/.secrets.baseline b/.secrets.baseline index 1e8b3182a..f8d881d7f 100644 --- a/.secrets.baseline +++ b/.secrets.baseline @@ -118,7 +118,7 @@ "filename": ".github/workflows/cicd.yml", "hashed_secret": "3e26d6750975d678acb8fa35a0f69237881576b0", "is_verified": false, - "line_number": 16, + "line_number": 15, "is_secret": false } ], @@ -223,5 +223,5 @@ } ] }, - "generated_at": "2023-11-21T18:40:06Z" + "generated_at": "2023-11-22T21:57:59Z" }