mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-10-01 01:36:09 -04:00
0eb4a7831b
* Extend azure-snp-report-verify to also report fw SVNs. * Add workflow based on azure-cvm to get maa-jwt and verify it on a second runner.
13 lines
452 B
YAML
13 lines
452 B
YAML
name: Azure SNP Reporter
|
|
description: "Get SNP MAA statement from Azure."
|
|
inputs:
|
|
outputPath:
|
|
description: "Path to put signed JWT into."
|
|
required: true
|
|
runs:
|
|
using: "composite" # some azure SNP-enabled machine.
|
|
steps:
|
|
- name: Fetch report
|
|
shell: bash
|
|
run: docker run --rm --privileged -v/sys/kernel/security:/sys/kernel/security ghcr.io/edgelesssys/constellation/azure-snp-reporter | tail -n 1 > ${{ inputs.outputPath }}
|