Skip to content

Commit

Permalink
try pulling from branch
Browse files Browse the repository at this point in the history
  • Loading branch information
morga471 committed Apr 22, 2025
1 parent da06687 commit 94d0120
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 10 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -89,9 +89,9 @@ Common issues and solutions:
|------|--------|---------|
| <a name="module_images"></a> [images](#module\_images) | git::https://github.e.it.census.gov/terraform-modules/aws-ecr-copy-images.git/ | tf-upgrade |
| <a name="module_ingress_resources"></a> [ingress\_resources](#module\_ingress\_resources) | git::https://github.e.it.census.gov/SCT-Engineering/tfmod-istio-service-ingress.git | n/a |
| <a name="module_keycloak_db_config"></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 |
| <a name="module_post_install"></a> [post\_install](#module\_post\_install) | git::https://github.e.it.census.gov/SCT-Engineering/tfmod-config-job.git//config-job | n/a |
| <a name="module_pre_install"></a> [pre\_install](#module\_pre\_install) | git::https://github.e.it.census.gov/SCT-Engineering/tfmod-config-job.git//config-job | n/a |
| <a name="module_keycloak_db_config"></a> [keycloak\_db\_config](#module\_keycloak\_db\_config) | git::https://github.e.it.census.gov/SCT-Engineering/tfmod-config-job.git/ | mcmCluster//config-job |
| <a name="module_post_install"></a> [post\_install](#module\_post\_install) | git::https://github.e.it.census.gov/SCT-Engineering/tfmod-config-job.git/ | mcmCluster//config-job |
| <a name="module_pre_install"></a> [pre\_install](#module\_pre\_install) | git::https://github.e.it.census.gov/SCT-Engineering/tfmod-config-job.git/ | mcmCluster//config-job |
| <a name="module_service_account"></a> [service\_account](#module\_service\_account) | git::https://github.e.it.census.gov/SCT-Engineering/tfmod-config-job.git//service-account | n/a |

## Resources
Expand Down
13 changes: 6 additions & 7 deletions main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -77,10 +77,10 @@ module "service_account" {

module "pre_install" {
# tflint-ignore: terraform_module_pinned_source
source = "git::https://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/?ref=mcmCluster//config-job"
# source = "git@github.e.it.census.gov:SCT-Engineering/tfmod-config-job.git//config-job"

namespace = kubernetes_namespace.keycloak.metadata[0].name
namespace = module.service_account.namespace
service_account_name = module.service_account.service_account_name
job_name = "keycloak-config-secret-job"
config_script = local.secrets_job_script
Expand Down Expand Up @@ -141,10 +141,9 @@ data "kubernetes_secret" "db-secrets" {

module "keycloak_db_config" {
# tflint-ignore: terraform_module_pinned_source
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"
source = "git::https://github.e.it.census.gov/SCT-Engineering/tfmod-config-job.git/?ref=mcmCluster//config-job"

namespace = kubernetes_namespace.keycloak.metadata[0].name
namespace = helm_release.keycloak-db.namespace
service_account_name = module.service_account.service_account_name
job_name = "keycloak-db-config-job"
config_script = local.db_config_job_script
Expand Down Expand Up @@ -191,14 +190,14 @@ module "ingress_resources" {
source = "git::https://github.e.it.census.gov/SCT-Engineering/tfmod-istio-service-ingress.git"
public_hostname = var.service_name
public_domain = var.cluster_domain
service_name = "keycloak-keycloakx-http"
service_name = format("%v-%v-%v", var.service_name, var.keycloak_namespace, "http")
service_namespace = var.keycloak_namespace
service_port = local.public_port_number
}

module "post_install" {
# tflint-ignore: terraform_module_pinned_source
source = "git::https://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/?ref=mcmCluster//config-job"
# source = "git@github.e.it.census.gov:SCT-Engineering/tfmod-config-job.git//config-job"

namespace = helm_release.keycloak.namespace
Expand Down

0 comments on commit 94d0120

Please sign in to comment.