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

# Security

> Secure your Compozy workflows with enterprise-grade security integrations

export const Badge = ({children}) => {
  const getColorClass = () => {
    switch (children) {
      case 'Available':
        return 'bg-green-100 text-green-800 dark:bg-green-900/30 dark:text-green-400';
      case 'Beta':
        return 'bg-yellow-100 text-yellow-800 dark:bg-yellow-900/30 dark:text-yellow-400';
      case 'Coming Soon':
        return 'bg-blue-100 text-blue-800 dark:bg-blue-900/30 dark:text-blue-400';
      default:
        return 'bg-gray-100 text-gray-800 dark:bg-gray-900/30 dark:text-gray-400';
    }
  };
  return <span className={`inline-flex items-center rounded-full px-2 py-1 text-xs font-medium ${getColorClass()}`}>
            {children}
        </span>;
};

Implement robust security practices in your Compozy workflows with our security integrations. From secrets management to identity and access control, we support the tools you trust.

<CardGroup cols={3}>
  <Card title="HashiCorp Vault" icon="vault" href="/integrations/security/vault">
    Secure secrets management for Compozy with HashiCorp Vault.
    <Badge>Available</Badge>
  </Card>

  <Card title="Keycloak" icon="key" href="/integrations/security/keycloak">
    Identity and access management for Compozy with Keycloak.
    <Badge>Beta</Badge>
  </Card>

  <Card title="Auth0" icon="auth0" href="/integrations/security/auth0">
    Implement Auth0 authentication in your Compozy workflows.
    <Badge>Available</Badge>
  </Card>

  <Card title="Cloud IAM" icon="cloud" href="/integrations/security/cloud-iam">
    Integrate with AWS IAM, GCP IAM, and Azure AD for cloud-native security.
    <Badge>Available</Badge>
  </Card>
</CardGroup>
