Skip to content

Commit

Permalink
feat: add azure sign tool inputs to tools stack output
Browse files Browse the repository at this point in the history
  • Loading branch information
Harjot1Singh committed Oct 21, 2023
1 parent 244de86 commit ad7d53d
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion tools/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,16 @@ const stack = async () => {

const identity = await identityModule()

await keyVaultModule( { azure, identity } )
const keyVault = await keyVaultModule( { azure, identity } )

return {
azureSignTool: {
keyVaultUri: keyVault.location,
keyVaultClientId: identity.application.applicationId,
keyVaultClientSecret: identity.servicePrincipalPassword.value,
keyVaultCertificateName: 'EV-CodeSigning',
},
}
}

export = stack

0 comments on commit ad7d53d

Please sign in to comment.