Andy S:
i have K8s secret, similar to the below YAML. one of the fields, AVP_SECRET_ID
, needs to be populated with short-term credentials. as it’s impractical to manually update and apply this YAML every time this value is updated, what’s the recommended way to keep this value up to date?
apiVersion: v1
data:
VAULT_ADDR: Zm9v
AVP_AUTH_TYPE: Zm9v
AVP_ROLE_ID: Zm9v
AVP_SECRET_ID: Zm9v <--- short-term creds
AVP_TYPE: Zm9v
kind: Secret
metadata:
name: argocd-vault-plugin-credentials
namespace: argocd
type: Opaque