Skip to content

Commit

Permalink
update terraform fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
OlamideOl1 committed Oct 24, 2024
1 parent 087329f commit fd37749
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions aws/deploy-role-bindings/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ resource "kubernetes_cluster_role_binding" "cluster" {
for_each = toset(var.cluster_roles)

metadata {
name = var.name
name = var.name
}

role_ref {
Expand Down Expand Up @@ -32,7 +32,7 @@ resource "kubernetes_cluster_role" "cluster_crd" {

resource "kubernetes_cluster_role_binding" "cluster_crd" {
metadata {
name = "${var.name}-cluster-crd"
name = "${var.name}-cluster-crd"
}

role_ref {
Expand All @@ -47,7 +47,7 @@ resource "kubernetes_cluster_role_binding" "cluster_crd" {
api_group = "rbac.authorization.k8s.io"
}

depends_on = [ kubernetes_cluster_role.cluster_crd ]
depends_on = [kubernetes_cluster_role.cluster_crd]
}

resource "kubernetes_role_binding" "crd" {
Expand Down

0 comments on commit fd37749

Please sign in to comment.