stale-fish-58614
09/15/2025, 8:28 PMup --json seems to generate a customDomainVerificationId and no errors, but the certificate never appears and isn't in the deployed template. I'm using this for the args passed in to the Managed Environment:
this._args.CustomDomainConfiguration = new CustomDomainConfigurationArgs
{
CertificateKeyVaultProperties = new CertificateKeyVaultPropertiesArgs
{
KeyVaultUrl = "https://<vault_name>.<http://vault.azure.net/secrets/|vault.azure.net/secrets/><secret_name>",
Identity = "/subscriptions/<sub_id>/resourcegroups/<rg_name>/providers/Microsoft.ManagedIdentity/userAssignedIdentities/<user_assigned_identity_name>",
},
}
What am I missing?green-answer-22914
09/16/2025, 12:20 AMIdentity you specify have get permissions on the Key Vault secret? Make sure this identity is assigned to the Managed Environment and has the correct access policy in Key Vault.stale-fish-58614
09/16/2025, 5:07 PMstale-fish-58614
09/29/2025, 4:03 PM