Plugin for Platformatic cloud mtls auth
npm install @platformatic/mtls-authPlugin to extract authentication information from mTLS certificate common name.
__Example:__
Common name: payments.test.com
``js
const app = fastify(/ tls certs /)
app.register(mtlsAuthPlugin, {
mtlsDomain: 'test.com'
})
app.get('/test', async (request) => {
const session = request.getMtlsAuth()
console.log(session['X-PLATFORMATIC-ROLE']) // payments
})
`
Common name: e4a123f8-1f12-11ee-be56-0242ac120002.clients.test.com
`js
const app = fastify(/ tls certs /)
app.register(mtlsAuthPlugin, {
mtlsClientsRole: 'clients',
mtlsDomain: 'test.com'
})
app.get('/test', async (request) => {
const session = request.getMtlsAuth()
console.log(session['X-PLATFORMATIC-ROLE']) // clients
console.log(session['X-PLATFORMATIC-WORKSPACE-ID']) // e4a123f8-1f12-11ee-be56-0242ac120002
})
``