summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZim Kalinowski <zikalino@microsoft.com>2019-02-18 14:20:30 +0800
committerToshio Kuratomi <a.badger@gmail.com>2019-02-18 10:17:50 -0800
commit92e62a1bf1e3d35a4188fe777bc804017063ff8e (patch)
treefc41cc79d6499eff2893280d7964fbce1e255722
parentef54e0410cd547f0d5d6ed1a6621f7dcfc7c709e (diff)
downloadansible-92e62a1bf1e3d35a4188fe777bc804017063ff8e.tar.gz
resolved merge conflicts
-rw-r--r--changelogs/fragments/52389-mysqldatabase-fix-force-update.yaml2
-rw-r--r--lib/ansible/modules/cloud/azure/azure_rm_mysqldatabase.py2
2 files changed, 4 insertions, 0 deletions
diff --git a/changelogs/fragments/52389-mysqldatabase-fix-force-update.yaml b/changelogs/fragments/52389-mysqldatabase-fix-force-update.yaml
new file mode 100644
index 0000000000..8fef766e69
--- /dev/null
+++ b/changelogs/fragments/52389-mysqldatabase-fix-force-update.yaml
@@ -0,0 +1,2 @@
+bugfixes:
+ - azure_rm_postgresqldatabase - fix force_update bug. \ No newline at end of file
diff --git a/lib/ansible/modules/cloud/azure/azure_rm_mysqldatabase.py b/lib/ansible/modules/cloud/azure/azure_rm_mysqldatabase.py
index 39a62ea213..8a74beedb0 100644
--- a/lib/ansible/modules/cloud/azure/azure_rm_mysqldatabase.py
+++ b/lib/ansible/modules/cloud/azure/azure_rm_mysqldatabase.py
@@ -146,6 +146,7 @@ class AzureRMDatabases(AzureRMModuleBase):
self.resource_group = None
self.server_name = None
self.name = None
+ self.force_update = None
self.parameters = dict()
self.results = dict(changed=False)
@@ -200,6 +201,7 @@ class AzureRMDatabases(AzureRMModuleBase):
if not self.check_mode:
self.delete_mysqldatabase()
else:
+ self.fail("Database properties cannot be updated without setting 'force_update' option")
self.to_do = Actions.NoAction
if (self.to_do == Actions.Create) or (self.to_do == Actions.Update):