Mutating Kubernetes Secrets via Agent Injector

Is it somehow possible to mutate Kubernetes secret objects via the Agent Injector?

So having something like that

apiVersion: v1
kind: Secret
metadata:
  name: mysecret
  annotations:
        vault.hashicorp.com/agent-inject: "true"
        vault.hashicorp.com/role: "myrole"
        vault.hashicorp.com/agent-inject-secret-config: "secret/data/config"
data:
  value: "vault:secret/data/config#mysecretvalue"

Hello,

Considering the way the vault agent injector works, i do not believe this would be possible.

Martin