From 69f2b7b7a9b4b57592ec41c7e834cb6a1695bcfc Mon Sep 17 00:00:00 2001 From: "Warwick Leahy [SSW]" <58454534+leahy268@users.noreply.github.com> Date: Wed, 20 Sep 2023 16:41:03 +1000 Subject: [PATCH] Fix the bicep param --- infra/deploy.bicep | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/infra/deploy.bicep b/infra/deploy.bicep index 991855e..52c0886 100644 --- a/infra/deploy.bicep +++ b/infra/deploy.bicep @@ -1,7 +1,9 @@ param projectName string -param lastDeploymentDate string -param tags object +param lastDeploymentDate string = utcNow() +param tags object = { + Deployed:'yes' +} param location string = 'australiaeast'