Skip to content

Commit

Permalink
Merge pull request #1 from srijitncoupa/snair/14.1.6.19-fipsworkaround
Browse files Browse the repository at this point in the history
chef#3398: Fix for FIPS enabled in bookshelf using bookshelf s3 url with …
  • Loading branch information
srijitncoupa authored Jul 8, 2022
2 parents 5b22806 + c6713e6 commit 058367e
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -210,8 +210,9 @@
%%
%% This is the reason that the only supported configuration for the fips
%% package is standalone. We will allow http over localhost so that the
%% chef server can talk to bookshelf.
{s3_url, "http://<%= node['private_chef']['bookshelf']['listen'] %>:<%= node['private_chef']['bookshelf']['port'] %>"},
%% chef server can talk to bookshelf. We can give provide bookshelf['url'] = 'http://127.0.0.1:4321' for naking it work for FIPS enabled
%% {s3_url, "http://<%= node['private_chef']['bookshelf']['listen'] %>:<%= node['private_chef']['bookshelf']['port'] %>"},
{s3_url, "<%= @helper.bookshelf_s3_url %>"},
<% else -%>
{s3_url, "<%= @helper.bookshelf_s3_url %>"},
<% end %>
Expand Down

0 comments on commit 058367e

Please sign in to comment.