Fix secretstore value to align with python entrypoint.

The dogtag secretstore entrypoint is `dogtag_crypto`[1], thus the value
configured for secretstore:dogtag/secret_store_plugin needs to be
`dogtag_crypto` as well.

[1] https://github.com/openstack/barbican/blob/master/setup.cfg#L55

Change-Id: I14aa6d2f327b5f0af36ec07c574aa8eeccfdf55e
This commit is contained in:
David Gurtner 2019-05-28 20:56:05 +02:00
parent ae7dbe4526
commit 33ab5f763e
2 changed files with 2 additions and 2 deletions

View File

@ -71,7 +71,7 @@ class barbican::plugins::dogtag (
}
barbican_config {
'secretstore:dogtag/secret_store_plugin': value => 'dogtag_plugin';
'secretstore:dogtag/secret_store_plugin': value => 'dogtag_crypto';
'secretstore:dogtag/global_default': value => $global_default;
}

View File

@ -74,7 +74,7 @@ describe 'barbican::plugins::dogtag' do
should contain_barbican_config('dogtag_plugin/simple_cmc_profile').with_value(param_hash[:dogtag_plugin_simple_cmc_profile])
should contain_barbican_config('dogtag_plugin/ca_expiration_time').with_value(param_hash[:dogtag_plugin_ca_expiration_time])
should contain_barbican_config('dogtag_plugin/plugin_working_dir').with_value(param_hash[:dogtag_plugin_plugin_working_dir])
should contain_barbican_config('secretstore:dogtag/secret_store_plugin').with_value('dogtag_plugin')
should contain_barbican_config('secretstore:dogtag/secret_store_plugin').with_value('dogtag_crypto')
should contain_barbican_config('secretstore:dogtag/global_default').with_value(param_hash[:global_default])
}
end