Skip to content

Commit

Permalink
fix(#4844): Changing if condition in certs creation
Browse files Browse the repository at this point in the history
  • Loading branch information
pro-akim committed Mar 22, 2024
1 parent 5d76a43 commit fae25f7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion deployability/modules/testing/tests/helpers/generic.py
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ def certs_create(wazuh_version, master_path, dashboard_path, indexer_paths=[], w

wazuh_version = '.'.join(wazuh_version.split('.')[:2])

is_aws = 'amazonaws' in master_path
is_aws = 'amazonaws' in Utils.extract_ansible_host(master_path)

master = HostConfiguration._extract_hosts([master_path], is_aws)[0]
dashboard = HostConfiguration._extract_hosts([dashboard_path], is_aws)[0]
Expand Down

0 comments on commit fae25f7

Please sign in to comment.