terraform_bpg_proxmox

Terraform & Proxmox

Le 2024-12-01

Terraform https://www.terraform.io/ https://fr.wikipedia.org/wiki/Terraform_(logiciel) est un outil IAC (Infrastructure As Code) développé par Hashicorps.

L'IAC : https://fr.wikipedia.org/wiki/Infrastructure_as_code

Il permet grâce à une syntaxe déclarative relativement simple de créer une infrastructure dans le cloud ou en on-premise. Terraform dispose de nombreux fournisseurs (providers) adaptés aux principaux environnements du marché (kubernetes, Azure, AWS, GCP, Openstack, Vsphere, Proxmox, …).

Il est habituellement utilisé pour créer des VM ensuite configurées par des playbooks Ansible ou d'autres outils.

Des changements de licence récents concernant Terraform ont conduit à la création de la fondation Opentofu (https://opentofu.org) visant à créer un outil (tofu) compatible avec Terraform et disposant d'une licence moins restrictive.

cf :

Sur une Debian 12 Bookworm, la dernière version est la 1.10.0 (au 1/12/2024).

wget -O - https://apt.releases.hashicorp.com/gpg | sudo gpg --dearmor -o /usr/share/keyrings/hashicorp-archive-keyring.gpg
echo "deb [arch=$(dpkg --print-architecture) signed-by=/usr/share/keyrings/hashicorp-archive-keyring.gpg] https://apt.releases.hashicorp.com $(lsb_release -cs) main" | sudo tee /etc/apt/sources.list.d/hashicorp.list
sudo apt update && sudo apt install terraform
...
terraform --version
Terraform v1.10.0
on linux_amd64
  • un serveur Proxmox 8
  • une machine Linux hébergeant l'application Terraform ou Opentofu (Debian 12 avec Vagrantfile)

L'objectif est ici d'utiliser Terraform pour déployer automatiquement des VM KVM sur un serveur Proxmox 8.

4 étapes : init, plan, apply, destroy

Les commandes de base Terraform :

  • init : Prépare le répertoire pour Terraform
  • validate : vérifie la validité de la configuration
  • plan : montre les changements requis par la configuration
  • apply : crée ou met à jour l'infrastructure
  • destroy : détruit l'infrastructure précédemment créée
mkdir infra-prj && cd infra-prj
touch provider.tf main.tf vars.tf

Le fichier provider.tf décrit les fournisseurs (aws, gcp, azure, proxmox, oci, …) permettant de créer les ressources

Le fichier provider.tf (minimal) - On utilise ici le provider BPG/Proxmox qui permet de créer et gérer des machines virtuelles KVM et des conteneurs LXC.

cf :

et plus particulièrement :

provider.tf
terraform {
  required_providers {
    proxmox = {
      source = "bpg/proxmox"
      version = ">=0.68"
    }
  }
}
 
provider "proxmox" {
  endpoint  = "https://192.168.1.100:8006/"
  username = "root@pam"
  password = "monmotdepasse"
#  api_token = "terraform@pve!terraform=7625e302-463c-468c-bff5-a06b9763f50e"
  insecure  = true
  ssh {
    agent    = true
    username = "root"
    node {
         name    = "pve"
         address = "192.168.1.100"
    }
  }
}

On initialise le répertoire projet avec terraform init:

terraform init
Initializing the backend...
Initializing provider plugins...
- Finding bpg/proxmox versions matching "0.68.0"...
- Installing bpg/proxmox v0.68.0...
- Installed bpg/proxmox v0.68.0 (self-signed, key ID F0582AD6AE97C188)
Partner and community providers are signed by their developers.
If you'd like to know more about provider signing, you can read about it here:
https://www.terraform.io/docs/cli/plugins/signing.html
Terraform has created a lock file .terraform.lock.hcl to record the provider
selections it made above. Include this file in your version control repository
so that Terraform can guarantee to make the same selections by default when
you run "terraform init" in the future.

Terraform has been successfully initialized!

You may now begin working with Terraform. Try running "terraform plan" to see
any changes that are required for your infrastructure. All Terraform commands
should now work.

If you ever set or change modules or backend configuration for Terraform,
rerun this command to reinitialize your working directory. If you forget, other
commands will detect it and remind you to do so if necessary.

le fichier main.tf : il décrit les ressources (VMs, conteneurs, …) à créer :

main.tf
  1. resource "proxmox_virtual_environment_vm" "debian_vm" {
  2. count = 1
  3. name = "test-debian${count.index+1}"
  4. node_name = "pve"
  5. tags = ["terraform", "debian"]
  6. initialization {
  7. ip_config {
  8. ipv4 {
  9. address = "dhcp"
  10. # ou encore address = "192.168.1.100/24"
  11. }
  12. }
  13. user_account {
  14. # do not use this in production, configure your own ssh key instead!
  15. username = "debian"
  16. keys = ["ssh-rsa AAAAB.....UKNwqgOCcE= paul@host"]
  17. #password = "password"
  18. }
  19.  
  20. }
  21. cpu {
  22. cores = 1
  23. type = "host" # recommended for modern CPUs
  24. }
  25.  
  26. memory {
  27. dedicated = 1024
  28. }
  29.  
  30. network_device {
  31. bridge = "vmbr0"
  32. model = "virtio"
  33. }
  34.  
  35. lifecycle {
  36. ignore_changes = [
  37. network_device, # on conserve l'adresse MAC pour éviter de régénérer la VM
  38. ]
  39. }
  40.  
  41. operating_system {
  42. type = "l26"
  43. }
  44.  
  45. disk {
  46. datastore_id = "local-lvm"
  47. file_id = proxmox_virtual_environment_download_file.latest_debian_12_bookworm_qcow2_img.id
  48. interface = "virtio0"
  49. iothread = true
  50. discard = "on"
  51. size = 6
  52. }
  53. }
  54.  
  55. resource "proxmox_virtual_environment_download_file" "latest_debian_12_bookworm_qcow2_img" {
  56. content_type = "iso"
  57. datastore_id = "local"
  58. file_name = "debian-12-generic-amd64.qcow2.img"
  59. node_name = "pve"
  60. # cf egalement "http://store2.sio.lan/sionas/Public/iso/cloud/debian-12-generic-amd64.qcow2"
  61. url = "https://cloud.debian.org/images/cloud/bookworm/latest/debian-12-generic-amd64.qcow2"
  62. }
  63.  
  64. resource "random_password" "debian_vm_password" {
  65. length = 16
  66. override_special = "_%@"
  67. special = true
  68. }
  69.  
  70. resource "tls_private_key" "debian_vm_key" {
  71. algorithm = "RSA"
  72. rsa_bits = 2048
  73. }
  74.  
  75. output "debian_vm_public_key" {
  76. value = tls_private_key.debian_vm_key.public_key_openssh
  77. }

Pour valider la configuration du fichier:

  terraform validate
  Success! The configuration is valid.

Pour afficher les changements qui seront réalisés :

  terraform plan

Pour lancer :

  terraform apply
  ....
  Do you want to perform these actions?
  Terraform will perform the actions described above.
  Only 'yes' will be accepted to approve.
 
  Enter a value: yes
  ...

On peut alors vérifier l'existence des 2 VMs et s'y connecter après avoir récupéré leur adresse IP (connexion console puis ip a)

  • éditer le fichier main.tf pour changer la mémoire allouée aux VMs : 1024 ⇒ 512
  • on peut alors relancer terraform plan qu affiche uniquement les modifications à effectuer
  • la commande terraform apply lance les modifications en suspens et change la mémoire allouée à 512 Mo.
  • terraform_bpg_proxmox.txt
  • Dernière modification : 2024/12/11 00:12
  • de ps