From 50b9f747a8c4fb6229ee9bf9fcdfe9e68a506db8 Mon Sep 17 00:00:00 2001 From: Henrik Simonsen Knutsen <46495473+hknutsen@users.noreply.github.com> Date: Fri, 10 Jan 2025 10:13:57 +0100 Subject: [PATCH] fix: add default value for parameter `containerName` Forgot to add default value in commit 137ef2a1d40fbacc94f6cd5d02ecb1b614646f30, breaking compatability with previous versions of the template. --- main.bicep | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.bicep b/main.bicep index 47725bc..e0ce534 100644 --- a/main.bicep +++ b/main.bicep @@ -2,7 +2,7 @@ param storageAccountName string @description('The name of the blob container to create.') -param containerName string +param containerName string = 'tfstate' @description('An array of IP addresses or IP ranges that should be allowed to bypass the firewall of the Terraform backend. If empty, the firewall will be disabled.') param ipRules array = []