(&self, vm_config: &str)
| 177 | } |
| 178 | |
| 179 | async fn ensure_kms_allowed(&self, vm_config: &str) -> Result<BootInfo> { |
| 180 | let att = self.ensure_attested()?; |
| 181 | self.ensure_app_attestation_allowed(att, true, false, vm_config) |
| 182 | .await |
| 183 | .map(|c| c.boot_info) |
| 184 | } |
| 185 | |
| 186 | async fn ensure_app_boot_allowed(&self, vm_config: &str) -> Result<BootConfig> { |
| 187 | let att = self.ensure_attested()?; |
no test coverage detected