apollo-security-basics
Installation
SKILL.md
Apollo Security Basics
Overview
Implement security best practices for Apollo.io API integrations including API key management, PII redaction in logs, data access controls, and security audit procedures.
Prerequisites
- Valid Apollo.io API credentials
- Node.js 18+ or Python 3.10+
- Completed
apollo-install-authsetup
Instructions
Step 1: Secure API Key Storage
// NEVER do this:
// const API_KEY = 'abc123-your-key'; // hardcoded in source
// DO this: load from environment or secret manager
import { SecretManagerServiceClient } from '@google-cloud/secret-manager';