mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-04-30 22:31:25 -07: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:
parent
ea2fa07e23
commit
8b1b22ddc7
8 changed files with 78 additions and 57 deletions
|
@ -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
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue