> ## Documentation Index
> Fetch the complete documentation index at: https://docs.usebruno.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Overview

export const PremiumBadge = ({noLink}) => {
  const badge = <span style={{
    display: 'inline-flex',
    alignItems: 'center',
    gap: '0.25rem',
    padding: '0.25rem 0.5rem',
    fontSize: '0.75rem',
    fontWeight: '600',
    borderRadius: '0.5rem',
    backgroundColor: '#FCD34D',
    color: '#92400E',
    marginLeft: '0.5rem',
    lineHeight: '1.2'
  }}>
      PREMIUM
    </span>;
  if (noLink) {
    return badge;
  }
  return <a href="https://www.usebruno.com/pricing" target="_blank" rel="noopener noreferrer" style={{
    textDecoration: 'none'
  }}>
      {badge}
    </a>;
};

# Integration with Secret managers <PremiumBadge noLink />

For users of Bruno Ultimate, you can take your secret management one step further and perform an integration with a secret vault.

Currently, we support integrations with:

* [HashiCorp vault](/secrets-management/secret-managers/hashicorp-vault)
* [AWS Secrets Manager](/secrets-management/secret-managers/aws-secrets-manager)
* [Azure Key Vault](/secrets-management/secret-managers/azure-key-vault)
