mirror of
https://github.com/bpg/terraform-provider-proxmox.git
synced 2025-07-03 12:02:57 +00:00
Update docs
This commit is contained in:
parent
1c7077bba3
commit
734ff684be
@ -1,6 +1,6 @@
|
||||
---
|
||||
layout: home
|
||||
title: Proxmox Provider
|
||||
title: Introduction
|
||||
nav_order: 1
|
||||
---
|
||||
|
||||
@ -23,6 +23,30 @@ provider "proxmox" {
|
||||
}
|
||||
```
|
||||
|
||||
## Installation
|
||||
|
||||
You can install a specific version of the provider on Windows using Git Bash:
|
||||
|
||||
```sh
|
||||
$ export PLUGINS_PATH="$(cygpath "$APPDATA")/terraform.d/plugins"
|
||||
$ export PROVIDER_VERSION="0.2.0"
|
||||
$ mkdir -p "$PLUGINS_PATH"
|
||||
$ curl -o "${PLUGINS_PATH}/terraform-provider-proxmox.zip" -sL https://github.com/danitso/terraform-provider-proxmox/releases/download/${PROVIDER_VERSION}/terraform-provider-proxmox_v${PROVIDER_VERSION}-custom_windows_amd64.zip
|
||||
$ unzip -o -d "$PLUGINS_PATH" "${PLUGINS_PATH}/terraform-provider-proxmox.zip"
|
||||
$ rm "${PLUGINS_PATH}/terraform-provider-proxmox.zip"
|
||||
```
|
||||
|
||||
On all other platforms, you should be able to install it using Bash:
|
||||
|
||||
```sh
|
||||
$ export PLUGINS_PATH="${HOME}/terraform.d/plugins"
|
||||
$ export PROVIDER_VERSION="0.2.0"
|
||||
$ mkdir -p "$PLUGINS_PATH"
|
||||
$ curl -o "${PLUGINS_PATH}/terraform-provider-proxmox.zip" -sL https://github.com/danitso/terraform-provider-proxmox/releases/download/${PROVIDER_VERSION}/terraform-provider-proxmox_v${PROVIDER_VERSION}-custom_windows_amd64.zip
|
||||
$ unzip -o -d "$PLUGINS_PATH" "${PLUGINS_PATH}/terraform-provider-proxmox.zip"
|
||||
$ rm "${PLUGINS_PATH}/terraform-provider-proxmox.zip"
|
||||
```
|
||||
|
||||
## Authentication
|
||||
|
||||
The Proxmox provider offers a flexible means of providing credentials for authentication. The following methods are supported, in this order, and explained below:
|
||||
|
Loading…
Reference in New Issue
Block a user