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

(cherry picked from commit 457c813d46)
pull/41109/head
Tim Rupp 6 years ago committed by Matt Clay
parent fb3f0a53d9
commit 1ab973c3d3

@ -161,11 +161,13 @@ except ImportError:
class Parameters(AnsibleF5Parameters):
api_map = {
'certKeyChain': 'cert_key_chain'
'certKeyChain': 'cert_key_chain',
'defaultsFrom': 'parent'
}
api_attributes = [
'ciphers', 'certKeyChain'
'ciphers', 'certKeyChain',
'defaultsFrom'
]
returnables = [

@ -214,6 +214,7 @@ class Parameters(AnsibleF5Parameters):
'enableDnssec',
'processXfr',
'enableDnsExpress',
'defaultsFrom'
]
returnables = [

Loading…
Cancel
Save