Skip to content

Commit ab35676

Browse files
revert remove tag from resource group creation in deploy waf workflow
1 parent 8d01f54 commit ab35676

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/deploy-waf.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ jobs:
115115
rg_exists=$(az group exists --name ${{ env.RESOURCE_GROUP_NAME }})
116116
if [ "$rg_exists" = "false" ]; then
117117
echo "Resource group does not exist. Creating..."
118-
az group create --name ${{ env.RESOURCE_GROUP_NAME }} --location ${{ env.AZURE_LOCATION }} --tags IsWAFEnabled=true || { echo "Error creating resource group"; exit 1; }
118+
az group create --name ${{ env.RESOURCE_GROUP_NAME }} --location ${{ env.AZURE_LOCATION }} || { echo "Error creating resource group"; exit 1; }
119119
else
120120
echo "Resource group already exists."
121121
fi

0 commit comments

Comments
 (0)