Bicep resource definition
The managedEnvironments/daprComponents/resiliencyPolicies resource type can be deployed with operations that target:
For a list of changed properties in each API version, see change log.
To create a Microsoft.App/managedEnvironments/daprComponents/resiliencyPolicies resource, add the following Bicep to your template.
resource symbolicname 'Microsoft.App/managedEnvironments/daprComponents/resiliencyPolicies@2025-02-02-preview' = {
parent: resourceSymbolicName
name: 'string'
properties: {
inboundPolicy: {
circuitBreakerPolicy: {
consecutiveErrors: int
intervalInSeconds: int
timeoutInSeconds: int
}
httpRetryPolicy: {
maxRetries: int
retryBackOff: {
initialDelayInMilliseconds: int
maxIntervalInMilliseconds: int
}
}
timeoutPolicy: {
responseTimeoutInSeconds: int
}
}
outboundPolicy: {
circuitBreakerPolicy: {
consecutiveErrors: int
intervalInSeconds: int
timeoutInSeconds: int
}
httpRetryPolicy: {
maxRetries: int
retryBackOff: {
initialDelayInMilliseconds: int
maxIntervalInMilliseconds: int
}
}
timeoutPolicy: {
responseTimeoutInSeconds: int
}
}
}
}
Property Values
Microsoft.App/managedEnvironments/daprComponents/resiliencyPolicies
DaprComponentResiliencyPolicyCircuitBreakerPolicyConfiguration
Name |
Description |
Value |
consecutiveErrors |
The number of consecutive errors before the circuit is opened. |
int |
intervalInSeconds |
The optional interval in seconds after which the error count resets to 0. An interval of 0 will never reset. If not specified, the timeoutInSeconds value will be used. |
int |
timeoutInSeconds |
The interval in seconds until a retry attempt is made after the circuit is opened. |
int |
DaprComponentResiliencyPolicyConfiguration
DaprComponentResiliencyPolicyHttpRetryBackOffConfiguration
Name |
Description |
Value |
initialDelayInMilliseconds |
The optional initial delay in milliseconds before an operation is retried |
int |
maxIntervalInMilliseconds |
The optional maximum time interval in milliseconds between retry attempts |
int |
DaprComponentResiliencyPolicyHttpRetryPolicyConfiguration
DaprComponentResiliencyPolicyProperties
DaprComponentResiliencyPolicyTimeoutPolicyConfiguration
Name |
Description |
Value |
responseTimeoutInSeconds |
The optional response timeout in seconds |
int |
ARM template resource definition
The managedEnvironments/daprComponents/resiliencyPolicies resource type can be deployed with operations that target:
For a list of changed properties in each API version, see change log.
To create a Microsoft.App/managedEnvironments/daprComponents/resiliencyPolicies resource, add the following JSON to your template.
{
"type": "Microsoft.App/managedEnvironments/daprComponents/resiliencyPolicies",
"apiVersion": "2025-02-02-preview",
"name": "string",
"properties": {
"inboundPolicy": {
"circuitBreakerPolicy": {
"consecutiveErrors": "int",
"intervalInSeconds": "int",
"timeoutInSeconds": "int"
},
"httpRetryPolicy": {
"maxRetries": "int",
"retryBackOff": {
"initialDelayInMilliseconds": "int",
"maxIntervalInMilliseconds": "int"
}
},
"timeoutPolicy": {
"responseTimeoutInSeconds": "int"
}
},
"outboundPolicy": {
"circuitBreakerPolicy": {
"consecutiveErrors": "int",
"intervalInSeconds": "int",
"timeoutInSeconds": "int"
},
"httpRetryPolicy": {
"maxRetries": "int",
"retryBackOff": {
"initialDelayInMilliseconds": "int",
"maxIntervalInMilliseconds": "int"
}
},
"timeoutPolicy": {
"responseTimeoutInSeconds": "int"
}
}
}
}
Property Values
Microsoft.App/managedEnvironments/daprComponents/resiliencyPolicies
Name |
Description |
Value |
apiVersion |
The api version |
'2025-02-02-preview' |
name |
The resource name |
string (required) |
properties |
Dapr Component Resiliency Policy resource specific properties |
DaprComponentResiliencyPolicyProperties |
type |
The resource type |
'Microsoft.App/managedEnvironments/daprComponents/resiliencyPolicies' |
DaprComponentResiliencyPolicyCircuitBreakerPolicyConfiguration
Name |
Description |
Value |
consecutiveErrors |
The number of consecutive errors before the circuit is opened. |
int |
intervalInSeconds |
The optional interval in seconds after which the error count resets to 0. An interval of 0 will never reset. If not specified, the timeoutInSeconds value will be used. |
int |
timeoutInSeconds |
The interval in seconds until a retry attempt is made after the circuit is opened. |
int |
DaprComponentResiliencyPolicyConfiguration
DaprComponentResiliencyPolicyHttpRetryBackOffConfiguration
Name |
Description |
Value |
initialDelayInMilliseconds |
The optional initial delay in milliseconds before an operation is retried |
int |
maxIntervalInMilliseconds |
The optional maximum time interval in milliseconds between retry attempts |
int |
DaprComponentResiliencyPolicyHttpRetryPolicyConfiguration
DaprComponentResiliencyPolicyProperties
DaprComponentResiliencyPolicyTimeoutPolicyConfiguration
Name |
Description |
Value |
responseTimeoutInSeconds |
The optional response timeout in seconds |
int |
Usage Examples
The managedEnvironments/daprComponents/resiliencyPolicies resource type can be deployed with operations that target:
For a list of changed properties in each API version, see change log.
To create a Microsoft.App/managedEnvironments/daprComponents/resiliencyPolicies resource, add the following Terraform to your template.
resource "azapi_resource" "symbolicname" {
type = "Microsoft.App/managedEnvironments/daprComponents/resiliencyPolicies@2025-02-02-preview"
name = "string"
parent_id = "string"
body = {
properties = {
inboundPolicy = {
circuitBreakerPolicy = {
consecutiveErrors = int
intervalInSeconds = int
timeoutInSeconds = int
}
httpRetryPolicy = {
maxRetries = int
retryBackOff = {
initialDelayInMilliseconds = int
maxIntervalInMilliseconds = int
}
}
timeoutPolicy = {
responseTimeoutInSeconds = int
}
}
outboundPolicy = {
circuitBreakerPolicy = {
consecutiveErrors = int
intervalInSeconds = int
timeoutInSeconds = int
}
httpRetryPolicy = {
maxRetries = int
retryBackOff = {
initialDelayInMilliseconds = int
maxIntervalInMilliseconds = int
}
}
timeoutPolicy = {
responseTimeoutInSeconds = int
}
}
}
}
}
Property Values
Microsoft.App/managedEnvironments/daprComponents/resiliencyPolicies
Name |
Description |
Value |
name |
The resource name |
string (required) |
parent_id |
The ID of the resource that is the parent for this resource. |
ID for resource of type: managedEnvironments/daprComponents |
properties |
Dapr Component Resiliency Policy resource specific properties |
DaprComponentResiliencyPolicyProperties |
type |
The resource type |
"Microsoft.App/managedEnvironments/daprComponents/resiliencyPolicies@2025-02-02-preview" |
DaprComponentResiliencyPolicyCircuitBreakerPolicyConfiguration
Name |
Description |
Value |
consecutiveErrors |
The number of consecutive errors before the circuit is opened. |
int |
intervalInSeconds |
The optional interval in seconds after which the error count resets to 0. An interval of 0 will never reset. If not specified, the timeoutInSeconds value will be used. |
int |
timeoutInSeconds |
The interval in seconds until a retry attempt is made after the circuit is opened. |
int |
DaprComponentResiliencyPolicyConfiguration
DaprComponentResiliencyPolicyHttpRetryBackOffConfiguration
Name |
Description |
Value |
initialDelayInMilliseconds |
The optional initial delay in milliseconds before an operation is retried |
int |
maxIntervalInMilliseconds |
The optional maximum time interval in milliseconds between retry attempts |
int |
DaprComponentResiliencyPolicyHttpRetryPolicyConfiguration
DaprComponentResiliencyPolicyProperties
DaprComponentResiliencyPolicyTimeoutPolicyConfiguration
Name |
Description |
Value |
responseTimeoutInSeconds |
The optional response timeout in seconds |
int |