Skip to content

Commit

Permalink
azurerm_active_directory_doamin_service - Fix a bug when apply `fil…
Browse files Browse the repository at this point in the history
…tered_sync_enabled`
  • Loading branch information
magodo committed Apr 12, 2024
1 parent fd5f043 commit 5a93be3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -360,7 +360,7 @@ func resourceActiveDirectoryDomainServiceCreateUpdate(d *pluginsdk.ResourceData,
loc := location.Normalize(d.Get("location").(string))
filteredSync := domainservices.FilteredSyncDisabled
if d.Get("filtered_sync_enabled").(bool) {
filteredSync = domainservices.FilteredSyncDisabled
filteredSync = domainservices.FilteredSyncEnabled
}

domainService := domainservices.DomainService{
Expand Down

0 comments on commit 5a93be3

Please sign in to comment.