Skip to content

Commit

Permalink
updates
Browse files Browse the repository at this point in the history
  • Loading branch information
morga471 committed Aug 20, 2024
1 parent d2419b6 commit e3a95cf
Show file tree
Hide file tree
Showing 5 changed files with 23 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -28,5 +28,5 @@ inputs = {
cert_manager_controller_tag = "v1.15.1"
cert_manager_startupapicheck_tag = "v1.15.1"
cert_manager_webhook_tag = "v1.15.1"
namespace = "cert-manager"
cluster_issuer_name = "cert-manager"
}
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ locals {
}

terraform {
source = "git@github.e.it.census.gov:SCT-Engineering/tfmod-eks-configuration.git"
source = "git@github.e.it.census.gov:SCT-Engineering/tfmod-eks-configuration.git?ref=mcmCluster"
extra_arguments "retry_lock" {
commands = get_terraform_commands_that_need_locking()
arguments = ["-lock-timeout=20m"]
Expand Down
3 changes: 3 additions & 0 deletions lab/us-gov-east-1/vpc/_mcmCluster/eks-grafana/terragrunt.hcl
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@ terraform {
dependency "eks" {
config_path = "../eks"
}
dependency "eks-loki" {
config_path = "../eks-loki"
}
dependency "eks-tempo" {
config_path = "../eks-tempo"
}
Expand Down
21 changes: 16 additions & 5 deletions lab/us-gov-east-1/vpc/_mcmCluster/eks-kiali/terragrunt.hcl
Original file line number Diff line number Diff line change
Expand Up @@ -23,16 +23,27 @@ dependency "eks-config" {
dependency "eks-cert-manager" {
config_path = "../eks-cert-manager"
}
dependency "eks-prometheus" {
config_path = "../eks-prometheus"
}
dependency "eks-grafana" {
config_path = "../eks-grafana"
}

inputs = {
profile = dependency.eks.inputs.profile
cluster_name = dependency.eks.inputs.cluster_name
cluster_domain = dependency.eks.inputs.vpc_domain_name
certificate_issuer = dependency.eks-cert-manager.outputs.certificate_issuer
operators_namespace = dependency.eks-config.outputs.operators_ns
certificate_issuer = dependency.eks-cert-manager.outputs.certificate_issuer
cluster_domain = dependency.eks.inputs.vpc_domain_name
cluster_name = dependency.eks.inputs.cluster_name
grafana_internal_url = dependency.eks-grafana.outputs.internal_endpoint.url
grafana_namespace = dependency.eks-grafana.outputs.namespace
grafana_public_url = dependency.eks-grafana.outputs.public_endpoint.url
grafana_secret_name = dependency.eks-grafana.outputs.secret_name
jaeger_internal_url = ""
operators_namespace = dependency.eks-config.outputs.operators_ns
profile = dependency.eks.inputs.profile
prometheus_internal_url = dependency.eks-prometheus.outputs.prometheus_server_internal_endpoint.url


# client_id = var.sso_client_id
# client_secret = var.sso_client_secret
# keycloak_public_url = var.keycloak_public_url
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ terraform {
dependency "eks" {
config_path = "../eks"
}
dependency "eks-istio" {
config_path = "../eks-istio"
dependency "eks-loki" {
config_path = "../eks-loki"
}

inputs = {
Expand Down

0 comments on commit e3a95cf

Please sign in to comment.