Ссылки:
1 2 3 4 |
https://www.terraform.io/ https://dev.to/ruanbekker/terraform-with-kvm-2d9e https://www.terraform.io/docs/cli/install/apt.html https://computingforgeeks.com/how-to-provision-vms-on-kvm-with-terraform/ |
Terraform install for debian
1 2 3 4 5 6 7 8 9 10 11 12 |
0. Добавляем репозиторий: curl -fsSL https://apt.releases.hashicorp.com/gpg | sudo apt-key add - apt-add-repository "deb [arch=$(dpkg --print-architecture)] https://apt.releases.hashicorp.com $(lsb_release -cs) main" 1. Устанавливаем: apt install terraform 2. Проверяем доступные версии apt policy terraform 3. Ставим конкретную версию apt install terraform=0.14.0 |