0
0
mirror of https://github.com/bpg/terraform-provider-proxmox.git synced 2025-07-01 11:02:59 +00:00

chore(docs): update provider documentation with more details about token use (#846)

* chore(doc): cleanup changelog

Signed-off-by: Pavel Boldyrev <627562+bpg@users.noreply.github.com>

* fix(doc): update provider's documentation

Signed-off-by: Pavel Boldyrev <627562+bpg@users.noreply.github.com>

* address peer-review feedback

Signed-off-by: Pavel Boldyrev <627562+bpg@users.noreply.github.com>

---------

Signed-off-by: Pavel Boldyrev <627562+bpg@users.noreply.github.com>
This commit is contained in:
Pavel Boldyrev 2024-01-03 22:45:11 -05:00 committed by GitHub
parent 620bb84635
commit 2677445802
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 131 additions and 107 deletions

View File

@ -5,7 +5,6 @@
### Bug Fixes ### Bug Fixes
* accept ipv6 in dns servers initialization ([bf5cbd9](https://github.com/bpg/terraform-provider-proxmox/commit/bf5cbd9dad116a4515bd2eb193c296097b1e4b84))
* **lxc:** add missing `onboot` param on container clone create ([#838](https://github.com/bpg/terraform-provider-proxmox/issues/838)) ([40102a6](https://github.com/bpg/terraform-provider-proxmox/commit/40102a6a501a5ead3219492f34255a25c4f21371)) * **lxc:** add missing `onboot` param on container clone create ([#838](https://github.com/bpg/terraform-provider-proxmox/issues/838)) ([40102a6](https://github.com/bpg/terraform-provider-proxmox/commit/40102a6a501a5ead3219492f34255a25c4f21371))
* **vm,lxc:** accept IPv6 in `initialization.dns.servers` attribute ([#842](https://github.com/bpg/terraform-provider-proxmox/issues/842)) ([bf5cbd9](https://github.com/bpg/terraform-provider-proxmox/commit/bf5cbd9dad116a4515bd2eb193c296097b1e4b84)) * **vm,lxc:** accept IPv6 in `initialization.dns.servers` attribute ([#842](https://github.com/bpg/terraform-provider-proxmox/issues/842)) ([bf5cbd9](https://github.com/bpg/terraform-provider-proxmox/commit/bf5cbd9dad116a4515bd2eb193c296097b1e4b84))
* **vm,lxc:** unexpected state drift when using `initialization.dns.servers` ([#844](https://github.com/bpg/terraform-provider-proxmox/issues/844)) ([ac923cd](https://github.com/bpg/terraform-provider-proxmox/commit/ac923cd1b42c0c64d9829beb1ab552680b21d98b)) * **vm,lxc:** unexpected state drift when using `initialization.dns.servers` ([#844](https://github.com/bpg/terraform-provider-proxmox/issues/844)) ([ac923cd](https://github.com/bpg/terraform-provider-proxmox/commit/ac923cd1b42c0c64d9829beb1ab552680b21d98b))

View File

@ -6,10 +6,8 @@ nav_order: 1
# Proxmox Provider # Proxmox Provider
This provider for [Terraform](https://www.terraform.io/) is used for interacting This provider for [Terraform](https://www.terraform.io/) is used for interacting with resources supported by [Proxmox](https://www.proxmox.com/en/).
with resources supported by [Proxmox](https://www.proxmox.com/en/). The provider The provider needs to be configured with the proper endpoints and credentials before it can be used.
needs to be configured with the proper endpoints and credentials before it can
be used.
Use the navigation to the left to read about the available resources. Use the navigation to the left to read about the available resources.
@ -18,49 +16,63 @@ Use the navigation to the left to read about the available resources.
```terraform ```terraform
provider "proxmox" { provider "proxmox" {
endpoint = "https://10.0.0.2:8006/" endpoint = "https://10.0.0.2:8006/"
# TODO: use terraform variable or remove the line, and use PROXMOX_VE_USERNAME environment variable
username = "root@pam" username = "root@pam"
# TODO: use terraform variable or remove the line, and use PROXMOX_VE_PASSWORD environment variable
password = "the-password-set-during-installation-of-proxmox-ve" password = "the-password-set-during-installation-of-proxmox-ve"
# because self-signed TLS certificate is in use
insecure = true insecure = true
tmp_dir = "/var/tmp" # uncoment (unless on Windows...)
# tmp_dir = "/var/tmp"
ssh {
agent = true
# TODO: uncomment and configure if using api_token instead of password
# username = "root"
}
} }
``` ```
## Authentication ## Authentication
The Proxmox provider offers a flexible means of providing credentials for The Proxmox provider offers a flexible means of providing credentials for authentication.
authentication. The following methods are supported, in this order, and Static credentials can be provided to the `proxmox` block through either a `api_token` or a combination of `username` and `password` arguments.
explained below:
- Static credentials !> Hard-coding credentials into any Terraform configuration is not recommended, and risks secret leakage should this file ever be committed to a public version control system.
- Environment variables
### Static credentials Static credentials can be provided by adding a `username` and `password`, or `api_token` in-line in the Proxmox provider block:
> Warning: Hard-coding credentials into any Terraform configuration is not
> recommended, and risks secret leakage should this file ever be committed to a
> public version control system.
Static credentials can be provided by adding a `username` and `password` in-line
in the Proxmox provider block:
```terraform ```terraform
provider "proxmox" { provider "proxmox" {
endpoint = "https://10.0.0.2:8006/"
username = "username@realm" username = "username@realm"
password = "a-strong-password" password = "a-strong-password"
} }
``` ```
### Environment variables A better approach is to extract these values into Terraform variables, and reference the variables instead:
You can provide your credentials via the `PROXMOX_VE_USERNAME`
and `PROXMOX_VE_PASSWORD`, environment variables, representing your Proxmox
username, realm and password, respectively:
```terraform ```terraform
provider "proxmox" {} provider "proxmox" {
endpoint = var.virtual_environment_endpoint
username = var.virtual_environment_username
password = var.virtual_environment_password
}
``` ```
Usage: The variable values can be provided via a separate `.tfvars` file that should be gitignored.
See the [Terraform documentation](https://www.terraform.io/docs/configuration/variables.html) for more information.
### Environment variables
Instead of using static arguments, credentials can be handled through the use of environment variables.
For example:
```terraform
provider "proxmox" {
endpoint = "https://10.0.0.2:8006/"
}
```
```sh ```sh
export PROXMOX_VE_USERNAME="username@realm" export PROXMOX_VE_USERNAME="username@realm"
@ -68,16 +80,17 @@ export PROXMOX_VE_PASSWORD="a-strong-password"
terraform plan terraform plan
``` ```
### SSH connection See the [Argument Reference](#argument-reference) section for the supported variable names and use cases.
The Proxmox provider can connect to a Proxmox node via SSH. This is used in ## SSH Connection
the `proxmox_virtual_environment_vm` or `proxmox_virtual_environment_file`
resource to execute commands on the node to perform actions that are not
supported by Proxmox API. For example, to import VM disks, or to uploading
certain type of resources, such as snippets.
The SSH connection configuration is provided via the optional `ssh` block in ~> Please read if you are using VMs with custom disk images, or uploading snippets.
the `provider` block:
The Proxmox provider can connect to a Proxmox node via SSH.
This is used in the `proxmox_virtual_environment_vm` or `proxmox_virtual_environment_file` resource to execute commands on the node to perform actions that are not supported by Proxmox API.
For example, to import VM disks, or to uploading certain type of resources, such as snippets.
The SSH connection configuration is provided via the optional `ssh` block in the `provider` block:
```terraform ```terraform
provider "proxmox" { provider "proxmox" {
@ -85,32 +98,39 @@ provider "proxmox" {
username = "username@realm" username = "username@realm"
password = "a-strong-password" password = "a-strong-password"
insecure = true insecure = true
ssh { ssh {
agent = true agent = true
} }
} }
``` ```
If no `ssh` block is provided, the provider will attempt to connect to the If no `ssh` block is provided, the provider will attempt to connect to the target node using the credentials provided in the `username` and `password` arguments (or `PROXMOX_VE_USERNAME` and `PROXMOX_VE_PASSWORD` environment variables).
target node using the credentials provided in the `username` and `password` Note that the target node is identified by the `node` argument in the resource, and may be different from the Proxmox API endpoint.
fields. Please refer to the [Argument Reference](#argument-reference) section to view the available arguments of the `ssh` block.
Note that the target node is identified by the `node` argument in the resource,
and may be different from the Proxmox API endpoint. Please refer to the
"Argument Reference" section below for all the available arguments in the `ssh`
block.
#### Node IP address used for SSH connection ### SSH Agent
In order to make the SSH connection, the provider needs to know the IP address The provider does not use OS-specific SSH configuration files, such as `~/.ssh/config`.
of the target node. The provider will attempt to resolve the Instead, it uses the SSH protocol directly, and supports the `SSH_AUTH_SOCK` environment variable (or `agent_socket` argument) to connect to the `ssh-agent`.
node name to an IP address using Proxmox API to enumerate the node network This allows the provider to use the SSH agent configured by the user, and to support multiple SSH agents running on the same machine.
interfaces, and use the first one that is not a loopback interface. In some You can find more details on the SSH Agent [here](https://www.digitalocean.com/community/tutorials/ssh-essentials-working-with-ssh-servers-clients-and-keys#adding-your-ssh-keys-to-an-ssh-agent-to-avoid-typing-the-passphrase).
cases this may not be the desired behavior, for example when the node has
multiple network interfaces, and the one that should be used for SSH is not the
first one.
To override the node IP address used for SSH connection, you can use the ### Node IP address used for SSH connection
optional `node` blocks in the `ssh` block. For example:
In order to make the SSH connection, the provider needs to be able to resolve the target node name to an IP.
The following methods are used to resolve the node name, in the specified order:
1. Enumerate the node's network interfaces via the Proxmox API, and identify the first interface that:
1. Has an IPv4 address with IPv4 gateway configured, or
2. Has an IPv6 address with IPv6 gateway configured, or
3. Has an IPv4 address
2. Resolve the Proxmox node name (usually a shortname) via DNS using the system DNS resolver of the machine running Terraform.
In some cases this may not be the desired behavior, for example, when the node has multiple network interfaces, and the one that should be used for SSH is not the first one.
To override the node IP address used for SSH connection, you can use the optional `node` blocks in the `ssh` block, and specify the desired IP address (or FQDN) for each node.
For example:
```terraform ```terraform
provider "proxmox" { provider "proxmox" {
@ -130,23 +150,48 @@ provider "proxmox" {
``` ```
### API Token authentication ## API Token Authentication
API Token authentication can be used to authenticate with the Proxmox API API Token authentication can be used to authenticate with the Proxmox API without the need to provide a password.
without the need to provide a password. In combination with the `ssh` block, In combination with the `ssh` block and `ssh-agent` support, this allows for a fully password-less authentication.
this allows for a fully password-less authentication.
To create an API Token, log in to the Proxmox web interface, and navigate to You can create an API Token for a user via the Proxmox UI, or via the command line on the Proxmox host or cluster:
`Datacenter` > `Permissions` > `API Tokens`. Click on `Add` to create a new
token. You can then use the `api_token` field in the `provider` block to provide - Create a user:
the token. `api_token` can also be sourced from `PROXMOX_VE_API_TOKEN`
environment variable. The token authentication is taking precedence over the ```sh
password authentication. sudo pveum user add terraform@pve
```
- Create a role for the user (you can skip this step if you want to use the any of the existing roles):
```sh
sudo pveum role add Terraform -privs "Datastore.Allocate Datastore.AllocateSpace Datastore.AllocateTemplate Datastore.Audit Pool.Allocate Sys.Audit Sys.Console Sys.Modify SDN.Use VM.Allocate VM.Audit VM.Clone VM.Config.CDROM VM.Config.Cloudinit VM.Config.CPU VM.Config.Disk VM.Config.HWType VM.Config.Memory VM.Config.Network VM.Config.Options VM.Migrate VM.Monitor VM.PowerMgmt User.Modify"
```
~> The list of privileges above is only an example, please review it and adjust to your needs.
Refer to the [privileges documentation](https://pve.proxmox.com/pve-docs/pveum.1.html#_privileges) for more details.
- Assign the role to the previously created user:
```sh
sudo pveum aclmod / -user terraform@pve -role Terraform
```
- Create an API token for the user:
```sh
sudo pveum user token add terraform@pve provider --privsep=0
```
Refer to the upstream docs as needed for additional details concerning [PVE User Management](https://pve.proxmox.com/wiki/User_Management).
Generating the token will output a table containing the token's ID and secret which are meant to be concatenated into a single string for use with either the `api_token` field of the `provider` block (fine for testing but should be avoided) or sourced from the `PROXMOX_VE_API_TOKEN` environment variable.
```terraform ```terraform
provider "proxmox" { provider "proxmox" {
endpoint = var.virtual_environment_endpoint endpoint = var.virtual_environment_endpoint
api_token = "root@pam!for-terraform-provider=xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx" api_token = "terraform@pve!provider=xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"
insecure = true insecure = true
ssh { ssh {
agent = true agent = true
@ -155,59 +200,39 @@ provider "proxmox" {
} }
``` ```
-> **Note:** Note1: The `username` field in the `ssh` block (or alternatively a username in `PROXMOX_VE_USERNAME` or `PROXMOX_VE_SSH_USERNAME` environment variable) is required when using API Token authentication. This is because the provider needs to know which user to use for the SSH connection. -> The token authentication is taking precedence over the password authentication.
-> **Note:** Note2: Not all Proxmox API operations are supported via API Token. You may see errors like `error creating container: received an HTTP 403 response - Reason: Permission check failed (changing feature flags for privileged container is only allowed for root@pam)` or `error creating VM: received an HTTP 500 response - Reason: only root can set 'arch' config` when using API Token authentication, even when `Administrator` role or the `root@pam` user is used with the token. The workaround is to use password authentication for those operations. -> The `username` field in the `ssh` block (or alternatively a username in `PROXMOX_VE_USERNAME` or `PROXMOX_VE_SSH_USERNAME` environment variable) is **required** when using API Token authentication.
This is because the provider needs to know which user to use for the SSH connection.
### Temporary directory -> Not all Proxmox API operations are supported via API Token.
You may see errors like `error creating container: received an HTTP 403 response - Reason: Permission check failed (changing feature flags for privileged container is only allowed for root@pam)` or `error creating VM: received an HTTP 500 response - Reason: only root can set 'arch' config` when using API Token authentication, even when `Administrator` role or the `root@pam` user is used with the token.
The workaround is to use password authentication for those operations.
Using `proxmox_virtual_environment_file` with `.iso` files or disk images can require -> You can also configure additional users and roles using [`virtual_environment_user`](https://registry.terraform.io/providers/bpg/proxmox/latest/docs/data-sources/virtual_environment_user) and [`virtual_environment_role`](https://registry.terraform.io/providers/bpg/proxmox/latest/docs/data-sources/virtual_environment_role) resources of the provider.
large amount of space in the temporary directory of the computer running terraform.
Consider pointing `tmp_dir` to a directory with enough space, especially if the default ## Temporary Directory
temporary directory is limited by the system memory (e.g. `tmpfs` mounted
on `/tmp`). Using `proxmox_virtual_environment_file` with `.iso` files or disk images can require large amount of space in the temporary directory of the computer running terraform.
Consider pointing `tmp_dir` to a directory with enough space, especially if the default temporary directory is limited by the system memory (e.g. `tmpfs` mounted on `/tmp`).
## Argument Reference ## Argument Reference
In addition In addition to [generic provider arguments](https://www.terraform.io/docs/configuration/providers.html) ( e.g. `alias` and `version`), the following arguments are supported in the Proxmox `provider` block:
to [generic provider arguments](https://www.terraform.io/docs/configuration/providers.html) (
e.g. `alias` and `version`), the following arguments are supported in the
Proxmox `provider` block:
- `endpoint` - (Required) The endpoint for the Proxmox Virtual Environment - `endpoint` - (Required) The endpoint for the Proxmox Virtual Environment API (can also be sourced from `PROXMOX_VE_ENDPOINT`). Usually this is `https://<your-cluster-endpoint>:8006/`. **Do not** include `/api2/json` at the end.
API (can also be sourced from `PROXMOX_VE_ENDPOINT`). Usually this is - `insecure` - (Optional) Whether to skip the TLS verification step (can also be sourced from `PROXMOX_VE_INSECURE`). If omitted, defaults to `false`.
`https://<your-cluster-endpoint>:8006/`. **Do not** include `/api2/json` at - `otp` - (Optional, Deprecated) The one-time password for the Proxmox Virtual Environment API (can also be sourced from `PROXMOX_VE_OTP`).
the end. - `password` - (Required) The password for the Proxmox Virtual Environment API (can also be sourced from `PROXMOX_VE_PASSWORD`).
- `insecure` - (Optional) Whether to skip the TLS verification step (can - `username` - (Required) The username and realm for the Proxmox Virtual Environment API (can also be sourced from `PROXMOX_VE_USERNAME`). For example, `root@pam`.
also be sourced from `PROXMOX_VE_INSECURE`). If omitted, defaults - `api_token` - (Optional) The API Token for the Proxmox Virtual Environment API (can also be sourced from `PROXMOX_VE_API_TOKEN`). For example, `root@pam!for-terraform-provider=xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx`.
to `false`. - `ssh` - (Optional) The SSH connection configuration to a Proxmox node. This is a block, whose fields are documented below.
- `otp` - (Optional) The one-time password for the Proxmox Virtual - `username` - (Optional) The username to use for the SSH connection. Defaults to the username used for the Proxmox API connection. Can also be sourced from `PROXMOX_VE_SSH_USERNAME`. Required when using API Token.
Environment API (can also be sourced from `PROXMOX_VE_OTP`). - `password` - (Optional) The password to use for the SSH connection. Defaults to the password used for the Proxmox API connection. Can also be sourced from `PROXMOX_VE_SSH_PASSWORD`.
- `password` - (Required) The password for the Proxmox Virtual Environment - `agent` - (Optional) Whether to use the SSH agent for the SSH authentication. Defaults to `false`. Can also be sourced from `PROXMOX_VE_SSH_AGENT`.
API (can also be sourced from `PROXMOX_VE_PASSWORD`). - `agent_socket` - (Optional) The path to the SSH agent socket. Defaults to the value of the `SSH_AUTH_SOCK` environment variable. Can also be sourced from `PROXMOX_VE_SSH_AUTH_SOCK`.
- `username` - (Required) The username and realm for the Proxmox Virtual - `node` - (Optional) The node configuration for the SSH connection. Can be specified multiple times to provide configuration fo multiple nodes.
Environment API (can also be sourced from `PROXMOX_VE_USERNAME`). For
example, `root@pam`.
- `api_token` - (Optional) The API Token for the Proxmox Virtual
Environment API (can also be sourced from `PROXMOX_VE_API_TOKEN`). For
example, `root@pam!for-terraform-provider=xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx`.
- `ssh` - (Optional) The SSH connection configuration to a Proxmox node. This is
a block, whose fields are documented below.
- `username` - (Optional) The username to use for the SSH connection.
Defaults to the username used for the Proxmox API connection. Can also be
sourced from `PROXMOX_VE_SSH_USERNAME`. Required when using API Token.
- `password` - (Optional) The password to use for the SSH connection.
Defaults to the password used for the Proxmox API connection. Can also be
sourced from `PROXMOX_VE_SSH_PASSWORD`.
- `agent` - (Optional) Whether to use the SSH agent for the SSH
authentication. Defaults to `false`. Can also be sourced
from `PROXMOX_VE_SSH_AGENT`.
- `agent_socket` - (Optional) The path to the SSH agent socket.
Defaults to the value of the `SSH_AUTH_SOCK` environment variable. Can
also be sourced from `PROXMOX_VE_SSH_AUTH_SOCK`.
- `node` - (Optional) The node configuration for the SSH connection. Can be
specified multiple times to provide configuration fo multiple nodes.
- `name` - (Required) The name of the node. - `name` - (Required) The name of the node.
- `address` - (Required) The FQDN/IP address of the node. - `address` - (Required) The FQDN/IP address of the node.
- `port` - (Optional) SSH port of the node. Defaults to 22. - `port` - (Optional) SSH port of the node. Defaults to 22.