Skip to content
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

[BUG]syncOnPremPasswords value not applied #28692

Open
QBY-ChristianHartmann opened this issue Apr 15, 2024 · 0 comments
Open

[BUG]syncOnPremPasswords value not applied #28692

QBY-ChristianHartmann opened this issue Apr 15, 2024 · 0 comments
Labels
bug This issue requires a change to an existing behavior in the product in order to be resolved. customer-reported Issues that are reported by GitHub users external to the Azure organization. domainServices Mgmt This issue points to a problem in the management-plane of the library. question The issue doesn't require a change to the product in order to be resolved. Most issues start as that Service Attention This issue is responsible by Azure service team.

Comments

@QBY-ChristianHartmann
Copy link

API Spec link

https://github.com/Azure/azure-rest-api-specs/blob/main/specification/domainservices/resource-manager/Microsoft.AAD/stable/2021-05-01/domainservices.json

API Spec version

2022-12-01

Describe the bug

The provided value from syncOnPremPasswords is not being applied when initially creating the managed domain.

Expected behavior

syncOnPremPasswords = "enabled" is being applied and shown enabled in the Azure portal.

Actual behavior

syncOnPremPasswords = "disabled" is being applied and shown enabled in the Azure portal.

Reproduction Steps

Done with terraform azapi:

resource "azapi_resource" "eds" {
  type      = "Microsoft.AAD/domainServices@2022-12-01"
  name      = "DomainName"
  location  = "West Europe"
  parent_id = "rg_id"
  body = jsonencode({
    properties = {
      domainConfigurationType = var.domain_configuration_type
      domainName              = "DomainName"
      domainSecuritySettings = {
        syncOnPremPasswords   = "Enabled"      }
      ldapsSettings ={
    ldaps = false
  }
      replicaSets = [
        {
          location = "West Eurpoe"
          subnetId = "SubNetID"
        }
      ]
      sku       = "Enterprise"
      syncScope = "CloudOnly"
    }
  })
  timeouts {
    create = "60m"
    delete = "60m"
  }
}

Environment

No response

@QBY-ChristianHartmann QBY-ChristianHartmann added the bug This issue requires a change to an existing behavior in the product in order to be resolved. label Apr 15, 2024
@microsoft-github-policy-service microsoft-github-policy-service bot added question The issue doesn't require a change to the product in order to be resolved. Most issues start as that customer-reported Issues that are reported by GitHub users external to the Azure organization. labels Apr 15, 2024
@zzhxiaofeng zzhxiaofeng added Service Attention This issue is responsible by Azure service team. domainServices Mgmt This issue points to a problem in the management-plane of the library. labels Apr 15, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug This issue requires a change to an existing behavior in the product in order to be resolved. customer-reported Issues that are reported by GitHub users external to the Azure organization. domainServices Mgmt This issue points to a problem in the management-plane of the library. question The issue doesn't require a change to the product in order to be resolved. Most issues start as that Service Attention This issue is responsible by Azure service team.
Projects
None yet
Development

No branches or pull requests

2 participants