From cdec7e366fc86bcb4ff43db7dc3b9013b96fe3a1 Mon Sep 17 00:00:00 2001 From: Theo Truong Date: Wed, 27 Mar 2024 16:20:33 -0600 Subject: [PATCH] # Signed-off-by: Theo Truong --- spec/integration/open_search/aws/sigv4_client_spec.rb | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/spec/integration/open_search/aws/sigv4_client_spec.rb b/spec/integration/open_search/aws/sigv4_client_spec.rb index 5f88849..2f5ac1e 100644 --- a/spec/integration/open_search/aws/sigv4_client_spec.rb +++ b/spec/integration/open_search/aws/sigv4_client_spec.rb @@ -20,7 +20,14 @@ access_key_id: 'key_id', secret_access_key: 'secret') - described_class.new({ host: OPENSEARCH_URL, logger: Logger.new($stdout) }, signer) + described_class.new({ + host: 'http://localhost:9200', + user: 'admin', + password: 'myStrongPassword123!', + logger: Logger.new($stdout), + transport_options: { ssl: { verify: false } } + }, + signer) end it 'performs API actions without throwing any errors' do