Skip to content

Commit 36674e2

Browse files
committed
style: fix pre-existing terraform fmt issues in function_app_linux_managed_identity
1 parent c57f693 commit 36674e2

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

  • modules/azure/function_app_linux_managed_identity

modules/azure/function_app_linux_managed_identity/main.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ resource "azurerm_linux_function_app" "function_app" {
9696
}
9797
}
9898

99-
auth_settings_v2 {
99+
auth_settings_v2 {
100100
auth_enabled = true
101101
require_authentication = var.authentication_settings.require_authentication == null ? false : var.authentication_settings.require_authentication
102102
unauthenticated_action = var.authentication_settings.unauthenticated_action == null ? null : var.authentication_settings.unauthenticated_action
@@ -254,7 +254,7 @@ resource "azuread_group_member" "registered_app_member" {
254254
}
255255

256256
resource "azuread_application_password" "password" {
257-
count = local.should_create_app ? 1 : 0
257+
count = local.should_create_app ? 1 : 0
258258
application_id = azuread_application.application[0].id
259259
}
260260

0 commit comments

Comments
 (0)