From 30b0cd19bcff5abde7fe6f7c9d1ca7143231cb8b Mon Sep 17 00:00:00 2001 From: Muhammad Atif Ali Date: Thu, 26 Oct 2023 12:34:14 +0300 Subject: [PATCH] fix(git-clone): update the required provider version `coder_script` was introduced in [`v0.12.0`](https://registry.terraform.io/providers/coder/coder/0.12.0/docs/resources/script) and does not work on versions below this. --- git-clone/main.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/git-clone/main.tf b/git-clone/main.tf index c5a6d29..110232f 100644 --- a/git-clone/main.tf +++ b/git-clone/main.tf @@ -4,7 +4,7 @@ terraform { required_providers { coder = { source = "coder/coder" - version = ">= 0.11" + version = ">= 0.12" } } }