dmacvicar / terraform-provider-libvirt

Terraform provider to provision infrastructure with Linux's KVM using libvirt
Apache License 2.0
1.54k stars 457 forks source link

update migration documentation to the latest release 0.6.3 #859

Closed cyberworm54 closed 3 years ago

cyberworm54 commented 3 years ago

Please make sure you read the contributor documentation before opening a Pull Request.

dmacvicar commented 3 years ago

Thanks! but the upcoming version will not require this kind of installation, as it can be installed directly from the provider registry.

This alone should work (with the pre-release):

terraform {
  required_providers {
    libvirt = {
      source = "dmacvicar/libvirt"
      version = "0.6.9-pre2"
    }
  }
}

provider "libvirt" {
  # Configuration options
}

(followed by terraform init).

The Linux build should work on any distribution, as it does not link to libvirt anymore.

cyberworm54 commented 3 years ago

Awesome! I am going to close this then. Thanks!