Maciej Walkowiak

Results 388 comments of Maciej Walkowiak

Thanks! I've tested these changes with Slack integration only so if you could take care of Facebook would be awesome.

Just in case anyone finds it useful (cc @BigMichi1), I wrote a piece on how to include CycloneDX SBOM or just a list of the dependencies in Spring Boot actuator....

I noticed few days ago there is a new JDBC driver related project from AWS [in progress](https://github.com/awslabs/aws-postgresql-jdbc/pull/68/files#diff-b335630551682c19a781afebcf4d07bf978fb1f8ac04c6bf87428ed5106870f5R8) (https://github.com/awslabs/aws-advanced-jdbc-wrapper - 404 for now) - not sure if it only replaces Postgres...

If you mean just to check if a queue exists during runtime, you can create custom health indicator like this: ```java public class SqsQueueHealthIndicator extends AbstractHealthIndicator { private final AmazonSQSAsync...

Ok, I think I got what you mean. Have you tried adding health indicator like: ```java class SqsListenerHealthIndicator extends AbstractHealthIndicator { private final SimpleMessageListenerContainer container; private final String queueName; SqsListenerHealthIndicator(SimpleMessageListenerContainer...

You can take a look at more out-of-the-box solution for this on my branch: https://github.com/maciejwalkowiak/spring-cloud-aws/commit/c230496edfd1191f062db96c6a151d7cfd79c4ef I am not convinced if use case is so common to merge it into Spring...

Hi @marcuslange, you are right. Similar to ParameterStore (#421) there is currently no support for refreshing context when values change. I am not sure yet if it makes sense to...

@govindrk the prefix is `aws.secretsmanager` (you missed "s"). Once you put this property there integration will be turned off. 400 when getting accessing secret set for delete is AWS Secrets...