mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Fixes not using the parent parameter (#41102)
The parent parameter was not being used in the module. This meant that all child profiles would use the system-defined parent instead of the parent specified in the module
This commit is contained in:
parent
ab96a84154
commit
457c813d46
2 changed files with 5 additions and 2 deletions
|
@ -161,11 +161,13 @@ except ImportError:
|
||||||
|
|
||||||
class Parameters(AnsibleF5Parameters):
|
class Parameters(AnsibleF5Parameters):
|
||||||
api_map = {
|
api_map = {
|
||||||
'certKeyChain': 'cert_key_chain'
|
'certKeyChain': 'cert_key_chain',
|
||||||
|
'defaultsFrom': 'parent'
|
||||||
}
|
}
|
||||||
|
|
||||||
api_attributes = [
|
api_attributes = [
|
||||||
'ciphers', 'certKeyChain'
|
'ciphers', 'certKeyChain',
|
||||||
|
'defaultsFrom'
|
||||||
]
|
]
|
||||||
|
|
||||||
returnables = [
|
returnables = [
|
||||||
|
|
|
@ -214,6 +214,7 @@ class Parameters(AnsibleF5Parameters):
|
||||||
'enableDnssec',
|
'enableDnssec',
|
||||||
'processXfr',
|
'processXfr',
|
||||||
'enableDnsExpress',
|
'enableDnsExpress',
|
||||||
|
'defaultsFrom'
|
||||||
]
|
]
|
||||||
|
|
||||||
returnables = [
|
returnables = [
|
||||||
|
|
Loading…
Reference in a new issue