mirror of https://github.com/ansible/ansible.git
Remove deprecated vars plugin fallback (#85809)
* Remove deprecated vars plugin fallback Removes the vars plugin `get_host_vars` and `get_group_vars` fallback which was deprecated. * Remove integration tests for removed featurepull/85808/head
parent
94c78cb38f
commit
3582997698
@ -0,0 +1,4 @@
|
|||||||
|
removed_features:
|
||||||
|
- >-
|
||||||
|
vars plugins - removed the deprecated ``get_host_vars`` or ``get_group_vars`` fallback for vars plugins that do
|
||||||
|
not inherit from ``BaseVarsPlugin`` and define a ``get_vars`` method.
|
||||||
@ -1,9 +0,0 @@
|
|||||||
from __future__ import annotations
|
|
||||||
|
|
||||||
|
|
||||||
class VarsModule:
|
|
||||||
def get_host_vars(self, entity):
|
|
||||||
return {}
|
|
||||||
|
|
||||||
def get_group_vars(self, entity):
|
|
||||||
return {}
|
|
||||||
Loading…
Reference in New Issue