Skip to content

Commit

Permalink
Issue #3: Testing without role assignment
Browse files Browse the repository at this point in the history
  • Loading branch information
SonOfLope committed Feb 14, 2024
1 parent 8fb11ed commit 2c643f8
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions terraform/modules/azure-kubernetes-cluster/accounts.tf
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
resource "azurerm_role_assignment" "admin" {
for_each = toset(var.aks_admin_group_object_ids)
scope = azurerm_kubernetes_cluster.k8s.id
role_definition_name = "Azure Kubernetes Service Cluster User Role"
principal_id = each.value
}
# resource "azurerm_role_assignment" "admin" {
# for_each = toset(var.aks_admin_group_object_ids)
# scope = azurerm_kubernetes_cluster.k8s.id
# role_definition_name = "Azure Kubernetes Service Cluster User Role"
# principal_id = each.value
# }

# resource "azurerm_role_assignment" "namespace-groups" {
# for_each = toset(var.ad_groups)
Expand Down

0 comments on commit 2c643f8

Please sign in to comment.