Skip to content

Instantly share code, notes, and snippets.

@ItayPodhajcer
Created May 29, 2023 14:07
Show Gist options
  • Save ItayPodhajcer/0f9375e597c6e47e66325c12fb4f0f7e to your computer and use it in GitHub Desktop.
Save ItayPodhajcer/0f9375e597c6e47e66325c12fb4f0f7e to your computer and use it in GitHub Desktop.
terraform-did-web-azure/root.json
{
"@context": [
"https://www.w3.org/ns/did/v1",
"https://w3id.org/security/suites/jws-2020/v1"
],
"id": "did:web:${domain}",
"verificationMethod": [
{
"id": "did:web:${domain}#key-0",
"type": "JsonWebKey2020",
"controller": "did:web:${domain}",
"publicKeyJwk": {
"kty": "EC",
"crv": "P-256",
"x": "38M1FDts7Oea7urmseiugGW7tWc3mLpJh6rKe7xINZ8",
"y": "nDQW6XZ7b_u2Sy9slofYLlG03sOEoug3I0aAPQ0exs4"
}
}
],
"authentication": [
"did:web:${domain}#key-0"
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment