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 d51de6c commit 82642a9Copy full SHA for 82642a9
main.tf
@@ -117,7 +117,7 @@ resource "azurerm_mysql_flexible_server" "main" {
117
resource "azurerm_mysql_flexible_server_active_directory_administrator" "main" {
118
count = length(var.entra_authentication.object_id[*]) > 0 ? 1 : 0
119
120
- server_id = join("", azurerm_mysql_flexible_server.main.*.id)
+ server_id = join("", azurerm_mysql_flexible_server.main[*].id)
121
identity_id = var.entra_authentication.user_assigned_identity_id
122
login = var.entra_authentication.login
123
object_id = var.entra_authentication.object_id
0 commit comments