mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-07 05:42:50 +00:00
Bump dependency versions to avoid conflicts (#54443)
* Bump dependency versions to avoid conflicts * Fix module code to support newer SDK packages * Fix keyvault module are upgrading deps
This commit is contained in:
@@ -192,7 +192,8 @@ class AzureRMFunctionApp(AzureRMModuleBase):
|
||||
resource_group_name=self.resource_group,
|
||||
name=self.name
|
||||
)
|
||||
exists = True
|
||||
# Newer SDK versions (0.40.0+) seem to return None if it doesn't exist instead of raising CloudError
|
||||
exists = function_app is not None
|
||||
except CloudError as exc:
|
||||
exists = False
|
||||
|
||||
|
||||
Reference in New Issue
Block a user