1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

Remove deprecated features, bump version to 6.0.0 (#5326)

* Bump version to 6.0.0.

* sender option is now required.

* Default of want_proxmox_nodes_ansible_host changed from true to false.

* username is now an alias of user, and no longer of workspace.

* Remove deprecated return values in favor of end_state.

* Remove debug option.

* Change default of ignore_volatile_options from true to false.

* gitlab_group must now always contain the full path.

* Change default of norc from false to ture.

* Remove deprecated property.

* Add PR URL.

* Adjust bitbucket unit tests.

* Adjust module_helper integration test.
This commit is contained in:
Felix Fontein 2022-10-25 08:07:21 +02:00 committed by GitHub
parent 091bdc77c3
commit 2830a3452d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
28 changed files with 70 additions and 243 deletions

View file

@ -0,0 +1,11 @@
removed_features:
- "mail callback plugin - the ``sender`` option is now required (https://github.com/ansible-collections/community.general/pull/5326)."
- "proxmox inventory plugin - the default of the ``want_proxmox_nodes_ansible_host`` option changed from ``true`` to ``false`` (https://github.com/ansible-collections/community.general/pull/5326)."
- "bitbucket* modules - ``username`` is no longer an alias of ``workspace``, but of ``user`` (https://github.com/ansible-collections/community.general/pull/5326)."
- "keycloak_group - the return value ``group`` has been removed. Use ``end_state`` instead (https://github.com/ansible-collections/community.general/pull/5326)."
- "keycloak_authentication - the return value ``flow`` has been removed. Use ``end_state`` instead (https://github.com/ansible-collections/community.general/pull/5326)."
- "vmadm - the ``debug`` option has been removed. It was not used anyway (https://github.com/ansible-collections/community.general/pull/5326)."
- "lxd_container - the default of the ``ignore_volatile_options`` option changed from ``true`` to ``false`` (https://github.com/ansible-collections/community.general/pull/5326)."
- "gitlab_group_members - ``gitlab_group`` must now always contain the full path, and no longer just the name or path (https://github.com/ansible-collections/community.general/pull/5326)."
- "gem - the default of the ``norc`` option changed from ``false`` to ``true`` (https://github.com/ansible-collections/community.general/pull/5326)."
- "module_helper module utils - remove the ``VarDict`` attribute from ``ModuleHelper``. Import ``VarDict`` from ``ansible_collections.community.general.plugins.module_utils.mh.mixins.vars`` instead (https://github.com/ansible-collections/community.general/pull/5326)."

View file

@ -5,7 +5,7 @@
namespace: community namespace: community
name: general name: general
version: 5.8.0 version: 6.0.0
readme: README.md readme: README.md
authors: authors:
- Ansible (https://github.com/ansible) - Ansible (https://github.com/ansible)

View file

@ -49,8 +49,9 @@ options:
sender: sender:
description: description:
- Mail sender. - Mail sender.
- Note that this will be required from community.general 6.0.0 on. - This is required since community.general 6.0.0.
type: str type: str
required: true
ini: ini:
- section: callback_mail - section: callback_mail
key: sender key: sender
@ -105,10 +106,6 @@ class CallbackModule(CallbackBase):
super(CallbackModule, self).set_options(task_keys=task_keys, var_options=var_options, direct=direct) super(CallbackModule, self).set_options(task_keys=task_keys, var_options=var_options, direct=direct)
self.sender = self.get_option('sender') self.sender = self.get_option('sender')
if self.sender is None:
self._display.deprecated(
'The sender for the mail callback has not been specified. This will be an error in the future',
version='6.0.0', collection_name='community.general')
self.to = self.get_option('to') self.to = self.get_option('to')
self.smtphost = self.get_option('mta') self.smtphost = self.get_option('mta')
self.smtpport = self.get_option('mtaport') self.smtpport = self.get_option('mtaport')

View file

@ -27,8 +27,10 @@ options:
description: description:
- The username. - The username.
- If not set the environment variable C(BITBUCKET_USERNAME) will be used. - If not set the environment variable C(BITBUCKET_USERNAME) will be used.
- I(username) is an alias of I(user) since community.genreal 6.0.0. It was an alias of I(workspace) before.
type: str type: str
version_added: 4.0.0 version_added: 4.0.0
aliases: [ username ]
password: password:
description: description:
- The App password. - The App password.

View file

@ -113,10 +113,9 @@ DOCUMENTATION = '''
description: description:
- Whether to set C(ansbile_host) for proxmox nodes. - Whether to set C(ansbile_host) for proxmox nodes.
- When set to C(true) (default), will use the first available interface. This can be different from what you expect. - When set to C(true) (default), will use the first available interface. This can be different from what you expect.
- This currently defaults to C(true), but the default is deprecated since community.general 4.8.0. - The default of this option changed from C(true) to C(false) in community.general 6.0.0.
The default will change to C(false) in community.general 6.0.0. To avoid a deprecation warning, please
set this parameter explicitly.
type: bool type: bool
default: false
filters: filters:
version_added: 4.6.0 version_added: 4.6.0
description: A list of Jinja templates that allow filtering hosts. description: A list of Jinja templates that allow filtering hosts.
@ -567,14 +566,6 @@ class InventoryModule(BaseInventoryPlugin, Constructable, Cacheable):
self.inventory.add_group(nodes_group) self.inventory.add_group(nodes_group)
want_proxmox_nodes_ansible_host = self.get_option("want_proxmox_nodes_ansible_host") want_proxmox_nodes_ansible_host = self.get_option("want_proxmox_nodes_ansible_host")
if want_proxmox_nodes_ansible_host is None:
display.deprecated(
'The want_proxmox_nodes_ansible_host option of the community.general.proxmox inventory plugin'
' currently defaults to `true`, but this default has been deprecated and will change to `false`'
' in community.general 6.0.0. To keep the current behavior and remove this deprecation warning,'
' explicitly set `want_proxmox_nodes_ansible_host` to `true` in your inventory configuration',
version='6.0.0', collection_name='community.general')
want_proxmox_nodes_ansible_host = True
# gather vm's on nodes # gather vm's on nodes
self._get_auth() self._get_auth()

View file

@ -13,7 +13,7 @@ from ansible_collections.community.general.plugins.module_utils.mh.base import M
from ansible_collections.community.general.plugins.module_utils.mh.mixins.cmd import CmdMixin from ansible_collections.community.general.plugins.module_utils.mh.mixins.cmd import CmdMixin
from ansible_collections.community.general.plugins.module_utils.mh.mixins.state import StateMixin from ansible_collections.community.general.plugins.module_utils.mh.mixins.state import StateMixin
from ansible_collections.community.general.plugins.module_utils.mh.mixins.deps import DependencyMixin from ansible_collections.community.general.plugins.module_utils.mh.mixins.deps import DependencyMixin
from ansible_collections.community.general.plugins.module_utils.mh.mixins.vars import VarsMixin, VarDict as _VD from ansible_collections.community.general.plugins.module_utils.mh.mixins.vars import VarsMixin
from ansible_collections.community.general.plugins.module_utils.mh.mixins.deprecate_attrs import DeprecateAttrsMixin from ansible_collections.community.general.plugins.module_utils.mh.mixins.deprecate_attrs import DeprecateAttrsMixin
@ -25,8 +25,6 @@ class ModuleHelper(DeprecateAttrsMixin, VarsMixin, DependencyMixin, ModuleHelper
change_params = () change_params = ()
facts_params = () facts_params = ()
VarDict = _VD # for backward compatibility, will be deprecated at some point
def __init__(self, module=None): def __init__(self, module=None):
super(ModuleHelper, self).__init__(module) super(ModuleHelper, self).__init__(module)
for name, value in self.module.params.items(): for name, value in self.module.params.items():
@ -38,16 +36,6 @@ class ModuleHelper(DeprecateAttrsMixin, VarsMixin, DependencyMixin, ModuleHelper
fact=name in self.facts_params, fact=name in self.facts_params,
) )
self._deprecate_attr(
attr="VarDict",
msg="ModuleHelper.VarDict attribute is deprecated, use VarDict from "
"the ansible_collections.community.general.plugins.module_utils.mh.mixins.vars module instead",
version="6.0.0",
collection_name="community.general",
target=ModuleHelper,
module=self.module,
)
def update_output(self, **kwargs): def update_output(self, **kwargs):
self.update_vars(meta={"output": True}, **kwargs) self.update_vars(meta={"output": True}, **kwargs)

View file

@ -28,7 +28,7 @@ class BitbucketHelper:
# TODO: # TODO:
# - Rename user to username once current usage of username is removed # - Rename user to username once current usage of username is removed
# - Alias user to username and deprecate it # - Alias user to username and deprecate it
user=dict(type='str', fallback=(env_fallback, ['BITBUCKET_USERNAME'])), user=dict(type='str', aliases=['username'], fallback=(env_fallback, ['BITBUCKET_USERNAME'])),
password=dict(type='str', no_log=True, fallback=(env_fallback, ['BITBUCKET_PASSWORD'])), password=dict(type='str', no_log=True, fallback=(env_fallback, ['BITBUCKET_PASSWORD'])),
) )

View file

@ -50,10 +50,10 @@ options:
- If set to C(true), options starting with C(volatile.) are ignored. As a result, - If set to C(true), options starting with C(volatile.) are ignored. As a result,
they are reapplied for each execution. they are reapplied for each execution.
- This default behavior can be changed by setting this option to C(false). - This default behavior can be changed by setting this option to C(false).
- The current default value C(true) is deprecated since community.general 4.0.0, - The default value changed from C(true) to C(false) in community.general 6.0.0.
and will change to C(false) in community.general 6.0.0.
type: bool type: bool
required: false required: false
default: false
version_added: 3.7.0 version_added: 3.7.0
profiles: profiles:
description: description:
@ -769,6 +769,7 @@ def main():
), ),
ignore_volatile_options=dict( ignore_volatile_options=dict(
type='bool', type='bool',
default=False,
), ),
devices=dict( devices=dict(
type='dict', type='dict',
@ -832,16 +833,6 @@ def main():
supports_check_mode=False, supports_check_mode=False,
) )
if module.params['ignore_volatile_options'] is None:
module.params['ignore_volatile_options'] = True
module.deprecate(
'If the keyword "volatile" is used in a playbook in the config'
'section, a "changed" message will appear with every run, even without a change'
'to the playbook.'
'This will change in the future. Please test your scripts'
'by "ignore_volatile_options: false". To keep the old behavior, set that option explicitly to "true"',
version='6.0.0', collection_name='community.general')
lxd_manage = LXDContainerManagement(module=module) lxd_manage = LXDContainerManagement(module=module)
lxd_manage.run() lxd_manage.run()

View file

@ -552,7 +552,7 @@ def create_payload(module, uuid):
# Create the JSON payload (vmdef) and return the filename. # Create the JSON payload (vmdef) and return the filename.
# Filter out the few options that are not valid VM properties. # Filter out the few options that are not valid VM properties.
module_options = ['debug', 'force', 'state'] module_options = ['force', 'state']
# @TODO make this a simple {} comprehension as soon as py2 is ditched # @TODO make this a simple {} comprehension as soon as py2 is ditched
# @TODO {k: v for k, v in p.items() if k not in module_options} # @TODO {k: v for k, v in p.items() if k not in module_options}
vmdef = dict([(k, v) for k, v in module.params.items() if k not in module_options and v]) vmdef = dict([(k, v) for k, v in module.params.items() if k not in module_options and v])
@ -689,7 +689,6 @@ def main():
nics=dict(type='list', elements='dict'), nics=dict(type='list', elements='dict'),
resolvers=dict(type='list', elements='str'), resolvers=dict(type='list', elements='str'),
filesystems=dict(type='list', elements='dict'), filesystems=dict(type='list', elements='dict'),
debug=dict(type='bool', removed_in_version='6.0.0', removed_from_collection='community.general'),
) )
# Add our 'simple' options to options dict. # Add our 'simple' options to options dict.

View file

@ -173,39 +173,6 @@ msg:
returned: always returned: always
type: str type: str
flow:
description:
- JSON representation for the authentication.
- Deprecated return value, it will be removed in community.general 6.0.0. Please use the return value I(end_state) instead.
returned: on success
type: dict
sample: {
"alias": "Copy of first broker login",
"authenticationExecutions": [
{
"alias": "review profile config",
"authenticationConfig": {
"alias": "review profile config",
"config": { "update.profile.on.first.login": "missing" },
"id": "6f09e4fb-aad4-496a-b873-7fa9779df6d7"
},
"configurable": true,
"displayName": "Review Profile",
"id": "8f77dab8-2008-416f-989e-88b09ccf0b4c",
"index": 0,
"level": 0,
"providerId": "idp-review-profile",
"requirement": "REQUIRED",
"requirementChoices": [ "REQUIRED", "ALTERNATIVE", "DISABLED" ]
}
],
"builtIn": false,
"description": "Actions taken after first broker login with identity provider account, which is not yet linked to any Keycloak account",
"id": "bc228863-5887-4297-b898-4d988f8eaa5c",
"providerId": "basic-flow",
"topLevel": true
}
end_state: end_state:
description: Representation of the authentication after module execution. description: Representation of the authentication after module execution.
returned: on success returned: on success
@ -407,7 +374,6 @@ def main():
result['diff'] = dict(before='', after='') result['diff'] = dict(before='', after='')
result['changed'] = False result['changed'] = False
result['end_state'] = {} result['end_state'] = {}
result['flow'] = result['end_state']
result['msg'] = new_auth_repr["alias"] + ' absent' result['msg'] = new_auth_repr["alias"] + ' absent'
module.exit_json(**result) module.exit_json(**result)
@ -440,7 +406,6 @@ def main():
if exec_repr is not None: if exec_repr is not None:
auth_repr["authenticationExecutions"] = exec_repr auth_repr["authenticationExecutions"] = exec_repr
result['end_state'] = auth_repr result['end_state'] = auth_repr
result['flow'] = result['end_state']
else: else:
if state == 'present': if state == 'present':
@ -478,7 +443,6 @@ def main():
if exec_repr is not None: if exec_repr is not None:
auth_repr["authenticationExecutions"] = exec_repr auth_repr["authenticationExecutions"] = exec_repr
result['end_state'] = auth_repr result['end_state'] = auth_repr
result['flow'] = result['end_state']
else: else:
# Process a deletion (because state was not 'present') # Process a deletion (because state was not 'present')

View file

@ -214,59 +214,6 @@ end_state:
manage: true manage: true
manageMembership: true manageMembership: true
view: true view: true
group:
description:
- Representation of the group after module execution.
- Deprecated return value, it will be removed in community.general 6.0.0. Please use the return value I(end_state) instead.
returned: always
type: complex
contains:
id:
description: GUID that identifies the group.
type: str
returned: always
sample: 23f38145-3195-462c-97e7-97041ccea73e
name:
description: Name of the group.
type: str
returned: always
sample: grp-test-123
attributes:
description: Attributes applied to this group.
type: dict
returned: always
sample:
attr1: ["val1", "val2", "val3"]
path:
description: URI path to the group.
type: str
returned: always
sample: /grp-test-123
realmRoles:
description: An array of the realm-level roles granted to this group.
type: list
returned: always
sample: []
subGroups:
description: A list of groups that are children of this group. These groups will have the same parameters as
documented here.
type: list
returned: always
clientRoles:
description: A list of client-level roles granted to this group.
type: list
returned: always
sample: []
access:
description: A dict describing the accesses you have to this group based on the credentials used.
type: dict
returned: always
sample:
manage: true
manageMembership: true
view: true
''' '''
from ansible_collections.community.general.plugins.module_utils.identity.keycloak.keycloak import KeycloakAPI, camel, \ from ansible_collections.community.general.plugins.module_utils.identity.keycloak.keycloak import KeycloakAPI, camel, \
@ -356,7 +303,6 @@ def main():
result['diff'] = dict(before='', after='') result['diff'] = dict(before='', after='')
result['changed'] = False result['changed'] = False
result['end_state'] = {} result['end_state'] = {}
result['group'] = result['end_state']
result['msg'] = 'Group does not exist; doing nothing.' result['msg'] = 'Group does not exist; doing nothing.'
module.exit_json(**result) module.exit_json(**result)
@ -377,7 +323,6 @@ def main():
after_group = kc.get_group_by_name(name, realm) after_group = kc.get_group_by_name(name, realm)
result['end_state'] = after_group result['end_state'] = after_group
result['group'] = result['end_state']
result['msg'] = 'Group {name} has been created with ID {id}'.format(name=after_group['name'], result['msg'] = 'Group {name} has been created with ID {id}'.format(name=after_group['name'],
id=after_group['id']) id=after_group['id'])
@ -391,7 +336,6 @@ def main():
if desired_group == before_group: if desired_group == before_group:
result['changed'] = False result['changed'] = False
result['end_state'] = desired_group result['end_state'] = desired_group
result['group'] = result['end_state']
result['msg'] = "No changes required to group {name}.".format(name=before_group['name']) result['msg'] = "No changes required to group {name}.".format(name=before_group['name'])
module.exit_json(**result) module.exit_json(**result)
@ -410,7 +354,6 @@ def main():
after_group = kc.get_group_by_groupid(desired_group['id'], realm=realm) after_group = kc.get_group_by_groupid(desired_group['id'], realm=realm)
result['end_state'] = after_group result['end_state'] = after_group
result['group'] = result['end_state']
result['msg'] = "Group {id} has been updated".format(id=after_group['id']) result['msg'] = "Group {id} has been updated".format(id=after_group['id'])
module.exit_json(**result) module.exit_json(**result)
@ -430,7 +373,6 @@ def main():
kc.delete_group(groupid=gid, realm=realm) kc.delete_group(groupid=gid, realm=realm)
result['end_state'] = {} result['end_state'] = {}
result['group'] = result['end_state']
result['msg'] = "Group {name} has been deleted".format(name=before_group['name']) result['msg'] = "Group {name} has been deleted".format(name=before_group['name'])

View file

@ -70,11 +70,10 @@ options:
version_added: 3.3.0 version_added: 3.3.0
norc: norc:
type: bool type: bool
default: true
description: description:
- Avoid loading any C(.gemrc) file. Ignored for RubyGems prior to 2.5.2. - Avoid loading any C(.gemrc) file. Ignored for RubyGems prior to 2.5.2.
- The current default value C(false) has been deprecated in community.general 5.0.0. - The default changed from C(false) to C(true) in community.general 6.0.0.
Explicitly specify the value to prevent the deprecation warning to be shown."
- From community.general 6.0.0 on, the default will be changed to C(true).
version_added: 3.3.0 version_added: 3.3.0
env_shebang: env_shebang:
description: description:
@ -298,7 +297,7 @@ def main():
user_install=dict(required=False, default=True, type='bool'), user_install=dict(required=False, default=True, type='bool'),
install_dir=dict(required=False, type='path'), install_dir=dict(required=False, type='path'),
bindir=dict(type='path'), bindir=dict(type='path'),
norc=dict(type='bool'), norc=dict(type='bool', default=True),
pre_release=dict(required=False, default=False, type='bool'), pre_release=dict(required=False, default=False, type='bool'),
include_doc=dict(required=False, default=False, type='bool'), include_doc=dict(required=False, default=False, type='bool'),
env_shebang=dict(required=False, default=False, type='bool'), env_shebang=dict(required=False, default=False, type='bool'),
@ -316,12 +315,6 @@ def main():
module.fail_json(msg="Cannot maintain state=latest when installing from local source") module.fail_json(msg="Cannot maintain state=latest when installing from local source")
if module.params['user_install'] and module.params['install_dir']: if module.params['user_install'] and module.params['install_dir']:
module.fail_json(msg="install_dir requires user_install=false") module.fail_json(msg="install_dir requires user_install=false")
if module.params['norc'] is None:
module.deprecate(
'The default of the norc option has been deprecated. It will be changed to `true`'
' in community.general 6.0.0. Specify an explicit value to get rid of this message',
version='6.0.0', collection_name='community.general')
module.params['norc'] = False
if not module.params['gem_source']: if not module.params['gem_source']:
module.params['gem_source'] = module.params['name'] module.params['gem_source'] = module.params['name']

View file

@ -27,10 +27,9 @@ options:
workspace: workspace:
description: description:
- The repository owner. - The repository owner.
- Alias I(username) has been deprecated and will become an alias of I(user) in community.general 6.0.0. - I(username) used to be an alias of this option. Since community.general 6.0.0 it is an alias of I(user).
type: str type: str
required: true required: true
aliases: [ username ]
key: key:
description: description:
- The SSH public key. - The SSH public key.
@ -218,8 +217,7 @@ def main():
argument_spec.update( argument_spec.update(
repository=dict(type='str', required=True), repository=dict(type='str', required=True),
workspace=dict( workspace=dict(
type='str', aliases=['username'], required=True, type='str', required=True,
deprecated_aliases=[dict(name='username', version='6.0.0', collection_name='community.general')],
), ),
key=dict(type='str', no_log=False), key=dict(type='str', no_log=False),
label=dict(type='str', required=True), label=dict(type='str', required=True),

View file

@ -27,10 +27,9 @@ options:
workspace: workspace:
description: description:
- The repository owner. - The repository owner.
- Alias I(username) has been deprecated and will become an alias of I(user) in community.general 6.0.0. - I(username) used to be an alias of this option. Since community.general 6.0.0 it is an alias of I(user).
type: str type: str
required: true required: true
aliases: [ username ]
public_key: public_key:
description: description:
- The public key. - The public key.
@ -154,10 +153,7 @@ def main():
argument_spec = BitbucketHelper.bitbucket_argument_spec() argument_spec = BitbucketHelper.bitbucket_argument_spec()
argument_spec.update( argument_spec.update(
repository=dict(type='str', required=True), repository=dict(type='str', required=True),
workspace=dict( workspace=dict(type='str', required=True),
type='str', aliases=['username'], required=True,
deprecated_aliases=[dict(name='username', version='6.0.0', collection_name='community.general')],
),
public_key=dict(type='str'), public_key=dict(type='str'),
private_key=dict(type='str', no_log=True), private_key=dict(type='str', no_log=True),
state=dict(type='str', choices=['present', 'absent'], required=True), state=dict(type='str', choices=['present', 'absent'], required=True),

View file

@ -30,10 +30,9 @@ options:
workspace: workspace:
description: description:
- The repository owner. - The repository owner.
- Alias I(username) has been deprecated and will become an alias of I(user) in community.general 6.0.0. - I(username) used to be an alias of this option. Since community.general 6.0.0 it is an alias of I(user).
type: str type: str
required: true required: true
aliases: [ username ]
name: name:
description: description:
- The FQDN of the known host. - The FQDN of the known host.
@ -255,10 +254,7 @@ def main():
argument_spec = BitbucketHelper.bitbucket_argument_spec() argument_spec = BitbucketHelper.bitbucket_argument_spec()
argument_spec.update( argument_spec.update(
repository=dict(type='str', required=True), repository=dict(type='str', required=True),
workspace=dict( workspace=dict(type='str', required=True),
type='str', aliases=['username'], required=True,
deprecated_aliases=[dict(name='username', version='6.0.0', collection_name='community.general')],
),
name=dict(type='str', required=True), name=dict(type='str', required=True),
key=dict(type='str', no_log=False), key=dict(type='str', no_log=False),
state=dict(type='str', choices=['present', 'absent'], required=True), state=dict(type='str', choices=['present', 'absent'], required=True),

View file

@ -27,10 +27,9 @@ options:
workspace: workspace:
description: description:
- The repository owner. - The repository owner.
- Alias I(username) has been deprecated and will become an alias of I(user) in community.general 6.0.0. - I(username) used to be an alias of this option. Since community.general 6.0.0 it is an alias of I(user).
type: str type: str
required: true required: true
aliases: [ username ]
name: name:
description: description:
- The pipeline variable name. - The pipeline variable name.
@ -215,10 +214,7 @@ def main():
argument_spec = BitbucketHelper.bitbucket_argument_spec() argument_spec = BitbucketHelper.bitbucket_argument_spec()
argument_spec.update( argument_spec.update(
repository=dict(type='str', required=True), repository=dict(type='str', required=True),
workspace=dict( workspace=dict(type='str', required=True),
type='str', aliases=['username'], required=True,
deprecated_aliases=[dict(name='username', version='6.0.0', collection_name='community.general')],
),
name=dict(type='str', required=True), name=dict(type='str', required=True),
value=dict(type='str'), value=dict(type='str'),
secured=dict(type='bool', default=False), secured=dict(type='bool', default=False),

View file

@ -27,7 +27,7 @@ options:
gitlab_group: gitlab_group:
description: description:
- The C(full_path) of the GitLab group the member is added to/removed from. - The C(full_path) of the GitLab group the member is added to/removed from.
- Setting this to C(name) or C(path) is deprecated and will be removed in community.general 6.0.0. Use C(full_path) instead. - Setting this to C(name) or C(path) has been disallowed since community.general 6.0.0. Use C(full_path) instead.
required: true required: true
type: str type: str
gitlab_user: gitlab_user:
@ -176,12 +176,6 @@ class GitLabGroup(object):
for group in groups: for group in groups:
if group.full_path == gitlab_group: if group.full_path == gitlab_group:
return group.id return group.id
for group in groups:
if group.path == gitlab_group or group.name == gitlab_group:
self._module.deprecate(
msg="Setting 'gitlab_group' to 'name' or 'path' is deprecated. Use 'full_path' instead",
version="6.0.0", collection_name="community.general")
return group.id
# get all members in a group # get all members in a group
def get_members_in_a_group(self, gitlab_group_id): def get_members_in_a_group(self, gitlab_group_id):

View file

@ -25,10 +25,6 @@ options:
c: c:
description: cccc description: cccc
type: str type: str
trigger_depr_attr:
description: tries to access VarDict
type: bool
default: false
state: state:
description: test states description: test states
type: str type: str
@ -50,15 +46,12 @@ class MState(StateModuleHelper):
a=dict(type='int', required=True), a=dict(type='int', required=True),
b=dict(type='str'), b=dict(type='str'),
c=dict(type='str'), c=dict(type='str'),
trigger_depr_attr=dict(type='bool', default=False),
state=dict(type='str', choices=['join', 'b_x_a', 'c_x_a', 'both_x_a', 'nop'], default='join'), state=dict(type='str', choices=['join', 'b_x_a', 'c_x_a', 'both_x_a', 'nop'], default='join'),
), ),
) )
def __init_module__(self): def __init_module__(self):
self.vars.set('result', "abc", diff=True) self.vars.set('result', "abc", diff=True)
if self.vars.trigger_depr_attr:
dummy = self.VarDict
def state_join(self): def state_join(self):
self.vars['result'] = "".join([str(self.vars.a), str(self.vars.b), str(self.vars.c)]) self.vars['result'] = "".join([str(self.vars.a), str(self.vars.b), str(self.vars.c)])

View file

@ -70,25 +70,9 @@
a: 5 a: 5
b: foo b: foo
c: bar c: bar
trigger_depr_attr: true
state: both_x_a state: both_x_a
register: state5 register: state5
- ansible.builtin.set_fact:
vardict_gt29:
msg: >-
ModuleHelper.VarDict attribute is deprecated, use VarDict from the
ansible_collections.community.general.plugins.module_utils.mh.mixins.vars
module instead
version: 6.0.0
collection_name: community.general
vardict_29:
msg: >-
ModuleHelper.VarDict attribute is deprecated, use VarDict from the
ansible_collections.community.general.plugins.module_utils.mh.mixins.vars
module instead
version: 6.0.0
- name: assert state5 - name: assert state5
assert: assert:
that: that:
@ -97,6 +81,3 @@
- state5.c == "bar" - state5.c == "bar"
- state5.result == "foobarfoobarfoobarfoobarfoobar" - state5.result == "foobarfoobarfoobarfoobarfoobar"
- state5 is changed - state5 is changed
- vardict_depr in state5.deprecations
vars:
vardict_depr: '{{ (ansible_version.major == 2 and ansible_version.minor == 9) | ternary(vardict_29, vardict_gt29) }}'

View file

@ -12,7 +12,6 @@ plugins/modules/cloud/rackspace/rax_files.py validate-modules:parameter-state-in
plugins/modules/cloud/rackspace/rax_files_objects.py use-argspec-type-path plugins/modules/cloud/rackspace/rax_files_objects.py use-argspec-type-path
plugins/modules/cloud/rackspace/rax_scaling_group.py use-argspec-type-path # fix needed, expanduser() applied to dict values plugins/modules/cloud/rackspace/rax_scaling_group.py use-argspec-type-path # fix needed, expanduser() applied to dict values
plugins/modules/cloud/scaleway/scaleway_organization_info.py validate-modules:return-syntax-error plugins/modules/cloud/scaleway/scaleway_organization_info.py validate-modules:return-syntax-error
plugins/modules/cloud/smartos/vmadm.py validate-modules:parameter-type-not-in-doc # unused param - removed in 6.0.0
plugins/modules/cloud/spotinst/spotinst_aws_elastigroup.py validate-modules:parameter-list-no-elements plugins/modules/cloud/spotinst/spotinst_aws_elastigroup.py validate-modules:parameter-list-no-elements
plugins/modules/cloud/spotinst/spotinst_aws_elastigroup.py validate-modules:parameter-type-not-in-doc plugins/modules/cloud/spotinst/spotinst_aws_elastigroup.py validate-modules:parameter-type-not-in-doc
plugins/modules/cloud/spotinst/spotinst_aws_elastigroup.py validate-modules:undocumented-parameter plugins/modules/cloud/spotinst/spotinst_aws_elastigroup.py validate-modules:undocumented-parameter

View file

@ -7,7 +7,6 @@ plugins/modules/cloud/rackspace/rax_files.py validate-modules:parameter-state-in
plugins/modules/cloud/rackspace/rax_files_objects.py use-argspec-type-path plugins/modules/cloud/rackspace/rax_files_objects.py use-argspec-type-path
plugins/modules/cloud/rackspace/rax_scaling_group.py use-argspec-type-path # fix needed, expanduser() applied to dict values plugins/modules/cloud/rackspace/rax_scaling_group.py use-argspec-type-path # fix needed, expanduser() applied to dict values
plugins/modules/cloud/scaleway/scaleway_organization_info.py validate-modules:return-syntax-error plugins/modules/cloud/scaleway/scaleway_organization_info.py validate-modules:return-syntax-error
plugins/modules/cloud/smartos/vmadm.py validate-modules:parameter-type-not-in-doc # unused param - removed in 6.0.0
plugins/modules/cloud/spotinst/spotinst_aws_elastigroup.py validate-modules:parameter-list-no-elements plugins/modules/cloud/spotinst/spotinst_aws_elastigroup.py validate-modules:parameter-list-no-elements
plugins/modules/cloud/spotinst/spotinst_aws_elastigroup.py validate-modules:parameter-type-not-in-doc plugins/modules/cloud/spotinst/spotinst_aws_elastigroup.py validate-modules:parameter-type-not-in-doc
plugins/modules/cloud/spotinst/spotinst_aws_elastigroup.py validate-modules:undocumented-parameter plugins/modules/cloud/spotinst/spotinst_aws_elastigroup.py validate-modules:undocumented-parameter

View file

@ -7,7 +7,6 @@ plugins/modules/cloud/rackspace/rax_files.py validate-modules:parameter-state-in
plugins/modules/cloud/rackspace/rax_files_objects.py use-argspec-type-path plugins/modules/cloud/rackspace/rax_files_objects.py use-argspec-type-path
plugins/modules/cloud/rackspace/rax_scaling_group.py use-argspec-type-path # fix needed, expanduser() applied to dict values plugins/modules/cloud/rackspace/rax_scaling_group.py use-argspec-type-path # fix needed, expanduser() applied to dict values
plugins/modules/cloud/scaleway/scaleway_organization_info.py validate-modules:return-syntax-error plugins/modules/cloud/scaleway/scaleway_organization_info.py validate-modules:return-syntax-error
plugins/modules/cloud/smartos/vmadm.py validate-modules:parameter-type-not-in-doc # unused param - removed in 6.0.0
plugins/modules/cloud/spotinst/spotinst_aws_elastigroup.py validate-modules:parameter-list-no-elements plugins/modules/cloud/spotinst/spotinst_aws_elastigroup.py validate-modules:parameter-list-no-elements
plugins/modules/cloud/spotinst/spotinst_aws_elastigroup.py validate-modules:parameter-type-not-in-doc plugins/modules/cloud/spotinst/spotinst_aws_elastigroup.py validate-modules:parameter-type-not-in-doc
plugins/modules/cloud/spotinst/spotinst_aws_elastigroup.py validate-modules:undocumented-parameter plugins/modules/cloud/spotinst/spotinst_aws_elastigroup.py validate-modules:undocumented-parameter

View file

@ -7,7 +7,6 @@ plugins/modules/cloud/rackspace/rax_files.py validate-modules:parameter-state-in
plugins/modules/cloud/rackspace/rax_files_objects.py use-argspec-type-path plugins/modules/cloud/rackspace/rax_files_objects.py use-argspec-type-path
plugins/modules/cloud/rackspace/rax_scaling_group.py use-argspec-type-path # fix needed, expanduser() applied to dict values plugins/modules/cloud/rackspace/rax_scaling_group.py use-argspec-type-path # fix needed, expanduser() applied to dict values
plugins/modules/cloud/scaleway/scaleway_organization_info.py validate-modules:return-syntax-error plugins/modules/cloud/scaleway/scaleway_organization_info.py validate-modules:return-syntax-error
plugins/modules/cloud/smartos/vmadm.py validate-modules:parameter-type-not-in-doc # unused param - removed in 6.0.0
plugins/modules/cloud/spotinst/spotinst_aws_elastigroup.py validate-modules:parameter-list-no-elements plugins/modules/cloud/spotinst/spotinst_aws_elastigroup.py validate-modules:parameter-list-no-elements
plugins/modules/cloud/spotinst/spotinst_aws_elastigroup.py validate-modules:parameter-type-not-in-doc plugins/modules/cloud/spotinst/spotinst_aws_elastigroup.py validate-modules:parameter-type-not-in-doc
plugins/modules/cloud/spotinst/spotinst_aws_elastigroup.py validate-modules:undocumented-parameter plugins/modules/cloud/spotinst/spotinst_aws_elastigroup.py validate-modules:undocumented-parameter

View file

@ -7,7 +7,6 @@ plugins/modules/cloud/rackspace/rax_files.py validate-modules:parameter-state-in
plugins/modules/cloud/rackspace/rax_files_objects.py use-argspec-type-path plugins/modules/cloud/rackspace/rax_files_objects.py use-argspec-type-path
plugins/modules/cloud/rackspace/rax_scaling_group.py use-argspec-type-path # fix needed, expanduser() applied to dict values plugins/modules/cloud/rackspace/rax_scaling_group.py use-argspec-type-path # fix needed, expanduser() applied to dict values
plugins/modules/cloud/scaleway/scaleway_organization_info.py validate-modules:return-syntax-error plugins/modules/cloud/scaleway/scaleway_organization_info.py validate-modules:return-syntax-error
plugins/modules/cloud/smartos/vmadm.py validate-modules:parameter-type-not-in-doc # unused param - removed in 6.0.0
plugins/modules/cloud/spotinst/spotinst_aws_elastigroup.py validate-modules:parameter-list-no-elements plugins/modules/cloud/spotinst/spotinst_aws_elastigroup.py validate-modules:parameter-list-no-elements
plugins/modules/cloud/spotinst/spotinst_aws_elastigroup.py validate-modules:parameter-type-not-in-doc plugins/modules/cloud/spotinst/spotinst_aws_elastigroup.py validate-modules:parameter-type-not-in-doc
plugins/modules/cloud/spotinst/spotinst_aws_elastigroup.py validate-modules:undocumented-parameter plugins/modules/cloud/spotinst/spotinst_aws_elastigroup.py validate-modules:undocumented-parameter

View file

@ -22,7 +22,7 @@ class TestBucketAccessKeyModule(ModuleTestCase):
set_module_args({ set_module_args({
'client_id': 'ABC', 'client_id': 'ABC',
'client_secret': 'XXX', 'client_secret': 'XXX',
'username': 'name', 'workspace': 'name',
'repository': 'repo', 'repository': 'repo',
'label': 'key name', 'label': 'key name',
'state': 'present', 'state': 'present',
@ -57,7 +57,7 @@ class TestBucketAccessKeyModule(ModuleTestCase):
set_module_args({ set_module_args({
'client_id': 'ABC', 'client_id': 'ABC',
'client_secret': 'XXX', 'client_secret': 'XXX',
'username': 'name', 'workspace': 'name',
'repository': 'repo', 'repository': 'repo',
'key': 'public_key', 'key': 'public_key',
'label': 'key name', 'label': 'key name',
@ -108,7 +108,7 @@ class TestBucketAccessKeyModule(ModuleTestCase):
set_module_args({ set_module_args({
'client_id': 'ABC', 'client_id': 'ABC',
'client_secret': 'XXX', 'client_secret': 'XXX',
'username': 'name', 'workspace': 'name',
'repository': 'repo', 'repository': 'repo',
'key': 'new public key', 'key': 'new public key',
'label': 'mykey', 'label': 'mykey',
@ -159,7 +159,7 @@ class TestBucketAccessKeyModule(ModuleTestCase):
set_module_args({ set_module_args({
'client_id': 'ABC', 'client_id': 'ABC',
'client_secret': 'XXX', 'client_secret': 'XXX',
'username': 'name', 'workspace': 'name',
'repository': 'repo', 'repository': 'repo',
'key': 'new public key', 'key': 'new public key',
'label': 'mykey', 'label': 'mykey',
@ -210,7 +210,7 @@ class TestBucketAccessKeyModule(ModuleTestCase):
set_module_args({ set_module_args({
'client_id': 'ABC', 'client_id': 'ABC',
'client_secret': 'XXX', 'client_secret': 'XXX',
'username': 'name', 'workspace': 'name',
'repository': 'repo', 'repository': 'repo',
'key': 'new public key', 'key': 'new public key',
'label': 'mykey', 'label': 'mykey',
@ -261,7 +261,7 @@ class TestBucketAccessKeyModule(ModuleTestCase):
set_module_args({ set_module_args({
'client_id': 'ABC', 'client_id': 'ABC',
'client_secret': 'XXX', 'client_secret': 'XXX',
'username': 'name', 'workspace': 'name',
'repository': 'repo', 'repository': 'repo',
'label': 'mykey', 'label': 'mykey',
'state': 'absent', 'state': 'absent',
@ -279,7 +279,7 @@ class TestBucketAccessKeyModule(ModuleTestCase):
set_module_args({ set_module_args({
'client_id': 'ABC', 'client_id': 'ABC',
'client_secret': 'XXX', 'client_secret': 'XXX',
'username': 'name', 'workspace': 'name',
'repository': 'repo', 'repository': 'repo',
'label': 'mykey', 'label': 'mykey',
'state': 'absent', 'state': 'absent',
@ -327,7 +327,7 @@ class TestBucketAccessKeyModule(ModuleTestCase):
set_module_args({ set_module_args({
'client_id': 'ABC', 'client_id': 'ABC',
'client_secret': 'XXX', 'client_secret': 'XXX',
'username': 'name', 'workspace': 'name',
'repository': 'repo', 'repository': 'repo',
'label': 'mykey', 'label': 'mykey',
'state': 'absent', 'state': 'absent',

View file

@ -22,7 +22,7 @@ class TestBucketPipelineKeyPairModule(ModuleTestCase):
set_module_args({ set_module_args({
'client_id': 'ABC', 'client_id': 'ABC',
'client_secret': 'XXX', 'client_secret': 'XXX',
'username': 'name', 'workspace': 'name',
'repository': 'repo', 'repository': 'repo',
'state': 'present', 'state': 'present',
}) })
@ -56,7 +56,7 @@ class TestBucketPipelineKeyPairModule(ModuleTestCase):
set_module_args({ set_module_args({
'client_id': 'ABC', 'client_id': 'ABC',
'client_secret': 'XXX', 'client_secret': 'XXX',
'username': 'name', 'workspace': 'name',
'repository': 'repo', 'repository': 'repo',
'public_key': 'public', 'public_key': 'public',
'private_key': 'PRIVATE', 'private_key': 'PRIVATE',
@ -79,7 +79,7 @@ class TestBucketPipelineKeyPairModule(ModuleTestCase):
set_module_args({ set_module_args({
'client_id': 'ABC', 'client_id': 'ABC',
'client_secret': 'XXX', 'client_secret': 'XXX',
'username': 'name', 'workspace': 'name',
'repository': 'repo', 'repository': 'repo',
'public_key': 'public', 'public_key': 'public',
'private_key': 'PRIVATE', 'private_key': 'PRIVATE',
@ -101,7 +101,7 @@ class TestBucketPipelineKeyPairModule(ModuleTestCase):
set_module_args({ set_module_args({
'client_id': 'ABC', 'client_id': 'ABC',
'client_secret': 'XXX', 'client_secret': 'XXX',
'username': 'name', 'workspace': 'name',
'repository': 'repo', 'repository': 'repo',
'public_key': 'public', 'public_key': 'public',
'private_key': 'PRIVATE', 'private_key': 'PRIVATE',
@ -123,7 +123,7 @@ class TestBucketPipelineKeyPairModule(ModuleTestCase):
set_module_args({ set_module_args({
'client_id': 'ABC', 'client_id': 'ABC',
'client_secret': 'XXX', 'client_secret': 'XXX',
'username': 'name', 'workspace': 'name',
'repository': 'repo', 'repository': 'repo',
'public_key': 'public', 'public_key': 'public',
'private_key': 'PRIVATE', 'private_key': 'PRIVATE',
@ -146,7 +146,7 @@ class TestBucketPipelineKeyPairModule(ModuleTestCase):
set_module_args({ set_module_args({
'client_id': 'ABC', 'client_id': 'ABC',
'client_secret': 'XXX', 'client_secret': 'XXX',
'username': 'name', 'workspace': 'name',
'repository': 'repo', 'repository': 'repo',
'state': 'absent', 'state': 'absent',
}) })
@ -163,7 +163,7 @@ class TestBucketPipelineKeyPairModule(ModuleTestCase):
set_module_args({ set_module_args({
'client_id': 'ABC', 'client_id': 'ABC',
'client_secret': 'XXX', 'client_secret': 'XXX',
'username': 'name', 'workspace': 'name',
'repository': 'repo', 'repository': 'repo',
'state': 'absent', 'state': 'absent',
}) })
@ -183,7 +183,7 @@ class TestBucketPipelineKeyPairModule(ModuleTestCase):
set_module_args({ set_module_args({
'client_id': 'ABC', 'client_id': 'ABC',
'client_secret': 'XXX', 'client_secret': 'XXX',
'username': 'name', 'workspace': 'name',
'repository': 'repo', 'repository': 'repo',
'state': 'absent', 'state': 'absent',
'_ansible_check_mode': True, '_ansible_check_mode': True,

View file

@ -29,7 +29,7 @@ class TestBucketPipelineKnownHostModule(ModuleTestCase):
set_module_args({ set_module_args({
'client_id': 'ABC', 'client_id': 'ABC',
'client_secret': 'XXX', 'client_secret': 'XXX',
'username': 'name', 'workspace': 'name',
'repository': 'repo', 'repository': 'repo',
'name': 'bitbucket.org', 'name': 'bitbucket.org',
'state': 'present', 'state': 'present',
@ -78,7 +78,7 @@ class TestBucketPipelineKnownHostModule(ModuleTestCase):
set_module_args({ set_module_args({
'client_id': 'ABC', 'client_id': 'ABC',
'client_secret': 'XXX', 'client_secret': 'XXX',
'username': 'name', 'workspace': 'name',
'repository': 'repo', 'repository': 'repo',
'name': 'bitbucket.org', 'name': 'bitbucket.org',
'state': 'present', 'state': 'present',
@ -97,7 +97,7 @@ class TestBucketPipelineKnownHostModule(ModuleTestCase):
set_module_args({ set_module_args({
'client_id': 'ABC', 'client_id': 'ABC',
'client_secret': 'XXX', 'client_secret': 'XXX',
'username': 'name', 'workspace': 'name',
'repository': 'repo', 'repository': 'repo',
'name': 'bitbucket.org', 'name': 'bitbucket.org',
'state': 'present', 'state': 'present',
@ -128,7 +128,7 @@ class TestBucketPipelineKnownHostModule(ModuleTestCase):
set_module_args({ set_module_args({
'client_id': 'ABC', 'client_id': 'ABC',
'client_secret': 'XXX', 'client_secret': 'XXX',
'username': 'name', 'workspace': 'name',
'repository': 'repo', 'repository': 'repo',
'name': 'bitbucket.org', 'name': 'bitbucket.org',
'state': 'absent', 'state': 'absent',
@ -147,7 +147,7 @@ class TestBucketPipelineKnownHostModule(ModuleTestCase):
set_module_args({ set_module_args({
'client_id': 'ABC', 'client_id': 'ABC',
'client_secret': 'XXX', 'client_secret': 'XXX',
'username': 'name', 'workspace': 'name',
'repository': 'repo', 'repository': 'repo',
'name': 'bitbucket.org', 'name': 'bitbucket.org',
'state': 'absent', 'state': 'absent',
@ -177,7 +177,7 @@ class TestBucketPipelineKnownHostModule(ModuleTestCase):
set_module_args({ set_module_args({
'client_id': 'ABC', 'client_id': 'ABC',
'client_secret': 'XXX', 'client_secret': 'XXX',
'username': 'name', 'workspace': 'name',
'repository': 'repo', 'repository': 'repo',
'name': 'bitbucket.org', 'name': 'bitbucket.org',
'state': 'absent', 'state': 'absent',

View file

@ -20,7 +20,7 @@ class TestBucketPipelineVariableModule(ModuleTestCase):
def test_without_required_parameters(self): def test_without_required_parameters(self):
with self.assertRaises(AnsibleFailJson) as exec_info: with self.assertRaises(AnsibleFailJson) as exec_info:
set_module_args({ set_module_args({
'username': 'name', 'workspace': 'name',
'repository': 'repo', 'repository': 'repo',
'name': 'PIPELINE_VAR_NAME', 'name': 'PIPELINE_VAR_NAME',
'state': 'absent', 'state': 'absent',
@ -34,7 +34,7 @@ class TestBucketPipelineVariableModule(ModuleTestCase):
set_module_args({ set_module_args({
'client_id': 'ABC', 'client_id': 'ABC',
'client_secret': 'XXX', 'client_secret': 'XXX',
'username': 'name', 'workspace': 'name',
'repository': 'repo', 'repository': 'repo',
'name': 'PIPELINE_VAR_NAME', 'name': 'PIPELINE_VAR_NAME',
'state': 'present', 'state': 'present',
@ -52,7 +52,7 @@ class TestBucketPipelineVariableModule(ModuleTestCase):
def test_oauth_env_vars_params(self, *args): def test_oauth_env_vars_params(self, *args):
with self.assertRaises(AnsibleExitJson): with self.assertRaises(AnsibleExitJson):
set_module_args({ set_module_args({
'username': 'name', 'workspace': 'name',
'repository': 'repo', 'repository': 'repo',
'name': 'PIPELINE_VAR_NAME', 'name': 'PIPELINE_VAR_NAME',
'state': 'absent', 'state': 'absent',
@ -100,7 +100,7 @@ class TestBucketPipelineVariableModule(ModuleTestCase):
set_module_args({ set_module_args({
'client_id': 'ABC', 'client_id': 'ABC',
'client_secret': 'XXX', 'client_secret': 'XXX',
'username': 'name', 'workspace': 'name',
'repository': 'repo', 'repository': 'repo',
'name': 'PIPELINE_VAR_NAME', 'name': 'PIPELINE_VAR_NAME',
'value': '42', 'value': '42',
@ -126,7 +126,7 @@ class TestBucketPipelineVariableModule(ModuleTestCase):
set_module_args({ set_module_args({
'client_id': 'ABC', 'client_id': 'ABC',
'client_secret': 'XXX', 'client_secret': 'XXX',
'username': 'name', 'workspace': 'name',
'repository': 'repo', 'repository': 'repo',
'name': 'PIPELINE_VAR_NAME', 'name': 'PIPELINE_VAR_NAME',
'value': '42', 'value': '42',
@ -150,7 +150,7 @@ class TestBucketPipelineVariableModule(ModuleTestCase):
set_module_args({ set_module_args({
'client_id': 'ABC', 'client_id': 'ABC',
'client_secret': 'XXX', 'client_secret': 'XXX',
'username': 'name', 'workspace': 'name',
'repository': 'repo', 'repository': 'repo',
'name': 'PIPELINE_VAR_NAME', 'name': 'PIPELINE_VAR_NAME',
'value': '42', 'value': '42',
@ -176,7 +176,7 @@ class TestBucketPipelineVariableModule(ModuleTestCase):
set_module_args({ set_module_args({
'client_id': 'ABC', 'client_id': 'ABC',
'client_secret': 'XXX', 'client_secret': 'XXX',
'username': 'name', 'workspace': 'name',
'repository': 'repo', 'repository': 'repo',
'name': 'PIPELINE_VAR_NAME', 'name': 'PIPELINE_VAR_NAME',
'value': '42', 'value': '42',
@ -202,7 +202,7 @@ class TestBucketPipelineVariableModule(ModuleTestCase):
set_module_args({ set_module_args({
'client_id': 'ABC', 'client_id': 'ABC',
'client_secret': 'XXX', 'client_secret': 'XXX',
'username': 'name', 'workspace': 'name',
'repository': 'repo', 'repository': 'repo',
'name': 'PIPELINE_VAR_NAME', 'name': 'PIPELINE_VAR_NAME',
'value': '42', 'value': '42',
@ -227,7 +227,7 @@ class TestBucketPipelineVariableModule(ModuleTestCase):
set_module_args({ set_module_args({
'client_id': 'ABC', 'client_id': 'ABC',
'client_secret': 'XXX', 'client_secret': 'XXX',
'username': 'name', 'workspace': 'name',
'repository': 'repo', 'repository': 'repo',
'name': 'PIPELINE_VAR_NAME', 'name': 'PIPELINE_VAR_NAME',
'value': '42', 'value': '42',
@ -253,7 +253,7 @@ class TestBucketPipelineVariableModule(ModuleTestCase):
set_module_args({ set_module_args({
'client_id': 'ABC', 'client_id': 'ABC',
'client_secret': 'XXX', 'client_secret': 'XXX',
'username': 'name', 'workspace': 'name',
'repository': 'repo', 'repository': 'repo',
'name': 'PIPELINE_VAR_NAME', 'name': 'PIPELINE_VAR_NAME',
'state': 'absent', 'state': 'absent',
@ -271,7 +271,7 @@ class TestBucketPipelineVariableModule(ModuleTestCase):
set_module_args({ set_module_args({
'client_id': 'ABC', 'client_id': 'ABC',
'client_secret': 'XXX', 'client_secret': 'XXX',
'username': 'name', 'workspace': 'name',
'repository': 'repo', 'repository': 'repo',
'name': 'PIPELINE_VAR_NAME', 'name': 'PIPELINE_VAR_NAME',
'state': 'absent', 'state': 'absent',
@ -295,7 +295,7 @@ class TestBucketPipelineVariableModule(ModuleTestCase):
set_module_args({ set_module_args({
'client_id': 'ABC', 'client_id': 'ABC',
'client_secret': 'XXX', 'client_secret': 'XXX',
'username': 'name', 'workspace': 'name',
'repository': 'repo', 'repository': 'repo',
'name': 'PIPELINE_VAR_NAME', 'name': 'PIPELINE_VAR_NAME',
'state': 'absent', 'state': 'absent',