Share via


ComputeNode.CertificateReferences Property

Definition

Gets or sets the list of Certificates installed on the Compute Node.

[Newtonsoft.Json.JsonProperty(PropertyName="certificateReferences")]
public System.Collections.Generic.IList<Microsoft.Azure.Batch.Protocol.Models.CertificateReference> CertificateReferences { get; set; }
[<Newtonsoft.Json.JsonProperty(PropertyName="certificateReferences")>]
member this.CertificateReferences : System.Collections.Generic.IList<Microsoft.Azure.Batch.Protocol.Models.CertificateReference> with get, set
Public Property CertificateReferences As IList(Of CertificateReference)

Property Value

Attributes
Newtonsoft.Json.JsonPropertyAttribute

Remarks

For Windows Nodes, the Batch service installs the Certificates to the specified Certificate store and location. For Linux Compute Nodes, the Certificates are stored in a directory inside the Task working directory and an environment variable AZ_BATCH_CERTIFICATES_DIR is supplied to the Task to query for this location. For Certificates with visibility of 'remoteUser', a 'certs' directory is created in the user's home directory (e.g., /home/{user-name}/certs) and Certificates are placed in that directory.

Warning: This property is deprecated and will be removed after February, 2024. Please use the [Azure KeyVault Extension](https://learn.microsoft.com/azure/batch/batch-certificate-migration-guide) instead.

Applies to