az iot ops connector opcua issuer

Note

This reference is part of the azure-iot-ops extension for the Azure CLI (version 2.53.0 or higher). The extension will automatically install the first time you run an az iot ops connector opcua issuer command. Learn more about extensions.

Command group 'iot ops' is in preview and under development. Reference and support levels: https://aka.ms/CLI_refstatus

Manage issuer certificates for the OPC UA Broker.

The issuer certificate list stores the certificate authority certificates that the connector for OPC UA trusts. If user's OPC UA server's application instance certificate is signed by an intermediate certificate authority, but user does not want to automatically trust all the certificates issued by the certificate authority, an issuer certificate list can be used to manage the trust relationship. For more info, see https://aka.ms/opcua-certificates.

Commands

Name Description Type Status
az iot ops connector opcua issuer add

Add an issuer certificate to the OPC UA Broker's issuer certificate list.

Extension Preview

az iot ops connector opcua issuer add

Preview

Command group 'iot ops' is in preview and under development. Reference and support levels: https://aka.ms/CLI_refstatus

Add an issuer certificate to the OPC UA Broker's issuer certificate list.

The certificate file extension must be .der, .crt or .crl. When adding a .crl file, a .der or .crt file with same file name must be added first. Azure resource secretproviderclass 'opc-ua-connector'and secretsync 'aio-opc-ua-broker-issuer-list' will be created if not found.

az iot ops connector opcua issuer add --certificate-file
                                      --instance
                                      --resource-group
                                      [--secret-name]

Examples

Add an issuer certificate in the OPC UA Broker's issuer certificate list.

az iot ops connector opcua issuer add --instance instance --resource-group instanceresourcegroup --certificate-file "certificate.der"

Add an issuer certificate with .crl extension to the OPC UA Broker's issuer certificate list with same file name as the .der file mentioned above.

az iot ops connector opcua issuer add --instance instance --resource-group instanceresourcegroup --certificate-file "certificate.crl"

Add an issuer certificate to the OPC UA Broker's issuer certificate list with custom secret name.

az iot ops connector opcua issuer add --instance instance --resource-group instanceresourcegroup --certificate-file "certificate.der" --secret custom-secret-name

Required Parameters

--certificate-file --cf

Path to the certificate file in .der, .crt or .crl format.

--instance -i

IoT Operations instance name.

--resource-group -g

Instance resource group.

Optional Parameters

--secret-name -s

Secret name in the Key Vault. If not provided, the certificate file name will be used to generate the secret name.

Global Parameters
--debug

Increase logging verbosity to show all debug logs.

--help -h

Show this help message and exit.

--only-show-errors

Only show errors, suppressing warnings.

--output -o

Output format.

Accepted values: json, jsonc, none, table, tsv, yaml, yamlc
Default value: json
--query

JMESPath query string. See http://jmespath.org/ for more information and examples.

--subscription

Name or ID of subscription. You can configure the default subscription using az account set -s NAME_OR_ID.

--verbose

Increase logging verbosity. Use --debug for full debug logs.