set ephemeral disks off by default (#761)

This commit is contained in:
bmc-msft
2021-04-01 16:26:17 -04:00
committed by GitHub
parent f6adad3ed9
commit 624a7f77e8

View File

@ -1279,7 +1279,7 @@ class Scaleset(Endpoint):
vm_sku: Optional[str] = "Standard_D2s_v3", vm_sku: Optional[str] = "Standard_D2s_v3",
region: Optional[primitives.Region] = None, region: Optional[primitives.Region] = None,
spot_instances: bool = False, spot_instances: bool = False,
ephemeral_os_disks: bool = True, ephemeral_os_disks: bool = False,
tags: Optional[Dict[str, str]] = None, tags: Optional[Dict[str, str]] = None,
) -> models.Scaleset: ) -> models.Scaleset:
self.logger.debug("create scaleset") self.logger.debug("create scaleset")