=== Amazon AWS Credentials Update Tool === Current AWS credentials in database: - access_key: your_aws_access_key_here - role_arn: your_aws_role_arn_here - secret_key: your_aws_secret_key_here To update these credentials, you can: 1. Use the SQL commands below: -- Update AWS Access Key ID UPDATE platform_settings SET setting_value = 'YOUR_ACTUAL_AWS_ACCESS_KEY_ID' WHERE platform = 'amazon' AND setting_key = 'access_key'; -- Update AWS Secret Access Key UPDATE platform_settings SET setting_value = 'YOUR_ACTUAL_AWS_SECRET_ACCESS_KEY' WHERE platform = 'amazon' AND setting_key = 'secret_key'; -- Update AWS Role ARN UPDATE platform_settings SET setting_value = 'YOUR_ACTUAL_AWS_ROLE_ARN' WHERE platform = 'amazon' AND setting_key = 'role_arn'; 2. Or use the interactive form below: