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 managedCCFs 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.ConfidentialLedger/managedCCFs resource, add the following Bicep to your template.
resource symbolicname 'Microsoft.ConfidentialLedger/managedCCFs@2025-06-10-preview' = {
location: 'string'
name: 'string'
properties: {
deploymentType: {
appSourceUri: 'string'
languageRuntime: 'string'
}
enclavePlatform: 'string'
memberIdentityCertificates: [
{
certificate: 'string'
encryptionkey: 'string'
tags: any(...)
}
]
nodeCount: int
runningState: 'string'
}
tags: {
{customized property}: 'string'
}
}
Property Values
Microsoft.ConfidentialLedger/managedCCFs
Name | Description | Value |
---|---|---|
location | The geo-location where the resource lives | string (required) |
name | The resource name | string Constraints: Pattern = ^[a-zA-Z0-9] (required) |
properties | Properties of Managed CCF Resource. | ManagedCCFProperties |
tags | Resource tags | Dictionary of tag names and values. See Tags in templates |
DeploymentType
Name | Description | Value |
---|---|---|
appSourceUri | Source Uri containing ManagedCCF code | string |
languageRuntime | Unique name for the Managed CCF. | 'CPP' 'JS' |
ManagedCCFProperties
Name | Description | Value |
---|---|---|
deploymentType | Deployment Type of Managed CCF | DeploymentType |
enclavePlatform | Enclave platform of Managed CCF. | 'AmdSevSnp' 'IntelSgx' |
memberIdentityCertificates | List of member identity certificates for Managed CCF | MemberIdentityCertificate[] |
nodeCount | Number of CCF nodes in the Managed CCF. | int |
runningState | Object representing RunningState for Managed CCF. | 'Active' 'Paused' 'Pausing' 'Resuming' 'Unknown' |
MemberIdentityCertificate
Name | Description | Value |
---|---|---|
certificate | Member Identity Certificate | string |
encryptionkey | Member Identity Certificate Encryption Key | string |
tags | Anything | any |
TrackedResourceTags
Name | Description | Value |
---|
ARM template resource definition
The managedCCFs 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.ConfidentialLedger/managedCCFs resource, add the following JSON to your template.
{
"type": "Microsoft.ConfidentialLedger/managedCCFs",
"apiVersion": "2025-06-10-preview",
"name": "string",
"location": "string",
"properties": {
"deploymentType": {
"appSourceUri": "string",
"languageRuntime": "string"
},
"enclavePlatform": "string",
"memberIdentityCertificates": [
{
"certificate": "string",
"encryptionkey": "string",
"tags": {}
}
],
"nodeCount": "int",
"runningState": "string"
},
"tags": {
"{customized property}": "string"
}
}
Property Values
Microsoft.ConfidentialLedger/managedCCFs
Name | Description | Value |
---|---|---|
apiVersion | The api version | '2025-06-10-preview' |
location | The geo-location where the resource lives | string (required) |
name | The resource name | string Constraints: Pattern = ^[a-zA-Z0-9] (required) |
properties | Properties of Managed CCF Resource. | ManagedCCFProperties |
tags | Resource tags | Dictionary of tag names and values. See Tags in templates |
type | The resource type | 'Microsoft.ConfidentialLedger/managedCCFs' |
DeploymentType
Name | Description | Value |
---|---|---|
appSourceUri | Source Uri containing ManagedCCF code | string |
languageRuntime | Unique name for the Managed CCF. | 'CPP' 'JS' |
ManagedCCFProperties
Name | Description | Value |
---|---|---|
deploymentType | Deployment Type of Managed CCF | DeploymentType |
enclavePlatform | Enclave platform of Managed CCF. | 'AmdSevSnp' 'IntelSgx' |
memberIdentityCertificates | List of member identity certificates for Managed CCF | MemberIdentityCertificate[] |
nodeCount | Number of CCF nodes in the Managed CCF. | int |
runningState | Object representing RunningState for Managed CCF. | 'Active' 'Paused' 'Pausing' 'Resuming' 'Unknown' |
MemberIdentityCertificate
Name | Description | Value |
---|---|---|
certificate | Member Identity Certificate | string |
encryptionkey | Member Identity Certificate Encryption Key | string |
tags | Anything | any |
TrackedResourceTags
Name | Description | Value |
---|
Usage Examples
Terraform (AzAPI provider) resource definition
The managedCCFs 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.ConfidentialLedger/managedCCFs resource, add the following Terraform to your template.
resource "azapi_resource" "symbolicname" {
type = "Microsoft.ConfidentialLedger/managedCCFs@2025-06-10-preview"
name = "string"
parent_id = "string"
location = "string"
tags = {
{customized property} = "string"
}
body = {
properties = {
deploymentType = {
appSourceUri = "string"
languageRuntime = "string"
}
enclavePlatform = "string"
memberIdentityCertificates = [
{
certificate = "string"
encryptionkey = "string"
tags = ?
}
]
nodeCount = int
runningState = "string"
}
}
}
Property Values
Microsoft.ConfidentialLedger/managedCCFs
Name | Description | Value |
---|---|---|
location | The geo-location where the resource lives | string (required) |
name | The resource name | string Constraints: Pattern = ^[a-zA-Z0-9] (required) |
properties | Properties of Managed CCF Resource. | ManagedCCFProperties |
tags | Resource tags | Dictionary of tag names and values. |
type | The resource type | "Microsoft.ConfidentialLedger/managedCCFs@2025-06-10-preview" |
DeploymentType
Name | Description | Value |
---|---|---|
appSourceUri | Source Uri containing ManagedCCF code | string |
languageRuntime | Unique name for the Managed CCF. | 'CPP' 'JS' |
ManagedCCFProperties
Name | Description | Value |
---|---|---|
deploymentType | Deployment Type of Managed CCF | DeploymentType |
enclavePlatform | Enclave platform of Managed CCF. | 'AmdSevSnp' 'IntelSgx' |
memberIdentityCertificates | List of member identity certificates for Managed CCF | MemberIdentityCertificate[] |
nodeCount | Number of CCF nodes in the Managed CCF. | int |
runningState | Object representing RunningState for Managed CCF. | 'Active' 'Paused' 'Pausing' 'Resuming' 'Unknown' |
MemberIdentityCertificate
Name | Description | Value |
---|---|---|
certificate | Member Identity Certificate | string |
encryptionkey | Member Identity Certificate Encryption Key | string |
tags | Anything | any |
TrackedResourceTags
Name | Description | Value |
---|