Add TPM support for Qemu VMs

This commit is contained in:
grossmj 2023-01-04 18:52:46 +08:00
parent 313966548f
commit 2c015e695d
2 changed files with 4 additions and 0 deletions

View File

@ -55,6 +55,7 @@ export class Properties {
extra_hosts: string;
extra_volumes: string[];
replicate_network_connection_state: boolean;
tpm: boolean;
}
export class Node {

View File

@ -238,6 +238,9 @@
<mat-form-field class="form-field">
<input matInput type="text" [(ngModel)]="node.properties.options" placeholder="Options" />
</mat-form-field>
<br /><mat-checkbox [(ngModel)]="node.properties.tpm">
Enable the Trusted Platform Module (TPM)
</mat-checkbox>
</mat-card-content>
</mat-card>
</mat-tab>