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 Vault Azure method documentation.
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.
Method | Path |
---|---|
POST | /auth/azure/config |
Parameters
tenant_id
(string: <required>)
- The tenant id for the Azure Active Directory organization.resource
(string: <required>)
- The configured URL for the application registered in Azure Active Directory.environment
(string: 'AzurePublicCloud')
- The Azure cloud environment. Valid values: AzurePublicCloud, AzureUSGovernmentCloud, AzureChinaCloud, AzureGermanCloud.client_id
(string: '')
- The client id for credentials to query the Azure APIs. Currently read permissions to query compute resources are required.client_secret
(string: '')
- The client secret for credentials to query the Azure APIs.
Sample Payload
Sample Request
Read Config
Returns the previously configured config, including credentials.
Method | Path |
---|---|
GET | /auth/azure/config |
Sample Request
Sample Response
Delete Config
Deletes the previously configured Azure config and credentials.
Method | Path |
---|---|
DELETE | /auth/azure/config |
Sample Request
Create Role
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.
Method | Path |
---|---|
POST | /auth/azure/role/:name |
Parameters
name
(string: <required>)
- Name of the role.bound_service_principal_ids
(array: [])
- The list of Service Principal IDs that login is restricted to.bound_group_ids
(array: [])
- The list of group ids that login is restricted to.bound_locations
(array: [])
- The list of locations that login is restricted to.bound_subscription_ids
(array: [])
- The list of subscription IDs that login is restricted to.bound_resource_groups
(array: [])
- The list of resource groups that login is restricted to.bound_scale_sets
(array: [])
- The list of scale set names that the login is restricted to.
token_ttl
(integer: 0 or string: "")
- The incremental lifetime for generated tokens. This current value of this will be referenced at renewal time.token_max_ttl
(integer: 0 or string: "")
- The maximum lifetime for generated tokens. This current value of this will be referenced at renewal time.token_policies
(array: [] or comma-delimited string: "")
- List of policies to encode onto generated tokens. Depending on the auth method, this list may be supplemented by user/group/other values.
token_bound_cidrs
(array: [] or comma-delimited string: "")
- List of CIDR blocks; if set, specifies blocks of IP addresses which can authenticate successfully, and ties the resulting token to these blocks as well.token_explicit_max_ttl
(integer: 0 or string: "")
- If set, will encode an explicit max TTL onto the token. This is a hard cap even iftoken_ttl
andtoken_max_ttl
would otherwise allow a renewal.token_no_default_policy
(bool: false)
- If set, thedefault
policy will not be set on generated tokens; otherwise it will be added to the policies set intoken_policies
.token_num_uses
(integer: 0)
- The maximum number of times a generated token may be used (within its lifetime); 0 means unlimited. If you require the token to have the ability to create child tokens, you will need to set this value to 0.token_period
(integer: 0 or string: "")
- The period, if any, to set on the token.token_type
(string: "")
- The type of token that should be generated. Can beservice
,batch
, ordefault
to use the mount's tuned default (which unless changed will beservice
tokens). For token store roles, there are two additional possibilities:default-service
anddefault-batch
which specify the type to return unless the client requests a different type at generation time.
Sample Payload
Sample Request
Read Role
Returns the previously registered role configuration.
Method | Path |
---|---|
GET | /auth/azure/role/:name |
Parameters
name
(string: <required>)
- Name of the role.
Sample Request
Sample Response
List Roles
Lists all the roles that are registered with the plugin.
Method | Path |
---|---|
LIST | /auth/azure/role |
Sample Request
Sample Response
Delete Role
Deletes the previously registered role.
Method | Path |
---|---|
DELETE | /auth/azure/role/:name |
Parameters
name
(string: <required>)
- Name of the role.
Sample Request
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.
Method | Path |
---|---|
POST | /auth/azure/login |
Sample Payload
role
(string: <required>)
- Name of the role against which the login is being attempted.jwt
(string: <required>)
- Signed JSON Web Token (JWT) from Azure MSI.subscription_id
(string: <required>)
- The subscription ID for the machine that generated the MSI token. This information can be obtained through instance metadata.resource_group_name
(string: <required>)
- The resource group for the machine that generated the MSI token. This information can be obtained through instance metadata.vm_name
(string: "")
- The virtual machine name for the machine that generated the MSI token. This information can be obtained through instance metadata. If vmss_name is provided, this value is ignored.vmss_name
(string: "")
- The virtual machine scale set name for the machine that generated the MSI token. This information can be obtained through instance metadata.
Sample Payload
Sample Request
Sample Response