The blockchainMembers 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.Blockchain/blockchainMembers resource, add the following JSON to your template.
{
"type": "Microsoft.Blockchain/blockchainMembers",
"apiVersion": "2018-06-01-preview",
"name": "string",
"location": "string",
"tags": {
"tagName1": "tagValue1",
"tagName2": "tagValue2"
},
"sku": {
"name": "string",
"tier": "string"
},
"properties": {
"consortium": "string",
"consortiumManagementAccountPassword": "string",
"consortiumMemberDisplayName": "string",
"consortiumRole": "string",
"firewallRules": [
{
"endIpAddress": "string",
"ruleName": "string",
"startIpAddress": "string"
}
],
"password": "string",
"protocol": "string",
"validatorNodesSku": {
"capacity": "int"
}
}
}
Name | Description | Value |
---|---|---|
type | The resource type | 'Microsoft.Blockchain/blockchainMembers' |
apiVersion | The resource api version | '2018-06-01-preview' |
name | The resource name | string (required) Character limit: 2-20 Valid characters: Lowercase letters and numbers. Start with lowercase letter. Resource name must be unique across Azure. |
location | The GEO location of the blockchain service. | string |
tags | Tags of the service which is a list of key value pairs that describes the resource. | Dictionary of tag names and values. See Tags in templates |
sku | Gets or sets the blockchain member Sku. | Sku |
properties | Gets or sets the blockchain member properties. | BlockchainMemberProperties |
Name | Description | Value |
---|---|---|
consortium | Gets or sets the consortium for the blockchain member. | string |
consortiumManagementAccountPassword | Sets the managed consortium management account password. | string |
consortiumMemberDisplayName | Gets the display name of the member in the consortium. | string |
consortiumRole | Gets the role of the member in the consortium. | string |
firewallRules | Gets or sets firewall rules | FirewallRule[] |
password | Sets the basic auth password of the blockchain member. | string |
protocol | Gets or sets the blockchain protocol. | 'Corda' 'NotSpecified' 'Parity' 'Quorum' |
validatorNodesSku | Gets or sets the blockchain validator nodes Sku. | BlockchainMemberNodesSku |
Name | Description | Value |
---|---|---|
endIpAddress | Gets or sets the end IP address of the firewall rule range. | string |
ruleName | Gets or sets the name of the firewall rules. | string |
startIpAddress | Gets or sets the start IP address of the firewall rule range. | string |
Name | Description | Value |
---|---|---|
capacity | Gets or sets the nodes capacity. | int |
Name | Description | Value |
---|---|---|
name | Gets or sets Sku name | string |
tier | Gets or sets Sku tier | string |
The following quickstart templates deploy this resource type.
Template | Description |
---|---|
Blockchain Service |
This template deploys a Azure Blockchain Service, that currently provides support for the Ethereum Quorum ledger using the IBFT consensus mechanism. |