Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Bicep resource definition
The playwrightWorkspaces resource type can be deployed with operations that target:
- Resource groups - See resource group deployment commands
For a list of changed properties in each API version, see change log.
Resource format
To create a Microsoft.LoadTestService/playwrightWorkspaces resource, add the following Bicep to your template.
resource symbolicname 'Microsoft.LoadTestService/playwrightWorkspaces@2025-09-01' = {
location: 'string'
name: 'string'
properties: {
localAuth: 'string'
regionalAffinity: 'string'
}
tags: {
{customized property}: 'string'
}
}
Property Values
Microsoft.LoadTestService/playwrightWorkspaces
Name | Description | Value |
---|---|---|
location | The geo-location where the resource lives | string (required) |
name | The resource name | string Constraints: Pattern = ^[a-zA-Z0-9-]{3,24}$ (required) |
properties | The resource-specific properties for this resource. | PlaywrightWorkspaceProperties |
tags | Resource tags | Dictionary of tag names and values. See Tags in templates |
PlaywrightWorkspaceProperties
Name | Description | Value |
---|---|---|
localAuth | Enables the workspace to use local authentication through service access tokens for operations. | 'Disabled' 'Enabled' |
regionalAffinity | Controls the connection region for client workers to cloud-hosted browsers. When enabled, workers connect to browsers in the closest Azure region for lower latency. When disabled, workers connect to browsers in the Azure region where the workspace was created. | 'Disabled' 'Enabled' |
TrackedResourceTags
Name | Description | Value |
---|
ARM template resource definition
The playwrightWorkspaces resource type can be deployed with operations that target:
- Resource groups - See resource group deployment commands
For a list of changed properties in each API version, see change log.
Resource format
To create a Microsoft.LoadTestService/playwrightWorkspaces resource, add the following JSON to your template.
{
"type": "Microsoft.LoadTestService/playwrightWorkspaces",
"apiVersion": "2025-09-01",
"name": "string",
"location": "string",
"properties": {
"localAuth": "string",
"regionalAffinity": "string"
},
"tags": {
"{customized property}": "string"
}
}
Property Values
Microsoft.LoadTestService/playwrightWorkspaces
Name | Description | Value |
---|---|---|
apiVersion | The api version | '2025-09-01' |
location | The geo-location where the resource lives | string (required) |
name | The resource name | string Constraints: Pattern = ^[a-zA-Z0-9-]{3,24}$ (required) |
properties | The resource-specific properties for this resource. | PlaywrightWorkspaceProperties |
tags | Resource tags | Dictionary of tag names and values. See Tags in templates |
type | The resource type | 'Microsoft.LoadTestService/playwrightWorkspaces' |
PlaywrightWorkspaceProperties
Name | Description | Value |
---|---|---|
localAuth | Enables the workspace to use local authentication through service access tokens for operations. | 'Disabled' 'Enabled' |
regionalAffinity | Controls the connection region for client workers to cloud-hosted browsers. When enabled, workers connect to browsers in the closest Azure region for lower latency. When disabled, workers connect to browsers in the Azure region where the workspace was created. | 'Disabled' 'Enabled' |
TrackedResourceTags
Name | Description | Value |
---|
Usage Examples
Terraform (AzAPI provider) resource definition
The playwrightWorkspaces resource type can be deployed with operations that target:
- Resource groups
For a list of changed properties in each API version, see change log.
Resource format
To create a Microsoft.LoadTestService/playwrightWorkspaces resource, add the following Terraform to your template.
resource "azapi_resource" "symbolicname" {
type = "Microsoft.LoadTestService/playwrightWorkspaces@2025-09-01"
name = "string"
parent_id = "string"
location = "string"
tags = {
{customized property} = "string"
}
body = {
properties = {
localAuth = "string"
regionalAffinity = "string"
}
}
}
Property Values
Microsoft.LoadTestService/playwrightWorkspaces
Name | Description | Value |
---|---|---|
location | The geo-location where the resource lives | string (required) |
name | The resource name | string Constraints: Pattern = ^[a-zA-Z0-9-]{3,24}$ (required) |
properties | The resource-specific properties for this resource. | PlaywrightWorkspaceProperties |
tags | Resource tags | Dictionary of tag names and values. |
type | The resource type | "Microsoft.LoadTestService/playwrightWorkspaces@2025-09-01" |
PlaywrightWorkspaceProperties
Name | Description | Value |
---|---|---|
localAuth | Enables the workspace to use local authentication through service access tokens for operations. | 'Disabled' 'Enabled' |
regionalAffinity | Controls the connection region for client workers to cloud-hosted browsers. When enabled, workers connect to browsers in the closest Azure region for lower latency. When disabled, workers connect to browsers in the Azure region where the workspace was created. | 'Disabled' 'Enabled' |
TrackedResourceTags
Name | Description | Value |
---|