Skip to content

Commit

Permalink
Reference AllowedTCBStatuses in manifest docs (#375)
Browse files Browse the repository at this point in the history
Signed-off-by: Daniel Weiße <[email protected]>
Co-authored-by: Thomas Tendyck <[email protected]>
  • Loading branch information
daniel-weisse and thomasten authored Feb 22, 2023
1 parent 1f9dbc3 commit e903cb9
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion docs/docs/workflows/define-manifest.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ The `Packages` section of the manifest lists all the secure enclave software pac
* `ProductID`: an integer that uniquely identifies the enclave software for a given `SignerID`. Can only be used in conjunction with `SignerID`.
* `SecurityVersion`: an integer that reflects the security-patch level of the enclave software. Can only be used in conjunction with `SignerID`.
* `Debug`: set to `true` if the enclave is to be run in debug mode. This allows you to experiment with deploying your application with MarbleRun without having to worry about setting correct values for the above properties, but note that enclaves in debug mode aren't secure.
* `AcceptedTCBStatuses`: a list of acceptable TCB statuses a Marble is allowed to start with. You can use this option to allow Marbles to run on machines whose TCB is out-of-date.

The following gives an example of a simple `Packages` section with made-up values.

Expand All @@ -23,7 +24,11 @@ The following gives an example of a simple `Packages` section with made-up value
"Packages": {
"backend": {
"UniqueID": "6b2822ac2585040d4b9397675d54977a71ef292ab5b3c0a6acceca26074ae585",
"Debug": false
"Debug": false,
"AcceptedTCBStatuses": [
"ConfigurationNeeded",
"ConfigurationAndSWHardeningNeeded"
]
},
"frontend": {
"SignerID": "43361affedeb75affee9baec7e054a5e14883213e5a121b67d74a0e12e9d2b7a",
Expand Down

0 comments on commit e903cb9

Please sign in to comment.