Skip to content

Commit

Permalink
Add empty line between variable definitions for readability
Browse files Browse the repository at this point in the history
  • Loading branch information
loshan20011 committed Jan 9, 2025
1 parent 3eaef19 commit 4cd450f
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions modules/aws/EKS-Fargate-Profile/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -23,23 +23,28 @@ variable "fargate_iam_role_arn" {
type = string
default = null
}

variable "eks_cluster_name" {
description = "Name of the EKS cluster"
type = string
}

variable "fargate_profile_name" {
description = "Name of the fargate profile"
type = string
}

variable "tags" {
description = "Tags to be associated with the EKS"
type = map(string)
default = {}
}

variable "fargate_namespaces" {
description = "Namespaces to be used in Fargate profile"
type = list(string)
}

variable "subnet_ids" {
description = "List of subnets to deploy nodepools"
type = list(string)
Expand Down

0 comments on commit 4cd450f

Please sign in to comment.