Microsoft.Resources dataBoundaries
Bicep resource definition
The dataBoundaries resource type can be deployed with operations that target:
For a list of changed properties in each API version, see change log.
Resource format
To create a Microsoft.Resources/dataBoundaries resource, add the following Bicep to your template.
resource symbolicname 'Microsoft.Resources/dataBoundaries@2024-08-01' = {
scope: resourceSymbolicName or scope
name: 'string'
properties: {
dataBoundary: 'string'
}
}
Property values
DataBoundaryProperties
Name | Description | Value |
---|---|---|
dataBoundary | The data boundary definition. | 'EU' 'Global' 'NotDefined' |
Microsoft.Resources/dataBoundaries
Name | Description | Value |
---|---|---|
name | The resource name | 'default' (required) |
properties | Data boundary properties | DataBoundaryProperties |
scope | Use when creating a resource at a scope that is different than the deployment scope. | Set this property to the symbolic name of a resource to apply the extension resource. |
ARM template resource definition
The dataBoundaries resource type can be deployed with operations that target:
For a list of changed properties in each API version, see change log.
Resource format
To create a Microsoft.Resources/dataBoundaries resource, add the following JSON to your template.
{
"type": "Microsoft.Resources/dataBoundaries",
"apiVersion": "2024-08-01",
"name": "string",
"properties": {
"dataBoundary": "string"
}
}
Property values
DataBoundaryProperties
Name | Description | Value |
---|---|---|
dataBoundary | The data boundary definition. | 'EU' 'Global' 'NotDefined' |
Microsoft.Resources/dataBoundaries
Name | Description | Value |
---|---|---|
apiVersion | The api version | '2024-08-01' |
name | The resource name | 'default' (required) |
properties | Data boundary properties | DataBoundaryProperties |
type | The resource type | 'Microsoft.Resources/dataBoundaries' |
Terraform (AzAPI provider) resource definition
The dataBoundaries resource type can be deployed with operations that target:
For a list of changed properties in each API version, see change log.
Resource format
To create a Microsoft.Resources/dataBoundaries resource, add the following Terraform to your template.
resource "azapi_resource" "symbolicname" {
type = "Microsoft.Resources/dataBoundaries@2024-08-01"
name = "string"
parent_id = "string"
body = jsonencode({
properties = {
dataBoundary = "string"
}
})
}
Property values
DataBoundaryProperties
Name | Description | Value |
---|---|---|
dataBoundary | The data boundary definition. | 'EU' 'Global' 'NotDefined' |
Microsoft.Resources/dataBoundaries
Name | Description | Value |
---|---|---|
name | The resource name | 'default' (required) |
parent_id | The ID of the resource to apply this extension resource to. | string (required) |
properties | Data boundary properties | DataBoundaryProperties |
type | The resource type | "Microsoft.Resources/dataBoundaries@2024-08-01" |