From c1f35a667dbb320c2dd0185458f98f583f5ba622 Mon Sep 17 00:00:00 2001 From: Tamas Kiss Date: Sun, 27 Nov 2022 22:06:43 +0100 Subject: [PATCH] dep: relax dmacvicar/libvirt version constraint --- lawndale-vm/README.md | 4 ++-- lawndale-vm/providers.tf | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/lawndale-vm/README.md b/lawndale-vm/README.md index 6339351..b1ea4cf 100644 --- a/lawndale-vm/README.md +++ b/lawndale-vm/README.md @@ -2,7 +2,7 @@ The following requirements are needed by this module: -- [libvirt](#requirement\_libvirt) (~> 0.6.14) +- [libvirt](#requirement\_libvirt) (>= 0.6.14) - [macaddress](#requirement\_macaddress) (~> 0.3.0) @@ -10,7 +10,7 @@ The following requirements are needed by this module: The following providers are used by this module: -- [libvirt](#provider\_libvirt) (~> 0.6.14) +- [libvirt](#provider\_libvirt) (>= 0.6.14) - [macaddress](#provider\_macaddress) (~> 0.3.0) diff --git a/lawndale-vm/providers.tf b/lawndale-vm/providers.tf index c28af30..950d8b7 100644 --- a/lawndale-vm/providers.tf +++ b/lawndale-vm/providers.tf @@ -2,7 +2,7 @@ terraform { required_providers { libvirt = { source = "dmacvicar/libvirt" - version = "~> 0.6.14" + version = ">= 0.6.14" } macaddress = {