Add below bean and it will fix the above mentioned issue on cloud kafka.
@Bean
public ListenerContainerCustomizer<AbstractMessageListenerContainer> containerCustomizer() {
return (container, dest, group) -> container.getContainerProperties()
.setAuthExceptionRetryInterval(Duration.ofSeconds(30));
}
Read here.