Skip to content

Commit

Permalink
azurerm_[linux|windows]_[function|web]_app[_slot] - Fix nilpointer …
Browse files Browse the repository at this point in the history
…`auth_v2` (#21113)
  • Loading branch information
aristosvo authored Mar 24, 2023
1 parent 1090e47 commit 1cc61bb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/services/appservice/helpers/auth_v2_schema.go
Original file line number Diff line number Diff line change
Expand Up @@ -985,7 +985,7 @@ func expandAadAuthV2Settings(input []AadAuthV2Settings) *web.AzureActiveDirector
}
}
if len(aad.AllowedAudiences) > 0 {
result.Validation.AllowedAudiences = pointer.To(aad.AllowedIdentities)
result.Validation.AllowedAudiences = pointer.To(aad.AllowedAudiences)
}
}

Expand Down

0 comments on commit 1cc61bb

Please sign in to comment.