ansible-vars 1.0.13__tar.gz → 1.0.14__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {ansible_vars-1.0.13 → ansible_vars-1.0.14}/PKG-INFO +1 -1
- {ansible_vars-1.0.13 → ansible_vars-1.0.14}/pyproject.toml +1 -1
- {ansible_vars-1.0.13 → ansible_vars-1.0.14}/src/ansible_vars/vault_crypt.py +1 -1
- {ansible_vars-1.0.13 → ansible_vars-1.0.14}/.gitignore +0 -0
- {ansible_vars-1.0.13 → ansible_vars-1.0.14}/LICENSE +0 -0
- {ansible_vars-1.0.13 → ansible_vars-1.0.14}/README.md +0 -0
- {ansible_vars-1.0.13 → ansible_vars-1.0.14}/src/ansible_vars/__init__.py +0 -0
- {ansible_vars-1.0.13 → ansible_vars-1.0.14}/src/ansible_vars/cli.py +0 -0
- {ansible_vars-1.0.13 → ansible_vars-1.0.14}/src/ansible_vars/constants.py +0 -0
- {ansible_vars-1.0.13 → ansible_vars-1.0.14}/src/ansible_vars/errors.py +0 -0
- {ansible_vars-1.0.13 → ansible_vars-1.0.14}/src/ansible_vars/util.py +0 -0
- {ansible_vars-1.0.13 → ansible_vars-1.0.14}/src/ansible_vars/vault.py +0 -0
@@ -208,7 +208,7 @@ class VaultKeyring():
|
|
208
208
|
# Could possibly be avoided by splitting the detected vault IDs and transforming any right-hand paths
|
209
209
|
os.chdir(pardir)
|
210
210
|
secrets: list[tuple[str | None, VaultSecret]] = \
|
211
|
-
CLI.setup_vault_secrets(DataLoader(), vault_ids, auto_prompt=False) # type: ignore
|
211
|
+
CLI.setup_vault_secrets(DataLoader(), vault_ids, auto_prompt=False, initialize_context=False) # type: ignore
|
212
212
|
return list(map(VaultKey.from_ansible_secret, secrets))
|
213
213
|
finally:
|
214
214
|
os.chdir(prev_dir)
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|