Standardize names and lock config

This commit is contained in:
2022-10-25 19:20:49 +00:00
parent 00ac00ae2c
commit 08ba856288
6 changed files with 14 additions and 17 deletions

View File

@ -43,7 +43,7 @@ def run_paramiko(config, node_address):
ssh_client.connect(
hostname=node_address,
username=config["deploy_username"],
key_filename=config["ansible_keyfile"],
key_filename=config["ansible_key_file"],
)
yield ssh_client
ssh_client.close()