Remove non-existing bind_host/port

The bind_host parameter and the bind_port parameter are not implemented
in current Barbican. This change removes these ineffective parameters
from barbican.conf.

Change-Id: I7758a6e852795c5410e6dab023ce612f44ee27fd
This commit is contained in:
Takashi Kajinami 2022-05-09 09:48:13 +09:00
parent 7912e8d09a
commit 043774f389
2 changed files with 5 additions and 4 deletions

View File

@ -337,8 +337,11 @@ class barbican::api (
}
barbican_config {
'DEFAULT/bind_host': value => $bind_host;
'DEFAULT/bind_port': value => $bind_port;
'DEFAULT/bind_host': ensure => absent;
'DEFAULT/bind_port': ensure => absent;
}
barbican_config {
'DEFAULT/host_href': value => $host_href_real;
}

View File

@ -143,8 +143,6 @@ describe 'barbican::api' do
it 'is_expected.to set default parameters' do
[
'bind_host',
'bind_port',
'max_allowed_secret_in_bytes',
'max_allowed_request_size_in_bytes',
].each do |config|