We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cac2271 commit c952bc8Copy full SHA for c952bc8
role_assignments.tf
@@ -9,7 +9,7 @@ resource "azurerm_role_assignment" "acr" {
9
10
# /subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/acceptanceTestResourceGroup1/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testIdentity
11
data "azurerm_user_assigned_identity" "cluster_identity" {
12
- count = (var.client_id == "" || var.client_secret == "") && var.identity_type == "UserAssigned" ? 1 : 0
+ count = nonsensitive((var.client_id == "" || var.client_secret == "") && var.identity_type == "UserAssigned" ? 1 : 0)
13
14
name = split("/", var.identity_ids[0])[8]
15
resource_group_name = split("/", var.identity_ids[0])[4]
0 commit comments