From 03f800dbe4776ea3dfd8bac76e0a2f9fdc888a87 Mon Sep 17 00:00:00 2001 From: Tom Archer Date: Mon, 29 Aug 2022 18:19:05 -0700 Subject: [PATCH] Relaxing version constraint on tls provider --- quickstart/101-vm-with-infrastructure/providers.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/quickstart/101-vm-with-infrastructure/providers.tf b/quickstart/101-vm-with-infrastructure/providers.tf index 098cece6..0234a678 100644 --- a/quickstart/101-vm-with-infrastructure/providers.tf +++ b/quickstart/101-vm-with-infrastructure/providers.tf @@ -12,7 +12,7 @@ terraform { } tls = { source = "hashicorp/tls" - version = "4.0.1" + version = "~>4.0" } } }