mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-08 14:22:46 +00:00
Do not ignore tld option in DSV lookup plugin (#4911)
* Do not ignore tld option in DSV lookup plugin * add changelog fragment * Update changelogs/fragments/4911-dsv-honor-tld-option.yml Co-authored-by: Felix Fontein <felix@fontein.de> Co-authored-by: Felix Fontein <felix@fontein.de>
This commit is contained in:
3
changelogs/fragments/4911-dsv-honor-tld-option.yml
Normal file
3
changelogs/fragments/4911-dsv-honor-tld-option.yml
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
---
|
||||||
|
bugfixes:
|
||||||
|
- dsv lookup plugin - do not ignore the ``tld`` parameter (https://github.com/ansible-collections/community.general/pull/4911).
|
||||||
@@ -122,6 +122,7 @@ class LookupModule(LookupBase):
|
|||||||
"tenant": self.get_option("tenant"),
|
"tenant": self.get_option("tenant"),
|
||||||
"client_id": self.get_option("client_id"),
|
"client_id": self.get_option("client_id"),
|
||||||
"client_secret": self.get_option("client_secret"),
|
"client_secret": self.get_option("client_secret"),
|
||||||
|
"tld": self.get_option("tld"),
|
||||||
"url_template": self.get_option("url_template"),
|
"url_template": self.get_option("url_template"),
|
||||||
}
|
}
|
||||||
)
|
)
|
||||||
|
|||||||
Reference in New Issue
Block a user