Skip to content

Commit

Permalink
Fix azure_rm_webapp fails when state is 'absent' and app service does…
Browse files Browse the repository at this point in the history
… not exist (#1079)
  • Loading branch information
Fred-sun authored Mar 30, 2023
1 parent b49ac66 commit 0e1fba3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugins/modules/azure_rm_webapp.py
Original file line number Diff line number Diff line change
Expand Up @@ -776,7 +776,7 @@ def exec_module(self, **kwargs):
self.log('Web App instance deleted')

else:
self.fail("Web app {0} not exists.".format(self.name))
self.log("Web app {0} not exists.".format(self.name))

if to_be_updated:
self.log('Need to Create/Update web app')
Expand Down

0 comments on commit 0e1fba3

Please sign in to comment.