-
Notifications
You must be signed in to change notification settings - Fork 4.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
azurerm_active_directory_domain_service: filtered_sync_enabled & domain_configuration_type not applied #25575
Comments
Following is the code where these two fields are applied in the provider: Lines 361 to 364 in fd5f043
This is apparently a bug ☝️ Lines 379 to 381 in fd5f043
This LGTM.. Following is the code where these two fields are read in the provider: Lines 493 to 498 in fd5f043
These also LGTM (except the case sensitive quality, but should be fine) Would mind run |
Hi @magodo, it seems to be a problems from the API. The request includes the correct input "ResourceTrusting", but the 201 answer shows "FullySynced".
|
@QBY-ChristianHartmann In this case, you can submit an Azure support ticket, with the |
Is there an existing issue for this?
Community Note
Terraform Version
1.7.3
AzureRM Provider Version
3.98.0
Affected Resource(s)/Data Source(s)
azurerm_active_directory_domain_service
Terraform Configuration Files
Debug Output/Panic Output
Expected Behaviour
Microsoft Entra Domain Services is deployed with domain_configuration_type = "ResourceTrusting", filtered_sync_enabled = true.
``
Actual Behaviour
Microsoft Entra Domain Services is deployed with domain_configuration_type = "FullySynced ", filtered_sync_enabled = false. Another terraform apply shows that the Domain services must be replaced since the domain_configuration_type in the terraform code is different than the actual deployed configuration. Plan after apply:
resource "azurerm_active_directory_domain_service" "eds" {
~ deployment_id = "90fdfb16-de88-4e98-849a-3a03605896fe" -> (known after apply)
~ domain_configuration_type = "FullySynced" -> "ResourceTrusting" # forces replacement
~ filtered_sync_enabled = false -> true
Steps to Reproduce
Important Factoids
No response
References
No response
The text was updated successfully, but these errors were encountered: