Hi All,
I want to use aws secrets to store Kibana login credentials and pass them in the kibana deployment, has anyone done this before and any help is appreciated.
apiVersion: kibana.k8s.elastic.co/v1
kind: Kibana
metadata:
name: kibana-sample
spec:
version: 8.12.2
count: 1
config:
elasticsearch.hosts:
- https://elasticsearch.example.com:9200
elasticsearch.username: elastic
secureSettings:
- secretName: kibana-elasticsearch-credentials
In the above example I need the user name elastic to be retrieved from aws secrets.
TIA