# The SecretScope object

An organizational resource for storing secrets. Secret scopes can be
 different types (Databricks-managed, Azure KeyVault backed, etc), and ACLs
 can be applied to control permissions for all secrets within a scope.

## Attributes

- `name` (string)
  A unique name to identify the secret scope.
- `backend_type` (string)
  The type of secret scope backend.
  Possible values: `DATABRICKS`, `AZURE_KEYVAULT`
- `keyvault_metadata` (object)
  The metadata for the secret scope if the type is ``AZURE_KEYVAULT``
  - `resource_id` (string)
    The resource id of the azure KeyVault that user wants to associate the scope with.
  - `dns_name` (string)
    The DNS of the KeyVault

## Example

```json
{
  "name": "string",
  "backend_type": "string",
  "keyvault_metadata": {
    "resource_id": "string",
    "dns_name": "string"
  }
}
```


