Is there a way I can cache an ISO being downloaded?
Right now if I terraform destroy
, and terraform apply
it'll once again download the ISO.
I'm using the libvirt
provider and the related resource is:
resource "libvirt_volume" "ubuntu-qcow3" {
name = "ubuntu-qcow3"
pool = "default"
source = "https://cloud-images.ubuntu.com/releases/xenial/release/ubuntu-16.04-server-cloudimg-amd64-disk1.img"
format = "qcow2"
}