An Azure service that enables developers and testers to generate insights on how to improve the performance, scalability, and capacity usage of their application
Hi,
You have not provided the actual Bicep template. Without that I can only say use version 2026-02-01-preview for deployment. That is the version the portal uses when deploying the resource. Here is the ARM template the portal uses for the deployment which can easily be decompiled to Bicep template.
{
"$schema": "http://schema.management.azure.com/schemas/2019-08-01/deploymentTemplate.json#",
"contentVersion": "1.0.0.0",
"parameters": {
"name": {
"type": "String"
},
"location": {
"type": "String"
},
"tags": {
"type": "Object"
},
"storageAccountName": {
"type": "String"
}
},
"resources": [
{
"type": "Microsoft.LoadTestService/playwrightworkspaces",
"apiVersion": "2026-02-01-preview",
"name": "[parameters('name')]",
"location": "[parameters('location')]",
"tags": "[parameters('tags')]"
},
{
"type": "Microsoft.Storage/storageAccounts",
"apiVersion": "2025-01-01",
"name": "[parameters('storageAccountName')]",
"location": "[parameters('location')]",
"tags": "[parameters('tags')]",
"sku": {
"name": "Standard_LRS"
},
"kind": "StorageV2",
"properties": {
"supportsHttpsTrafficOnly": true,
"allowSharedKeyAccess": false,
"encryption": {
"services": {
"file": {
"enabled": true
},
"blob": {
"enabled": true
}
},
"keySource": "Microsoft.Storage"
},
"accessTier": "Hot"
}
}
]
}
here is also the bicep template that works:
param name_param string
param location string
param tags object = {}
param storageAccountName string
resource name 'Microsoft.LoadTestService/playwrightworkspaces@2026-02-01-preview' = {
name: name_param
location: location
tags: tags
}
resource storageAccount 'Microsoft.Storage/storageAccounts@2025-01-01' = {
name: storageAccountName
location: location
tags: tags
sku: {
name: 'Standard_LRS'
}
kind: 'StorageV2'
properties: {
supportsHttpsTrafficOnly: true
allowSharedKeyAccess: false
encryption: {
services: {
file: {
enabled: true
}
blob: {
enabled: true
}
}
keySource: 'Microsoft.Storage'
}
accessTier: 'Hot'
}
}
Please "Accept the answer" if the information helped you. This will help us and others in the community as well.