open-vault/website/content/docs/agent/autoauth/methods/alicloud.mdx
Jeff Escalante ec620a7765
Implement MDX Remote (#10581)
* implement mdx remote

* fix an unfenced code block

* fix partials path

Co-authored-by: Jim Kalafut <jkalafut@hashicorp.com>
2020-12-17 16:53:33 -05:00

62 lines
2.3 KiB
Plaintext

---
layout: docs
page_title: Vault Agent Auto-Auth AliCloud Method
sidebar_title: AliCloud
description: AliCloud Method for Vault Agent Auto-Auth
---
# Vault Agent Auto-Auth AliCloud Method
The `alicloud` method performs authentication against the [AliCloud Auth
method](/docs/auth/alicloud).
## Credentials
The Vault agent will use the first credential it can successfully obtain in the following order:
1. [Environment variables](https://github.com/aliyun/alibaba-cloud-sdk-go/blob/master/sdk/auth/credentials/providers/env.go)
2. A static credential configuration
3. Instance metadata (recommended)
Wherever possible, we recommend using instance metadata for credentials. These rotate every hour
and require no effort on your part to provision, making instance metadata the most secure of the three methods. If
using instance metadata _and_ a custom `credential_poll_interval`, be sure the frequency is set for
less than an hour, because instance metadata credentials expire every hour.
Environment variables are given first precedence to provide the ability to quickly override your
configuration.
## Configuration
### General
- `role` `(string: required)` - The role to authenticate against on Vault.
- `region` `(string: required)` - The AliCloud region in which the Vault agent resides. Example: "us-west-1".
- `credential_poll_interval` `(integer: optional)` - In seconds, how frequently the Vault agent should check for new credentials.
### Optional Static Credential Configuration (Not Preferred)
If instance metadata is not available, you may provide credential information through the parameters below.
- `access_key` `(string: optional)` - The access key to use.
- `secret_key` `(string: optional)` - The secret key to use.
- `access_token` `(string: optional)` - The access token to use.
- `role_arn` `(string: optional)` - The role ARN to use.
- `role_session_name` `(string: optional)` - The role session name to use.
- `role_session_expiration` `(string: optional)` - The role session expiration to use.
- `private_key` `(string: optional)` - The private key to use.
- `public_key_id` `(string: optional)` - The public key ID to use.
- `session_expiration` `(string: optional)` - The session expiration to use.
- `role_name` `(string: optional)` - The role name to use.