Skip to content

Commit

Permalink
Merge pull request miqdigital#13 from kushal1313/feature/issue_resolving
Browse files Browse the repository at this point in the history
resolved type constraints issue in variables.tf and argument definition issue in eks-vpc.tf
  • Loading branch information
manojks5540 authored Feb 27, 2023
2 parents 8f52183 + c69c297 commit 1006718
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion eks-vpc.tf
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ resource "aws_route_table" "eks-private" {
vpc_id = "${aws_vpc.eks.id}"

tags {
Name = "route table for private subnets",
Name = "route table for private subnets"
}
}

Expand Down
6 changes: 3 additions & 3 deletions variables.tf
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
variable "cluster-name" {
description = "Enter eks cluster name - example like eks-demo, eks-dev etc"
type = "string"
type = string
}

variable "eks-worker-ami" {
Expand All @@ -23,13 +23,13 @@ variable "ssh_key_pair" {
}

variable "public_subnets" {
type = "list"
type = list
description = "you can replace these values as per your choice of subnet range"
default = ["10.15.0.0/22", "10.15.4.0/22", "10.15.8.0/22"]
}

variable "private_subnets" {
type = "list"
type = list
description = "you can replace these values as per your choice of subnet range"
default = ["10.15.12.0/22", "10.15.16.0/22", "10.15.20.0/22"]
}
Expand Down

0 comments on commit 1006718

Please sign in to comment.