AWS secrets engine (API)
Last updated
Last updated
This is the API documentation for the Vault AWS secrets engine. For general information about the usage and operation of the AWS secrets engine, please see the Vault AWS documentation.
This documentation assumes the AWS secrets engine is enabled at the /aws
path in Vault. Since it is possible to enable secrets engines at any location, please update your API calls accordingly.
This endpoint configures the root IAM credentials to communicate with AWS. There are multiple ways to pass root IAM credentials to the Vault server, specified below with the highest precedence first. If credentials already exist, this will overwrite them.
The official AWS SDK is used for sourcing credentials from env vars, shared files, or IAM/ECS instances.
Static credentials provided to the API as a payload
Credentials in the AWS_ACCESS_KEY
, AWS_SECRET_KEY
, and AWS_REGION
environment variables on the server
Shared credentials files
Assigned IAM role or ECS task role credentials
At present, this endpoint does not confirm that the provided AWS credentials are valid AWS credentials with proper permissions.
Method | Path |
---|---|
max_retries
(int: -1)
- Number of max retries the client should use for recoverable errors. The default (-1
) falls back to the AWS SDK's default behavior.
access_key
(string: <required>)
– Specifies the AWS access key ID.
secret_key
(string: <required>)
– Specifies the AWS secret access key.
region
(string: <optional>)
– Specifies the AWS region. If not set it will use the AWS_REGION
env var, AWS_DEFAULT_REGION
env var, or us-east-1
in that order.
iam_endpoint
(string: <optional>)
– Specifies a custom HTTP IAM endpoint to use.
sts_endpoint
(string: <optional>)
– Specifies a custom HTTP STS endpoint to use.
username_template
(string: <optional>)
- Template describing how dynamic usernames are generated. The username template is used to generate both IAM usernames (capped at 64 characters) and STS usernames (capped at 32 characters). Longer usernames result in a 500 error.
To ensure generated usernames are within length limits for both STS/IAM, the template must adequately handle both conditional cases (see Conditional Templates). As an example, if no template is provided the field defaults to the template below. It is to be noted that, DisplayName is the name of the vault authenticated user running the AWS credential generation and PolicyName is the name of the Role for which the credential is being generated for:
This endpoint allows you to read non-secure values that have been configured in the config/root
endpoint. In particular, the secret_key
parameter is never returned.
When you have configured Vault with static credentials, you can use this endpoint to have Vault rotate the access key it used. Note that, due to AWS eventual consistency, after calling this endpoint, subsequent calls from Vault to AWS may fail for a few seconds until AWS becomes consistent again.
In order to call this endpoint, Vault's AWS access key MUST be the only access key on the IAM user; otherwise, generation of a new access key will fail. Once this method is called, Vault will now be the only entity that knows the AWS secret key is used to access AWS.
There are no parameters to this operation.
The new access key Vault uses is returned by this operation.
This endpoint configures lease settings for the AWS secrets engine. It is optional, as there are default values for lease
and lease_max
.
lease
(string: <required>)
– Specifies the lease value provided as a string duration with time suffix. "h" (hour) is the largest suffix.
lease_max
(string: <required>)
– Specifies the maximum lease value provided as a string duration with time suffix. "h" (hour) is the largest suffix.
This endpoint returns the current lease settings for the AWS secrets engine.
This endpoint creates or updates the role with the given name
. If a role with the name does not exist, it will be created. If the role exists, it will be updated with the new attributes.
name
(string: <required>)
– Specifies the name of the role to create. This is part of the request URL.
credential_type
(string: <required>)
– Specifies the type of credential to be used when retrieving credentials from the role. Must be one of iam_user
, assumed_role
, or federation_token
.
role_arns
(list: [])
– Specifies the ARNs of the AWS roles this Vault role is allowed to assume. Required when credential_type
is assumed_role
and prohibited otherwise. This is a comma-separated string or JSON array.
policy_arns
(list: [])
– Specifies a list of AWS managed policy ARN. The behavior depends on the credential type. With iam_user
, the policies will be attached to IAM users when they are requested. With assumed_role
and federation_token
, the policy ARNs will act as a filter on what the credentials can do, similar to policy_document
. When credential_type
is iam_user
or federation_token
, at least one of policy_arns
or policy_document
must be specified. This is a comma-separated string or JSON array.
policy_document
(string)
– The IAM policy document for the role. The behavior depends on the credential type. With iam_user
, the policy document will be attached to the IAM user generated and augment the permissions the IAM user has. With assumed_role
and federation_token
, the policy document will act as a filter on what the credentials can do, similar to policy_arns
.
iam_groups
(list: [])
- A list of IAM group names. IAM users generated against this vault role will be added to these IAM Groups. For a credential type of assumed_role
or federation_token
, the policies sent to the corresponding AWS call (sts:AssumeRole or sts:GetFederation) will be the policies from each group in iam_groups
combined with the policy_document
and policy_arns
parameters.
iam_tags
(list: [])
- A list of strings representing a key/value pair to be used as a tag for any iam_user
user that is created by this role. Format is a key and value separated by an =
(e.g. test_key=value
). Note: when using the CLI multiple tags can be specified in the role configuration by adding another iam_tags
assignment in the same command.
default_sts_ttl
(string)
- The default TTL for STS credentials. When a TTL is not specified when STS credentials are requested, and a default TTL is specified on the role, then this default TTL will be used. Valid only when credential_type
is one of assumed_role
or federation_token
.
max_sts_ttl
(string)
- The max allowed TTL for STS credentials (credentials TTL are capped to max_sts_ttl
). Valid only when credential_type
is one of assumed_role
or federation_token
.
user_path
(string)
- The path for the user name. Valid only when credential_type
is iam_user
. Default is /
permissions_boundary_arn
(string)
- The ARN of the AWS Permissions Boundary to attach to IAM users created in the role. Valid only when credential_type
is iam_user
. If not specified, then no permissions boundary policy will be attached.
Legacy parameters:
These parameters are supported for backwards compatibility only. They cannot be mixed with the parameters listed above.
policy
(string: <required unless arn provided>)
– Specifies the IAM policy in JSON format.
arn
(string: <required unless policy provided>)
– Specifies the full ARN reference to the desired existing policy.
Using an inline IAM policy:
Using an ARN:
Using groups:
Using tags:
or
This endpoint queries an existing role by the given name. If the role does not exist, a 404 is returned.
If invalid role data was supplied to the role from an earlier version of Vault, then it will show up in the response as invalid_data
.
name
(string: <required>)
– Specifies the name of the role to read. This is part of the request URL.
For an inline IAM policy:
For a role ARN:
For IAM groups:
This endpoint lists all existing roles in the secrets engine.
This endpoint deletes an existing role by the given name. If the role does not exist, a 404 is returned.
name
(string: <required>)
– Specifies the name of the role to delete. This is part of the request URL.
This endpoint generates credentials based on the named role. This role must be created before queried.
The /aws/creds
and /aws/sts
endpoints are almost identical. The exception is when retrieving credentials for a role that was specified with the legacy arn
or policy
parameter. In this case, credentials retrieved through /aws/sts
must be of either the assumed_role
or federation_token
types, and credentials retrieved through /aws/creds
must be of the iam_user
type.
name
(string: <required>)
– Specifies the name of the role to generate credentials against. This is part of the request URL.
role_arn
(string)
– The ARN of the role to assume if credential_type
on the Vault role is assumed_role
. Must match one of the allowed role ARNs in the Vault role. Optional if the Vault role only allows a single AWS role ARN; required otherwise.
role_session_name
(string)
- The role session name to attach to the assumed role ARN. role_session_name
is limited to 64 characters; if exceeded, the role_session_name
in the assumed role ARN will be truncated to 64 characters. If role_session_name
is not provided, then it will be generated dynamically by default.
ttl
(string: "3600s")
– Specifies the TTL for the use of the STS token. This is specified as a string with a duration suffix. Valid only when credential_type
is assumed_role
or federation_token
. When not specified, the default_sts_ttl
set for the role will be used. If that is also not set, then the default value of 3600s
will be used. AWS places limits on the maximum TTL allowed. See the AWS documentation on the DurationSeconds
parameter for AssumeRole (for assumed_role
credential types) and GetFederationToken (for federation_token
credential types) for more details.
This endpoint creates or updates static role definitions. A static role is a 1-to-1 mapping with an AWS IAM User, which will be adopted and managed by Vault, including rotating it according to the configured rotation_period
.
Note
Vault will create a new credential upon configuration, and if the maximum number of access keys already exist, Vault will rotate the oldest one. Vault must do this to know the credential.
At each rotation, Vault will rotate the oldest existing credential.
name
(string: <required>)
– Specifies the name of the role to create. This is specified as part of the URL.
username
(string: <required>)
– Specifies the username of the IAM user.
rotation_period
(string/int: <required>)
– Specifies the amount of time Vault should wait before rotating the password. The minimum is 1 minute. Can be specified in either 24h
or 86400
format (see duration format strings). Updating the rotation period will 'reset' the next rotation to occur at now
+ rotation_period
.
This endpoint queries the static role definition.
name
(string: <required>)
– Specifies the name of the static role to read. This is specified as part of the URL.
This endpoint deletes the static role definition. The user, having been defined externally, must be cleaned up manually.
name
(string: <required>)
– Specifies the name of the static role to delete. This is specified as part of the URL.
This endpoint returns the current credentials based on the named static role.
name
(string: <required>)
– Specifies the name of the static role to get credentials for. This is specified as part of the URL.
Method | Path |
---|---|
Method | Path |
---|---|
Method | Path |
---|---|
Method | Path |
---|---|
Method | Path |
---|---|
Method | Path |
---|---|
Method | Path |
---|---|
Method | Path |
---|---|
Method | Path |
---|---|
Method | Path |
---|---|
Method | Path |
---|---|
Method | Path |
---|---|
Method | Path |
---|---|