Skip to content

Commit

Permalink
fix: fix refactor typos
Browse files Browse the repository at this point in the history
  • Loading branch information
fullykubed committed Mar 20, 2024
1 parent 8507904 commit ba8c909
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 15 deletions.
14 changes: 7 additions & 7 deletions packages/terraform/aws_eks/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -190,13 +190,13 @@ module "encrypt_key" {
aws.secondary = aws.secondary
}

name = "kube-${var.cluster_name}"
description = "Encryption key for kubernetes control plane data"
environment = var.environment
module = var.pf_root_module
region = var.region
is_local = var.is_local
extra_tags = var.extra_tags
name = "kube-${var.cluster_name}"
description = "Encryption key for kubernetes control plane data"
environment = var.environment
pf_root_module = var.pf_root_module
region = var.region
is_local = var.is_local
extra_tags = var.extra_tags
}

resource "aws_eks_addon" "coredns" {
Expand Down
4 changes: 2 additions & 2 deletions packages/terraform/kube_gha_arc_runners/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,7 @@ resource "helm_release" "runner" {
metadata = {
labels = {
"azure.workload.identity/use" = "true"
module = local.name
pf_module = local.name
submodule = each.key
}
}
Expand Down Expand Up @@ -389,7 +389,7 @@ resource "kubernetes_pod_disruption_budget_v1" "runners" {
min_available = "100%"
selector {
match_labels = {
module = local.name
pf_module = local.name
submodule = each.key
}
}
Expand Down
12 changes: 6 additions & 6 deletions packages/terraform/kube_secrets_csi/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -31,12 +31,12 @@ module "kube_labels" {
}

module "constants" {
source = "../constants"
environment = var.environment
module = var.pf_root_module
region = var.region
is_local = var.is_local
extra_tags = var.extra_tags
source = "../constants"
environment = var.environment
pf_root_module = var.pf_root_module
region = var.region
is_local = var.is_local
extra_tags = var.extra_tags
}

/***************************************
Expand Down

0 comments on commit ba8c909

Please sign in to comment.