Hi,
I am planning to use approle authentication & have created app-id & secret-id.
Does vault go client api has an api to get the token using both of them.
Since the path used to get the token for approle is "auth/approle/login",
I tried searching approle in vault/api directory but no luck.
Finally I wrote a wrapper around using golang http package & following curl api example.
curl \
--request POST \
--data '{"role_id":"988a9df-...","secret_id":"37b74931..."}' \
If this is already supported in golang api client I would like to use that instead of my wrapper.
Thanks,
-Siddhesh