Skip to content

Commit

Permalink
fix: typos caused by the refactor
Browse files Browse the repository at this point in the history
  • Loading branch information
fullykubed committed Mar 20, 2024
1 parent 3264046 commit 940e3bf
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 11 deletions.
16 changes: 8 additions & 8 deletions packages/terraform/aws_eks/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -214,14 +214,14 @@ resource "aws_eks_addon" "coredns" {
////////////////////////////////////////////////////////////

module "aws_cloudwatch_log_group" {
source = "../aws_cloudwatch_log_group"
name = "/aws/eks/${var.cluster_name}/cluster"
description = "Collects logs for our AWS EKS Cluster"
environment = var.environment
module = var.pf_root_module
region = var.region
is_local = var.is_local
extra_tags = var.extra_tags
source = "../aws_cloudwatch_log_group"
name = "/aws/eks/${var.cluster_name}/cluster"
description = "Collects logs for our AWS EKS Cluster"
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
3 changes: 0 additions & 3 deletions packages/terraform/aws_vpc/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -244,9 +244,6 @@ resource "aws_autoscaling_group" "nats" {
}
}
vpc_zone_identifier = [aws_subnet.subnets[each.key].id]
tags = merge(module.tags.tags, {
description = "Autoscaling group for NAT nodes in ${each.key}"
})
}

##########################################################################
Expand Down

0 comments on commit 940e3bf

Please sign in to comment.