From 8b71e0714f820aa2e6f43782353b9768ab59e228 Mon Sep 17 00:00:00 2001 From: "Matthew C. Morgan" Date: Fri, 18 Apr 2025 17:59:30 -0400 Subject: [PATCH] fix source path --- README.md | 2 +- main.tf | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 97d28f6..d0f9778 100644 --- a/README.md +++ b/README.md @@ -88,7 +88,7 @@ Common issues and solutions: |------|--------|---------| | [images](#module\_images) | git::https://github.e.it.census.gov/terraform-modules/aws-ecr-copy-images.git/ | tf-upgrade | | [ingress\_resources](#module\_ingress\_resources) | git::https://github.e.it.census.gov/SCT-Engineering/tfmod-istio-service-ingress.git | n/a | -| [keycloak\_db\_config](#module\_keycloak\_db\_config) | git@github.e.it.census.gov:SCT-Engineering/tfmod-config-job.git//config-job | n/a | +| [keycloak\_db\_config](#module\_keycloak\_db\_config) | git::https://github.e.it.census.gov/SCT-Engineering/tfmod-config-job.git//config-job | n/a | | [post\_install](#module\_post\_install) | git::https://github.e.it.census.gov/SCT-Engineering/tfmod-config-job.git//config-job | n/a | | [pre\_install](#module\_pre\_install) | git::https://github.e.it.census.gov/SCT-Engineering/tfmod-config-job.git//config-job | n/a | | [service\_account](#module\_service\_account) | git::https://github.e.it.census.gov/SCT-Engineering/tfmod-config-job.git//service-account | n/a | diff --git a/main.tf b/main.tf index 0576e7d..73ae8ae 100644 --- a/main.tf +++ b/main.tf @@ -128,9 +128,9 @@ data "kubernetes_secret" "db-secrets" { } module "keycloak_db_config" { - # source = "git::https://github.e.it.census.gov/SCT-Engineering/tfmod-config-job.git//config-job" # tflint-ignore: terraform_module_pinned_source - source = "git@github.e.it.census.gov:SCT-Engineering/tfmod-config-job.git//config-job" + source = "git::https://github.e.it.census.gov/SCT-Engineering/tfmod-config-job.git//config-job" + # source = "git@github.e.it.census.gov:SCT-Engineering/tfmod-config-job.git//config-job" depends_on = [helm_release.keycloak-db]