Microsoft.RecoveryServices vaults/extendedInformation 2021-02-10

Bicep resource definition

The vaults/extendedInformation resource type can be deployed to:

For a list of changed properties in each API version, see change log.

Resource format

To create a Microsoft.RecoveryServices/vaults/extendedInformation resource, add the following Bicep to your template.

resource symbolicname 'Microsoft.RecoveryServices/vaults/extendedInformation@2021-02-10' = {
  name: 'vaultExtendedInfo'
  parent: resourceSymbolicName
  etag: 'string'
  properties: {
    algorithm: 'string'
    encryptionKey: 'string'
    encryptionKeyThumbprint: 'string'
    integrityKey: 'string'
  }
}

Property values

vaults/extendedInformation

Name Description Value
name The resource name

See how to set names and types for child resources in Bicep.
'vaultExtendedInfo'
parent In Bicep, you can specify the parent resource for a child resource. You only need to add this property when the child resource is declared outside of the parent resource.

For more information, see Child resource outside parent resource.
Symbolic name for resource of type: vaults
etag Optional ETag. string
properties Vault extended information. VaultExtendedInfo

VaultExtendedInfo

Name Description Value
algorithm Algorithm for Vault ExtendedInfo string
encryptionKey Encryption key. string
encryptionKeyThumbprint Encryption key thumbprint. string
integrityKey Integrity key. string

ARM template resource definition

The vaults/extendedInformation resource type can be deployed to:

For a list of changed properties in each API version, see change log.

Resource format

To create a Microsoft.RecoveryServices/vaults/extendedInformation resource, add the following JSON to your template.

{
  "type": "Microsoft.RecoveryServices/vaults/extendedInformation",
  "apiVersion": "2021-02-10",
  "name": "vaultExtendedInfo",
  "etag": "string",
  "properties": {
    "algorithm": "string",
    "encryptionKey": "string",
    "encryptionKeyThumbprint": "string",
    "integrityKey": "string"
  }
}

Property values

vaults/extendedInformation

Name Description Value
type The resource type 'Microsoft.RecoveryServices/vaults/extendedInformation'
apiVersion The resource api version '2021-02-10'
name The resource name

See how to set names and types for child resources in JSON ARM templates.
'vaultExtendedInfo'
etag Optional ETag. string
properties Vault extended information. VaultExtendedInfo

VaultExtendedInfo

Name Description Value
algorithm Algorithm for Vault ExtendedInfo string
encryptionKey Encryption key. string
encryptionKeyThumbprint Encryption key thumbprint. string
integrityKey Integrity key. string

Terraform (AzAPI provider) resource definition

The vaults/extendedInformation resource type can be deployed to:

  • Resource groups

For a list of changed properties in each API version, see change log.

Resource format

To create a Microsoft.RecoveryServices/vaults/extendedInformation resource, add the following Terraform to your template.

resource "azapi_resource" "symbolicname" {
  type = "Microsoft.RecoveryServices/vaults/extendedInformation@2021-02-10"
  name = "vaultExtendedInfo"
  parent_id = "string"
  body = jsonencode({
    properties = {
      algorithm = "string"
      encryptionKey = "string"
      encryptionKeyThumbprint = "string"
      integrityKey = "string"
    }
    etag = "string"
  })
}

Property values

vaults/extendedInformation

Name Description Value
type The resource type "Microsoft.RecoveryServices/vaults/extendedInformation@2021-02-10"
name The resource name "vaultExtendedInfo"
parent_id The ID of the resource that is the parent for this resource. ID for resource of type: vaults
etag Optional ETag. string
properties Vault extended information. VaultExtendedInfo

VaultExtendedInfo

Name Description Value
algorithm Algorithm for Vault ExtendedInfo string
encryptionKey Encryption key. string
encryptionKeyThumbprint Encryption key thumbprint. string
integrityKey Integrity key. string