From bcd9fce543b18631b355196ec7f8472712691bd6 Mon Sep 17 00:00:00 2001 From: Brian Caswell Date: Wed, 31 Mar 2021 17:18:50 -0400 Subject: [PATCH] set ephemeral disks off by default Apparently, different regions can have different disk requirements for the same VM sku. Until we can include identifying what the VM requirements are on a per-region basis, this should be off by default. --- src/cli/onefuzz/api.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cli/onefuzz/api.py b/src/cli/onefuzz/api.py index 2c441b86aa..5469cfddd4 100644 --- a/src/cli/onefuzz/api.py +++ b/src/cli/onefuzz/api.py @@ -1279,7 +1279,7 @@ def create( vm_sku: Optional[str] = "Standard_D2s_v3", region: Optional[primitives.Region] = None, spot_instances: bool = False, - ephemeral_os_disks: bool = True, + ephemeral_os_disks: bool = False, tags: Optional[Dict[str, str]] = None, ) -> models.Scaleset: self.logger.debug("create scaleset")