Skip to content

Commit 82642a9

Browse files
committed
fix tflint warning
1 parent d51de6c commit 82642a9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ resource "azurerm_mysql_flexible_server" "main" {
117117
resource "azurerm_mysql_flexible_server_active_directory_administrator" "main" {
118118
count = length(var.entra_authentication.object_id[*]) > 0 ? 1 : 0
119119

120-
server_id = join("", azurerm_mysql_flexible_server.main.*.id)
120+
server_id = join("", azurerm_mysql_flexible_server.main[*].id)
121121
identity_id = var.entra_authentication.user_assigned_identity_id
122122
login = var.entra_authentication.login
123123
object_id = var.entra_authentication.object_id

0 commit comments

Comments
 (0)