Skip to content

Commit

Permalink
run fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
sohanyadav committed Jul 11, 2024
1 parent 716f36d commit 68d7052
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions examples/eks/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -93,8 +93,8 @@ module "opszero-eks" {
vpc_flow_logs_enabled = false
efs_enabled = false
# csi
s3_csi_driver_enabled = true
csi_bucket_name = "test-6647373dd" #name of s3
s3_csi_driver_enabled = true
csi_bucket_name = "test-6647373dd" #name of s3
}

module "helm-common" {
Expand Down
2 changes: 1 addition & 1 deletion iam.tf
Original file line number Diff line number Diff line change
Expand Up @@ -387,7 +387,7 @@ EOF


resource "aws_iam_policy" "s3_policy" {
count = var.s3_csi_driver_enabled ? 1 : 0
count = var.s3_csi_driver_enabled ? 1 : 0
name = "${var.environment_name}-s3-access-policy"
description = "IAM policy for S3 access"

Expand Down
2 changes: 1 addition & 1 deletion metrics_server.tf
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
resource "helm_release" "metrics-server" {
depends_on = [aws_eks_cluster.cluster]
depends_on = [aws_eks_cluster.cluster]
name = "metrics-server"
repository = "https://kubernetes-sigs.github.io/metrics-server/"
chart = "metrics-server"
Expand Down

0 comments on commit 68d7052

Please sign in to comment.