rename 'approle_auth_path' to 'default_auth_path' & fix kwargs.get

This commit is contained in:
Benoit Bayszczak
2020-09-07 14:40:30 +02:00
parent e8b54abec4
commit 08c9219f48
2 changed files with 6 additions and 9 deletions

View File

@@ -123,7 +123,7 @@ def source_cred_hashi_secret(organization):
"token": "myApiKey",
"role_id": "role",
"secret_id": "secret",
"approle_auth_path": "path-to-approle"
"default_auth_path": "path-to-approle"
}
)
@@ -158,8 +158,6 @@ def test_hashi_secret_credential_source(run_module, admin_user, organization, so
assert cis.metadata['secret_backend'] == "backend"
assert cis.metadata['secret_key'] == "a_key"
assert cis.source_credential.name == source_cred_hashi_secret.name
assert cis.source_credential.approle_auth_path == \
source_cred_hashi_secret.inputs["approle_auth_path"]
assert cis.target_credential.name == tgt_cred.name
assert cis.input_field_name == 'password'
assert result['id'] == cis.pk