فهرست منبع

Made SG network_id optional

jatin 9 سال پیش
والد
کامیت
4303d4a9c3
1فایلهای تغییر یافته به همراه1 افزوده شده و 1 حذف شده
  1. 1 1
      cloudbridge/cloud/providers/azure/services.py

+ 1 - 1
cloudbridge/cloud/providers/azure/services.py

@@ -88,7 +88,7 @@ class AzureSecurityGroupService(BaseSecurityGroupService):
                for sg in self.provider.azure_client.list_security_group()]
         return ClientPagedResultList(self.provider, sgs, limit, marker)
 
-    def create(self, name, description, network_id):
+    def create(self, name, description, network_id=None):
         parameters = {"location": self.provider.region_name,
                       'tags': {'Name': name}}