features: add runtime attestation page#161
Merged
fitzthum merged 1 commit intoconfidential-containers:mainfrom Feb 13, 2026
Merged
features: add runtime attestation page#161fitzthum merged 1 commit intoconfidential-containers:mainfrom
fitzthum merged 1 commit intoconfidential-containers:mainfrom
Conversation
✅ Deploy Preview for frolicking-manatee-96c0c8 ready!
To edit notification comments on pull requests, go to your Netlify project configuration. |
mythi
approved these changes
Feb 13, 2026
| -d '{"domain":"test","operation":"test","content":"test"}' | ||
| ``` | ||
|
|
||
| The `domain` and `operation` are context fields that will be included in the event log. |
Contributor
There was a problem hiding this comment.
since the example uses ASR, we could easily show how the token claims capture the events:
$ curl http://127.0.0.1:8006/aa/token\?token_type\=kbs | jq -r '.token |split(".") | .[1] | @base64d | fromjson'
...
the eventlog in AA token gets a record:
{
"details": {
"data": {
"content": "Hello World",
"domain": "tdx",
"operation": "rtmr-extend"
},
"string": "tdx rtmr-extend Hello World",
"unicode_name": "AAEL"
},
"digest_matches_event": true,
"digests": [
{
"alg": "SHA-384",
"digest": "1495be3eb2120e8c408f5f85301da8fb5cc49a50502047298b652f59facb8f3eba0ce6011a0b9ec528d02fe42447d64f"
}
],
"event": "TEVBQRsAAAB0ZHggcnRtci1leHRlbmQgSGVsbG8gV29ybGQ=",
"index": 4,
"type_name": "EV_EVENT_TAG"
}
(a copy-paste I've used elsewhere and it does not match with {"domain":"test","operation":"test","content":"test"}. it also assumed jq is installed.).
38ead9c to
a35fb49
Compare
We've supported runtime attestation from the workload for a few releases. Let's add a feature page describing how to use it. Signed-off-by: Tobin Feldman-Fitzthum <tfeldmanfitz@nvidia.com>
a35fb49 to
5bf958b
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
We've supported runtime attestation from the workload for a few releases. Let's add a feature page describing how to use it.