2018-03-22 22:28:42 +00:00
---
2020-01-18 00:18:09 +00:00
layout: api
page_title: Azure - Auth Methods - HTTP API
2018-03-22 22:28:42 +00:00
description: |-
This is the API documentation for the Vault Azure authentication
method plugin.
---
# Azure Auth Method (API)
This is the API documentation for the Vault Azure auth method
plugin. To learn more about the usage and operation, see the
2023-01-26 00:12:15 +00:00
[Vault Azure method documentation](/vault/docs/auth/azure).
2018-03-22 22:28:42 +00:00
This documentation assumes the plugin method is mounted at the
`/auth/azure` path in Vault. Since it is possible to enable auth methods
at any location, please update your API calls accordingly.
## Configure
Configures the credentials required for the plugin to perform API calls
to Azure. These credentials will be used to query the metadata about the
virtual machine.
2020-01-18 00:18:09 +00:00
| Method | Path |
| :----- | :------------------- |
| `POST` | `/auth/azure/config` |
2018-03-22 22:28:42 +00:00
### Parameters
- `tenant_id` `(string: <required>)` - The tenant id for the Azure Active Directory organization.
2022-01-13 18:41:40 +00:00
This value can also be provided with the `AZURE_TENANT_ID` environment variable.
- `resource` `(string: <required>)` - The resource URL for the application registered in Azure Active Directory.
2023-01-26 00:12:15 +00:00
The value is expected to match the audience (`aud` claim) of the [JWT](/vault/api-docs/auth/azure#jwt)
2022-01-13 18:41:40 +00:00
provided to the login API. See the [resource](https://docs.microsoft.com/en-us/azure/active-directory/managed-identities-azure-resources/how-to-use-vm-token#get-a-token-using-http)
parameter for how the audience is set when requesting a JWT access token from the Azure Instance Metadata Service (IMDS) endpoint.
This value can also be provided with the `AZURE_AD_RESOURCE` environment variable.
2018-07-27 12:33:20 +00:00
- `environment` `(string: 'AzurePublicCloud')` - The Azure cloud environment. Valid values: AzurePublicCloud, AzureUSGovernmentCloud, AzureChinaCloud, AzureGermanCloud.
2022-01-13 18:41:40 +00:00
This value can also be provided with the `AZURE_ENVIRONMENT` environment variable.
2020-01-18 00:18:09 +00:00
- `client_id` `(string: '')` - The client id for credentials to query the Azure APIs. Currently read permissions to query compute resources are required.
2022-01-13 18:41:40 +00:00
This value can also be provided with the `AZURE_CLIENT_ID` environment variable.
2020-01-18 00:18:09 +00:00
- `client_secret` `(string: '')` - The client secret for credentials to query the Azure APIs.
2022-01-13 18:41:40 +00:00
This value can also be provided with the `AZURE_CLIENT_SECRET` environment variable.
2018-03-22 22:28:42 +00:00
### Sample Payload
```json
{
"tenant_id": "kd83...",
2022-01-13 18:41:40 +00:00
"resource": "https://management.azure.com/",
2018-03-22 22:28:42 +00:00
"client_id": "12ud...",
"client_secret": "DUJDS3..."
}
```
### Sample Request
2020-05-21 17:18:17 +00:00
```shell-session
2018-03-22 22:28:42 +00:00
$ curl \
--header "X-Vault-Token: ..." \
--request POST \
--data @payload.json \
2018-07-10 14:47:30 +00:00
https://127.0.0.1:8200/v1/auth/azure/config
2018-03-22 22:28:42 +00:00
```
# Read Config
Returns the previously configured config, including credentials.
2020-01-18 00:18:09 +00:00
| Method | Path |
| :----- | :------------------- |
| `GET` | `/auth/azure/config` |
2018-03-22 22:28:42 +00:00
### Sample Request
2020-05-21 17:18:17 +00:00
```shell-session
2018-03-22 22:28:42 +00:00
$ curl \
--header "X-Vault-Token: ..." \
2018-07-10 14:47:30 +00:00
https://127.0.0.1:8200/v1/auth/azure/config
2018-03-22 22:28:42 +00:00
```
### Sample Response
```json
{
"data":{
"tenant_id": "kd83...",
2022-01-13 18:41:40 +00:00
"resource": "https://management.azure.com/",
2018-03-22 22:28:42 +00:00
"client_id": "12ud...",
"client_secret": "DUJDS3..."
},
...
}
```
## Delete Config
Deletes the previously configured Azure config and credentials.
2020-01-18 00:18:09 +00:00
| Method | Path |
| :------- | :------------------- |
| `DELETE` | `/auth/azure/config` |
2018-03-22 22:28:42 +00:00
### Sample Request
2020-05-21 17:18:17 +00:00
```shell-session
2018-03-22 22:28:42 +00:00
$ curl \
--header "X-Vault-Token: ..." \
--request DELETE \
2018-07-10 14:47:30 +00:00
https://127.0.0.1:8200/v1/auth/azure/config
2018-03-22 22:28:42 +00:00
```
2023-02-09 01:14:28 +00:00
## Rotate Root
This endpoint generates a new client secret for the root account defined in the config. The
value generated will only be known by Vault.
| Method | Path |
| :----- | :------------------- |
| `POST` | `/azure/rotate-root` |
### Parameters
There are no parameters to this operation.
### Sample Request
```shell-session
$ curl \
--header "X-Vault-Token: ..." \
--request POST \
https://127.0.0.1:8200/v1/auth/azure/rotate-root
```
2023-02-22 17:02:31 +00:00
## Create/Update Role
2018-03-22 22:28:42 +00:00
Registers a role in the method. Role types have specific entities
that can perform login operations against this endpoint. Constraints specific
to the role type must be set on the role. These are applied to the authenticated
entities attempting to login.
2020-01-18 00:18:09 +00:00
| Method | Path |
| :----- | :----------------------- |
| `POST` | `/auth/azure/role/:name` |
2018-03-22 22:28:42 +00:00
### Parameters
2020-01-18 00:18:09 +00:00
2018-03-22 22:28:42 +00:00
- `name` `(string: <required>)` - Name of the role.
2020-01-18 00:18:09 +00:00
- `bound_service_principal_ids` `(array: [])` - The list of Service Principal IDs
2018-03-22 22:28:42 +00:00
that login is restricted to.
2020-01-18 00:18:09 +00:00
- `bound_group_ids` `(array: [])` - The list of group ids that login is restricted
2018-03-22 22:28:42 +00:00
to.
2019-09-06 22:38:12 +00:00
- `bound_locations` `(array: [])` - The list of locations that login is restricted to.
2020-01-18 00:18:09 +00:00
- `bound_subscription_ids` `(array: [])` - The list of subscription IDs that login
2018-03-22 22:28:42 +00:00
is restricted to.
2019-09-06 22:38:12 +00:00
- `bound_resource_groups` `(array: [])` - The list of resource groups that
2020-01-18 00:18:09 +00:00
login is restricted to.
- `bound_scale_sets` `(array: [])` - The list of scale set names that the
login is restricted to.
2018-03-22 22:28:42 +00:00
2020-12-17 21:53:33 +00:00
@include 'tokenfields.mdx'
2019-07-30 19:58:32 +00:00
2018-03-22 22:28:42 +00:00
### Sample Payload
```json
{
2020-01-18 00:18:09 +00:00
"token_policies": ["default", "dev", "prod"],
2018-03-22 22:28:42 +00:00
"max_ttl": 1800000,
"max_jwt_exp": 10000,
2020-01-18 00:18:09 +00:00
"bound_resource_groups": ["vault-dev", "vault-staging", "vault-prod"]
2018-03-22 22:28:42 +00:00
}
```
### Sample Request
2020-05-21 17:18:17 +00:00
```shell-session
2018-03-22 22:28:42 +00:00
$ curl \
--header "X-Vault-Token: ..." \
--request POST \
--data @payload.json \
2018-07-10 14:47:30 +00:00
https://127.0.0.1:8200/v1/auth/azure/role/dev-role
2018-03-22 22:28:42 +00:00
```
## Read Role
Returns the previously registered role configuration.
2020-01-18 00:18:09 +00:00
| Method | Path |
| :----- | :----------------------- |
| `GET` | `/auth/azure/role/:name` |
2018-03-22 22:28:42 +00:00
### Parameters
- `name` `(string: <required>)` - Name of the role.
### Sample Request
2020-05-21 17:18:17 +00:00
```shell-session
2018-03-22 22:28:42 +00:00
$ curl \
--header "X-Vault-Token: ..." \
2018-07-10 14:47:30 +00:00
https://127.0.0.1:8200/v1/auth/azure/role/dev-role
2018-03-22 22:28:42 +00:00
```
### Sample Response
```json
{
"data":{
2019-10-14 17:12:45 +00:00
"token_policies": [
2018-03-22 22:28:42 +00:00
"default",
"dev",
"prod"
],
"max_ttl": 1800000,
"max_jwt_exp": 10000,
"bound_resource_groups": [
"vault-dev",
"vault-staging",
"vault-prod"
]
},
...
}
```
## List Roles
Lists all the roles that are registered with the plugin.
2020-01-18 00:18:09 +00:00
| Method | Path |
| :----- | :----------------- |
| `LIST` | `/auth/azure/role` |
2018-03-22 22:28:42 +00:00
### Sample Request
2020-05-21 17:18:17 +00:00
```shell-session
2018-03-22 22:28:42 +00:00
$ curl \
--header "X-Vault-Token: ..." \
--request LIST \
2019-09-06 22:38:12 +00:00
https://127.0.0.1:8200/v1/auth/azure/role
2018-03-22 22:28:42 +00:00
```
### Sample Response
2020-01-18 00:18:09 +00:00
```json
2018-03-22 22:28:42 +00:00
{
"data": {
"keys": [
"dev-role",
"prod-role"
]
},
...
}
```
## Delete Role
Deletes the previously registered role.
2020-01-18 00:18:09 +00:00
| Method | Path |
| :------- | :----------------------- |
| `DELETE` | `/auth/azure/role/:name` |
2018-03-22 22:28:42 +00:00
### Parameters
- `name` `(string: <required>)` - Name of the role.
### Sample Request
2020-05-21 17:18:17 +00:00
```shell-session
2018-03-22 22:28:42 +00:00
$ curl \
--header "X-Vault-Token: ..." \
--request DELETE \
2018-07-10 14:47:30 +00:00
https://127.0.0.1:8200/v1/auth/azure/role/dev-role
2018-03-22 22:28:42 +00:00
```
## Login
Fetch a token. This endpoint takes a signed JSON Web Token (JWT) and
a role name for some entity. It verifies the JWT signature to authenticate that
entity and then authorizes the entity for the given role.
2020-01-18 00:18:09 +00:00
| Method | Path |
| :----- | :------------------ |
| `POST` | `/auth/azure/login` |
2018-03-22 22:28:42 +00:00
### Sample Payload
- `role` `(string: <required>)` - Name of the role against which the login is being
attempted.
2022-01-13 18:41:40 +00:00
- `jwt` `(string: <required>)` - Signed [JSON Web Token](https://tools.ietf.org/html/rfc7519) (JWT)
from Azure MSI. See [Azure documentation](https://docs.microsoft.com/en-us/azure/active-directory/managed-identities-azure-resources/how-to-use-vm-token)
for details on how to acquire a JWT access token through instance metadata.
2020-02-06 20:51:34 +00:00
- `subscription_id` `(string: <required>)` - The subscription ID for the machine that
2020-01-18 00:18:09 +00:00
generated the MSI token. This information can be obtained through instance
2018-03-22 22:28:42 +00:00
metadata.
2020-02-06 20:51:34 +00:00
- `resource_group_name` `(string: <required>)` - The resource group for the machine that
2020-01-18 00:18:09 +00:00
generated the MSI token. This information can be obtained through instance
2018-03-22 22:28:42 +00:00
metadata.
- `vm_name` `(string: "")` - The virtual machine name for the machine that
2020-01-18 00:18:09 +00:00
generated the MSI token. This information can be obtained through instance
2022-12-16 15:40:59 +00:00
metadata. If `vmss_name` is provided, this value is ignored.
2020-01-18 00:18:09 +00:00
- `vmss_name` `(string: "")` - The virtual machine scale set name for the machine
that generated the MSI token. This information can be obtained through instance
2018-03-22 22:28:42 +00:00
metadata.
2022-12-16 15:40:59 +00:00
- `resource_id` `(string: "")` - The fully qualified ID of the Azure resource that
generated the MSI token, including the resource name and resource type. Use
the format /subscriptions/{guid}/resourceGroups/{resource-group-name}/{resource-provider-namespace}/{resource-type}/{resource-name}.
If `vm_name` or `vmss_name` is provided, this value is ignored.
2018-03-22 22:28:42 +00:00
### Sample Payload
```json
{
2020-01-18 00:18:09 +00:00
"role": "dev-role",
"jwt": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9..."
2018-03-22 22:28:42 +00:00
}
```
### Sample Request
2020-05-21 17:18:17 +00:00
```shell-session
2018-03-22 22:28:42 +00:00
$ curl \
--request POST \
--data @payload.json \
2018-07-10 14:47:30 +00:00
https://127.0.0.1:8200/v1/auth/azure/login
2018-03-22 22:28:42 +00:00
```
### Sample Response
```json
{
"auth":{
"client_token":"f33f8c72-924e-11f8-cb43-ac59d697597c",
"accessor":"0e9e354a-520f-df04-6867-ee81cae3d42d",
2019-10-14 17:12:45 +00:00
"token_policies":[
2018-03-22 22:28:42 +00:00
"default",
"dev",
"prod"
],
"lease_duration":2764800,
"renewable":true
},
...
}
```