mirror of
https://github.com/ansible-collections/community.mysql.git
synced 2025-04-05 10:10:32 -07:00
mysql_user: deprecate alias user for name argument (#670)
* mysql_user: deprecate alias user for name argument * Fix module and tests
This commit is contained in:
parent
0de9685cf1
commit
59c26211ca
4 changed files with 16 additions and 8 deletions
2
changelogs/fragments/0-mysql_user.yml
Normal file
2
changelogs/fragments/0-mysql_user.yml
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
breaking_changes:
|
||||||
|
- mysql_user - the ``user`` alias of the ``name`` argument has been deprecated and will be removed in collection version 5.0.0. Use the ``name`` argument instead.
|
|
@ -439,7 +439,13 @@ from ansible.module_utils._text import to_native
|
||||||
def main():
|
def main():
|
||||||
argument_spec = mysql_common_argument_spec()
|
argument_spec = mysql_common_argument_spec()
|
||||||
argument_spec.update(
|
argument_spec.update(
|
||||||
user=dict(type='str', required=True, aliases=['name']),
|
name=dict(type='str', required=True, aliases=['user'], deprecated_aliases=[
|
||||||
|
{
|
||||||
|
'name': 'user',
|
||||||
|
'version': '5.0.0',
|
||||||
|
'collection_name': 'community.mysql',
|
||||||
|
}],
|
||||||
|
),
|
||||||
password=dict(type='str', no_log=True),
|
password=dict(type='str', no_log=True),
|
||||||
encrypted=dict(type='bool', default=False),
|
encrypted=dict(type='bool', default=False),
|
||||||
host=dict(type='str', default='localhost'),
|
host=dict(type='str', default='localhost'),
|
||||||
|
@ -471,7 +477,7 @@ def main():
|
||||||
)
|
)
|
||||||
login_user = module.params["login_user"]
|
login_user = module.params["login_user"]
|
||||||
login_password = module.params["login_password"]
|
login_password = module.params["login_password"]
|
||||||
user = module.params["user"]
|
user = module.params["name"]
|
||||||
password = module.params["password"]
|
password = module.params["password"]
|
||||||
encrypted = module.boolean(module.params["encrypted"])
|
encrypted = module.boolean(module.params["encrypted"])
|
||||||
host = module.params["host"].lower()
|
host = module.params["host"].lower()
|
||||||
|
|
|
@ -64,7 +64,7 @@
|
||||||
- name: Issue-265 | Remove blank mysql user with hosts=all (expect changed)
|
- name: Issue-265 | Remove blank mysql user with hosts=all (expect changed)
|
||||||
mysql_user:
|
mysql_user:
|
||||||
<<: *mysql_params
|
<<: *mysql_params
|
||||||
user: ""
|
name: ""
|
||||||
host_all: true
|
host_all: true
|
||||||
state: absent
|
state: absent
|
||||||
force_context: yes
|
force_context: yes
|
||||||
|
@ -78,7 +78,7 @@
|
||||||
- name: Issue-265 | Remove blank mysql user with hosts=all (expect ok)
|
- name: Issue-265 | Remove blank mysql user with hosts=all (expect ok)
|
||||||
mysql_user:
|
mysql_user:
|
||||||
<<: *mysql_params
|
<<: *mysql_params
|
||||||
user: ""
|
name: ""
|
||||||
host_all: true
|
host_all: true
|
||||||
force_context: yes
|
force_context: yes
|
||||||
state: absent
|
state: absent
|
||||||
|
@ -151,7 +151,7 @@
|
||||||
- name: Issue-265 | Remove blank mysql user with hosts=all (expect changed)
|
- name: Issue-265 | Remove blank mysql user with hosts=all (expect changed)
|
||||||
mysql_user:
|
mysql_user:
|
||||||
<<: *mysql_params
|
<<: *mysql_params
|
||||||
user: ""
|
name: ""
|
||||||
host_all: true
|
host_all: true
|
||||||
state: absent
|
state: absent
|
||||||
force_context: no
|
force_context: no
|
||||||
|
@ -165,7 +165,7 @@
|
||||||
- name: Issue-265 | Remove blank mysql user with hosts=all (expect ok)
|
- name: Issue-265 | Remove blank mysql user with hosts=all (expect ok)
|
||||||
mysql_user:
|
mysql_user:
|
||||||
<<: *mysql_params
|
<<: *mysql_params
|
||||||
user: ""
|
name: ""
|
||||||
host_all: true
|
host_all: true
|
||||||
force_context: no
|
force_context: no
|
||||||
state: absent
|
state: absent
|
||||||
|
|
|
@ -66,7 +66,7 @@
|
||||||
- name: Idempotency | Remove blank user with hosts=all (expect changed)
|
- name: Idempotency | Remove blank user with hosts=all (expect changed)
|
||||||
mysql_user:
|
mysql_user:
|
||||||
<<: *mysql_params
|
<<: *mysql_params
|
||||||
user: ""
|
name: ""
|
||||||
host_all: true
|
host_all: true
|
||||||
state: absent
|
state: absent
|
||||||
register: result
|
register: result
|
||||||
|
@ -79,7 +79,7 @@
|
||||||
- name: Idempotency | Remove blank user with hosts=all (expect ok)
|
- name: Idempotency | Remove blank user with hosts=all (expect ok)
|
||||||
mysql_user:
|
mysql_user:
|
||||||
<<: *mysql_params
|
<<: *mysql_params
|
||||||
user: ""
|
name: ""
|
||||||
host_all: true
|
host_all: true
|
||||||
state: absent
|
state: absent
|
||||||
register: result
|
register: result
|
||||||
|
|
Loading…
Add table
Reference in a new issue