Skip to content

Commit 212f9fc

Browse files
authored
Merge pull request #126715 from icnocop/patch-1
Updated how-to-signing-integrations.md
2 parents 1a5c6f8 + 9b530a3 commit 212f9fc

File tree

1 file changed

+19
-8
lines changed

1 file changed

+19
-8
lines changed

articles/trusted-signing/how-to-signing-integrations.md

Lines changed: 19 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -165,14 +165,25 @@ Each authentication method can be disabled individually to avoid unnecessary att
165165

166166
For example, when authenticating with [EnvironmentCredential](/dotnet/api/azure.identity.environmentcredential) specifically, disable the other credentials with the following inputs:
167167

168-
ExcludeEnvironmentCredential: false
169-
ExcludeManagedIdentityCredential: true
170-
ExcludeSharedTokenCacheCredential: true
171-
ExcludeVisualStudioCredential: true
172-
ExcludeVisualStudioCodeCredential: true
173-
ExcludeAzureCliCredential: true
174-
ExcludeAzurePowershellCredential: true
175-
ExcludeInteractiveBrowserCredential: true
168+
```json
169+
{
170+
"Endpoint": "<Trusted Signing account endpoint>",
171+
"CodeSigningAccountName": "<Trusted Signing account name>",
172+
"CertificateProfileName": "<Certificate profile name>",
173+
"CorrelationId": "<Optional CorrelationId value>",
174+
"ExcludeCredentials": [
175+
"ManagedIdentityCredential",
176+
"WorkloadIdentityCredential",
177+
"SharedTokenCacheCredential",
178+
"VisualStudioCredential",
179+
"VisualStudioCodeCredential",
180+
"AzureCliCredential",
181+
"AzurePowerShellCredential",
182+
"AzureDeveloperCliCredential",
183+
"InteractiveBrowserCredential"
184+
]
185+
}
186+
```
176187

177188
Similarly, if using for example an [AzureCliCredential](/dotnet/api/azure.identity.azureclicredential) , then we want to skip over attempting to authenticate with the several methods that come before it in order.
178189

0 commit comments

Comments
 (0)