From 1ddcbe2b8976f8ff98ad9d902d2c4157718da928 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?P=C3=A5l=20Sollie?= Date: Wed, 7 Feb 2024 10:20:23 +0100 Subject: [PATCH] Allow higher versions of null provider (#92) * Allow higher versions of null provider * Bump Taskfile schema version --- Taskfile.yml | 6 +++--- versions.tf | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Taskfile.yml b/Taskfile.yml index d19a6ca..e1e1440 100644 --- a/Taskfile.yml +++ b/Taskfile.yml @@ -1,4 +1,4 @@ -version: '2' +version: '3' env: TERM: screen-256color @@ -36,7 +36,7 @@ tasks: CWD=$PWD - for d in $DIRECTORIES; do + for d in $DIRECTORIES; do cd $d echo "${BOLD}$PWD:${NORM}" @@ -66,4 +66,4 @@ tasks: silent: true cmds: - go test -v ./... -timeout=1h - \ No newline at end of file + diff --git a/versions.tf b/versions.tf index 04100e5..da4b81f 100644 --- a/versions.tf +++ b/versions.tf @@ -7,7 +7,7 @@ terraform { } null = { source = "hashicorp/null" - version = "~> 3.1.0" + version = ">= 3.1.0" } } }