Skip to content

Commit

Permalink
Revert "fixing aws example for PLT-1129"
Browse files Browse the repository at this point in the history
This reverts commit 4f18eb7.
  • Loading branch information
SivaanandM committed Nov 5, 2024
1 parent 4f18eb7 commit 78c25bb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/e2e/aws/resource_cluster.tf
Original file line number Diff line number Diff line change
Expand Up @@ -38,14 +38,14 @@ resource "spectrocloud_cluster_aws" "cluster" {
count = 1
instance_type = "t3.large"
disk_size_gb = 62
azs = var.aws_region_az
azs = [var.aws_region_az]
}

machine_pool {
name = "worker-basic"
count = 1
instance_type = "t3.large"
azs = var.aws_region_az
azs = [var.aws_region_az]
}

}

0 comments on commit 78c25bb

Please sign in to comment.