Skip to content

Commit

Permalink
fixing lint
Browse files Browse the repository at this point in the history
  • Loading branch information
Paramadon committed May 28, 2024
1 parent f785e3f commit 09f98ba
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions terraform/gpu/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// SPDX-License-Identifier: MIT

module "common" {
source = "../common"
source = "../common"
}

module "basic_components" {
Expand Down Expand Up @@ -123,8 +123,8 @@ resource "aws_eks_addon" "this" {
depends_on = [
null_resource.kubectl
]
addon_name = var.addon_name
cluster_name = aws_eks_cluster.this.name
addon_name = var.addon_name
cluster_name = aws_eks_cluster.this.name
addon_version = var.addon_version
}

Expand Down
2 changes: 1 addition & 1 deletion terraform/gpu/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ variable "addon_name" {
}

variable "addon_version" {
type = string
type = string
default = "latest"
}

Expand Down

0 comments on commit 09f98ba

Please sign in to comment.