From 1c3139e1a270e8d202842eb4b9f079aa0a463a0a Mon Sep 17 00:00:00 2001 From: Facundo Dalmau Date: Thu, 23 May 2024 15:31:36 +0200 Subject: [PATCH] Change profile to default --- src/wazuh_testing/modules/aws/data_generator.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/wazuh_testing/modules/aws/data_generator.py b/src/wazuh_testing/modules/aws/data_generator.py index e89a239b..2e1f5989 100644 --- a/src/wazuh_testing/modules/aws/data_generator.py +++ b/src/wazuh_testing/modules/aws/data_generator.py @@ -19,8 +19,8 @@ from wazuh_testing.constants.aws import * from wazuh_testing.utils.random import get_random_ip, get_random_port, get_random_string -# Use the environment variable or default to 'dev' -aws_profile = os.environ.get("AWS_PROFILE", "dev") +# Use the environment variable or default to 'default' +aws_profile = os.environ.get("AWS_PROFILE", "default") def verify_region(func): """Decorator to apply to functions receiving a region as parameter to verify its existence in AWS."""