El Gohr
El Gohr

Reputation: 306

Custom resource provider: Authentication of calls from Azure into the resource provider

How should calls to custom resource providers be authenticated? From https://github.com/MicrosoftDocs/azure-docs/issues/64994#issuecomment-728281972 I got that a certificate could be used. Sadly the response is lacking the implementation of GetClientCertificate. Would this require the resource provider to communicate via mTLS?

Upvotes: 0

Views: 97

Answers (1)

El Gohr
El Gohr

Reputation: 306

Alright, solved it. So in case your Resource Provider is a Container App, you want to use clientCertificateMode: 'require' for getting the certificate (provided by the service call). Afterwards take the certificate and validate against the given endpoint certificates.

Upvotes: 0

Related Questions