Jakub Sokołowski
7b96dfb457
Fixes: ``` Traceback (most recent call last): File "/home/jakubgs/work/infra-eth2/ansible/lookup_plugins/vault.py", line 6, in <module> import hvac ModuleNotFoundError: No module named 'hvac' ``` Before. ``` > echo $PATH | tr ':' '\n' | grep python3- /nix/store/04gg5w1s662l329a8kh9xcwyp0k64v5a-python3-3.12.4/bin /nix/store/38nsff4vmhjmvfsi864yb23y9rk9gw5c-python3-3.11.9-env/bin ``` After the fix. ``` > echo $PATH | tr ':' '\n' | grep python3- /nix/store/04gg5w1s662l329a8kh9xcwyp0k64v5a-python3-3.12.4/bin /nix/store/pxgdzih20d368bx0h0kzyln5hl5cjgyl-python3-3.12.4-env/bin ``` Caused by upgrade to `unstable` without checking default Python version. Signed-off-by: Jakub Sokołowski <jakub@status.im> |
||
---|---|---|
ansible | ||
.envrc | ||
.envrc.secrets | ||
.gitignore | ||
Makefile | ||
README.md | ||
ansible.cfg | ||
flake.lock | ||
flake.nix | ||
main.tf | ||
providers.tf | ||
secrets.tf | ||
versions.tf | ||
workspaces.tf |
README.md
Description
⚠️ Replace with actual description!
This repo defines a standard template for new Status infrastructure repositories.
Key things to change:
- Update
README.md
- Terraform
- Change
path
inmain.tf
to match new fleet- Add necessary providers in
providers.tf
- Add necessary secrets in
secrets.tf
- Adjust or remove
workspaces.tf
- Adjust
versions.tf
- Ansible
- Extend
ansible/group_vars/all.yml
- Or add a dedicated
group_vars
file- Create the
ansible/main.yml
playbook- Github
- Add to
infra-repos/variables.tf
Repo Usage
For how to use this repo read the Infra Repo Usage doc.