Removes the accessKey and secretKey fields from MessageQueueConfiguration.java and updates application.yaml to enable the use of the AWS SDK's default credential provider chain.
This change enhances security by preventing the direct mapping or hardcoding of sensitive AWS credentials within the application's configuration classes. The application will now rely on more secure methods for credential discovery, such as IAM roles or environment variables, as managed by the DefaultCredentialsProvider.
Key changes:
- Removed `accessKey` and `secretKey` from `MessageQueueConfiguration.java`.
- Set `aws.default-credentials-provider-chain-enabled=true` in `application.yaml`.
- Removed redundant `accessKey` and `secretKey` from `status.messageQueue` in `application.yaml`.