Use proper YAML constructor class for safe loading
This commit is contained in:
parent
2dde7f7768
commit
9f0b354023
1 changed files with 2 additions and 2 deletions
|
@ -19,7 +19,7 @@
|
|||
from __future__ import (absolute_import, division, print_function)
|
||||
__metaclass__ = type
|
||||
|
||||
from yaml.constructor import Constructor, ConstructorError
|
||||
from yaml.constructor import SafeConstructor, ConstructorError
|
||||
from yaml.nodes import MappingNode
|
||||
|
||||
from ansible.module_utils._text import to_bytes
|
||||
|
@ -35,7 +35,7 @@ except ImportError:
|
|||
display = Display()
|
||||
|
||||
|
||||
class AnsibleConstructor(Constructor):
|
||||
class AnsibleConstructor(SafeConstructor):
|
||||
def __init__(self, file_name=None, vault_password=None):
|
||||
self._vault_password = vault_password
|
||||
self._ansible_file_name = file_name
|
||||
|
|
Loading…
Reference in a new issue