21 lines
364 B
Markdown
21 lines
364 B
Markdown
# Init vars
|
|
|
|
```bash
|
|
# Proxmox related
|
|
export PROXMOX_VE_USERNAME=<user>
|
|
export PROXMOX_VE_PASSWORD=<password>
|
|
# OVH related
|
|
export OVH_APPLICATION_KEY=<application_key>
|
|
export OVH_APPLICATION_SECRET=<application_secret>
|
|
export OVH_CONSUMER_KEY=<consumer_key>
|
|
# Home related to store tfstate
|
|
export TF_VAR_HOME=${HOME}
|
|
```
|
|
|
|
# Use
|
|
|
|
```bash
|
|
tofu init
|
|
tofu apply
|
|
```
|