Skip to content

Commit

Permalink
more deps values
Browse files Browse the repository at this point in the history
  • Loading branch information
morga471 committed Jul 23, 2024
1 parent 3a60bec commit 5acbab7
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 7 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
terraform {
source = "git@github.e.it.census.gov:SCT-Engineering/tfmod-cert-manager.git"
source = "git@github.e.it.census.gov:SCT-Engineering/tfmod-cert-manager.git?ref=mcmCluster"
extra_arguments "retry_lock" {
commands = get_terraform_commands_that_need_locking()
arguments = ["-lock-timeout=20m"]
Expand Down
5 changes: 2 additions & 3 deletions lab/us-gov-east-1/vpc/_mcmCluster/eks-config/terragrunt.hcl
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,8 @@ include "root" {

locals {
tag_costallocation = "census:csvd:platformbaseline"
region = "us-gov-east-1"
tags = {
"eks-cluster-name" = "platform-eng-eks-mcm"
"eks-cluster-name" = ependency.eks.inputs.cluster_name
"CostAllocation" = "census:csvd:platformbaseline"
"boc:tf_module_version" = "1.0.0"
"boc:created_by" = "terraform"
Expand Down Expand Up @@ -36,7 +35,7 @@ inputs = {
oidc_provider_arn = dependency.eks.outputs.oidc_provider_arn
tags = local.tags
tag_costallocation = local.tag_costallocation
region = local.region
region = dependency.eks.inputs.region
}


Expand Down
9 changes: 6 additions & 3 deletions lab/us-gov-east-1/vpc/_mcmCluster/eks-grafana/terragrunt.hcl
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,18 @@ dependency "eks-config" {
dependency "eks-cert-manager" {
config_path = "../eks-cert-manager"
}
dependency "eks-loki" {
config_path = "../eks-loki"
}

inputs = {
profile = dependency.eks.inputs.profile
cluster_name = dependency.eks.inputs.cluster_name
region = dependency.eks.inputs.region
cluster_domain = dependency.eks.inputs.domain
certificate_issuer =
datasources =
rwo_storage_class = dependency.eks-config.
certificate_issuer = dependency.eks-cert-manager.outputs.certificate_issuer
datasources = dependency.eks-loki.outputs.gateway_internal_endpoint
rwo_storage_class =
}

generate "provider-eks" {
Expand Down

0 comments on commit 5acbab7

Please sign in to comment.