//native
type Neondb = {
apiKey: string
}
/**
* Adds a JWKS URL to a project
* Add a new JWKS URL to a project, such that it can be used for verifying JWTs used as the authentication mechanism for the specified project.
*/
export async function main(
auth: Neondb,
project_id: string,
body: {
jwks_url: string
provider_name: string
branch_id?: string
jwt_audience?: string
role_names?: string[]
}
) {
const url = new URL(`https://console.neon.tech/api/v2/projects/${project_id}/jwks`)
const response = await fetch(url, {
method: 'POST',
headers: {
'Content-Type': 'application/json',
Authorization: 'Bearer ' + auth.apiKey
},
body: JSON.stringify(body)
})
if (!response.ok) {
const text = await response.text()
throw new Error(`${response.status} ${text}`)
}
return await response.json()
}
Submitted by hugo697 428 days ago