diff --git a/lisa/sut_orchestrator/azure/features.py b/lisa/sut_orchestrator/azure/features.py index 94094a9d5..f6043a5a3 100644 --- a/lisa/sut_orchestrator/azure/features.py +++ b/lisa/sut_orchestrator/azure/features.py @@ -3237,6 +3237,9 @@ class AzureFileShare(AzureFeatureMixin, Feature): file_share_names: List[str], environment: Environment, allow_shared_key_access: bool = False, + sku: str = "Standard_LRS", + kind: str = "StorageV2", + enable_https_traffic_only: bool = True, ) -> Dict[str, str]: platform: AzurePlatform = self._platform # type: ignore information = environment.get_information() @@ -3254,6 +3257,9 @@ class AzureFileShare(AzureFeatureMixin, Feature): resource_group_name=resource_group_name, location=location, log=self._log, + sku=sku, + kind=kind, + enable_https_traffic_only=enable_https_traffic_only, allow_shared_key_access=allow_shared_key_access, )