# AzureSecurityKeyVaultSettings Properties

- Package: [Aspire.Azure.Security.KeyVault](/reference/api/csharp/aspire.azure.security.keyvault.md)
- Type: [AzureSecurityKeyVaultSettings](/reference/api/csharp/aspire.azure.security.keyvault/azuresecuritykeyvaultsettings.md)
- Kind: `Properties`
- Members: `4`

Provides the client configuration settings for connecting to Azure Key Vault.

## Credential

- Name: `Credential`
- Modifiers: `nullable` `get; set`
- Returns: `TokenCredential?`
- Source: [GitHub](https://github.com/microsoft/aspire/blob/5bd693ae1897dee5e2ce71c2cc08879c1c7eff51/src/Components/Aspire.Azure.Security.KeyVault/AzureSecurityKeyVaultSettings.cs)

Gets or sets the credential used to authenticate to the Azure Key Vault.

```csharp
public TokenCredential? Credential { get; set; }
```

## DisableHealthChecks

- Name: `DisableHealthChecks`
- Modifiers: `get; set`
- Returns: `bool`
- Source: [GitHub](https://github.com/microsoft/aspire/blob/5bd693ae1897dee5e2ce71c2cc08879c1c7eff51/src/Components/Aspire.Azure.Security.KeyVault/AzureSecurityKeyVaultSettings.cs)

Gets or sets a boolean value that indicates whether the Key Vault health check is disabled or not.

```csharp
public bool DisableHealthChecks { get; set; }
```

## DisableTracing

- Name: `DisableTracing`
- Modifiers: `get; set`
- Returns: `bool`
- Source: [GitHub](https://github.com/microsoft/aspire/blob/5bd693ae1897dee5e2ce71c2cc08879c1c7eff51/src/Components/Aspire.Azure.Security.KeyVault/AzureSecurityKeyVaultSettings.cs)

Gets or sets a boolean value that indicates whether the OpenTelemetry tracing is disabled or not.

```csharp
public bool DisableTracing { get; set; }
```

## VaultUri

- Name: `VaultUri`
- Modifiers: `nullable` `get; set`
- Returns: `Uri?`
- Source: [GitHub](https://github.com/microsoft/aspire/blob/5bd693ae1897dee5e2ce71c2cc08879c1c7eff51/src/Components/Aspire.Azure.Security.KeyVault/AzureSecurityKeyVaultSettings.cs)

A `Uri` to the vault on which the client operates. Appears as "DNS Name" in the Azure portal. If you have a secret `Uri`, use `Secrets.KeyVaultSecretIdentifier` to parse the `KeyVaultSecretIdentifier.VaultUri` and other information. You should validate that this URI references a valid Key Vault resource. See [https://aka.ms/azsdk/blog/vault-uri](https://aka.ms/azsdk/blog/vault-uri) for details.

```csharp
public Uri? VaultUri { get; set; }
```
