From 60270f3164ccd823216724f2f68b7a6da6f83c0c Mon Sep 17 00:00:00 2001 From: Gaurav Gahlot Date: Tue, 12 Jan 2021 12:10:17 +0530 Subject: [PATCH] add missing version constraints for providers - null, template Signed-off-by: Gaurav Gahlot --- deploy/terraform/main.tf | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/deploy/terraform/main.tf b/deploy/terraform/main.tf index 9cd4f12..d0c694d 100644 --- a/deploy/terraform/main.tf +++ b/deploy/terraform/main.tf @@ -7,6 +7,11 @@ terraform { } null = { source = "hashicorp/null" + version = "~> 2.1.2" + } + template = { + source = "hashicorp/template" + version = "~> 2.1.2" } } }