brightdata-security-basics

Featured

Apply Bright Data security best practices for secrets and access control. Use when securing API keys, implementing least privilege access, or auditing Bright Data security configuration. Trigger with phrases like "brightdata security", "brightdata secrets", "secure brightdata", "brightdata API key security".

AI & Automation 2,266 stars 315 forks Updated today MIT

Install

View on GitHub

Quality Score: 99/100

Stars 20%
100
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# Bright Data Security Basics ## Overview Security best practices for Bright Data zone credentials, API tokens, and webhook delivery. Bright Data credentials include Customer ID, zone passwords, and API tokens — all must be protected. ## Prerequisites - Bright Data zones configured - Understanding of environment variables - Access to Bright Data control panel ## Instructions ### Step 1: Credential Inventory | Credential | Scope | Rotation | Storage | |-----------|-------|----------|---------| | Customer ID | Account-wide | Never changes | Can be in config | | Zone Password | Per-zone | Rotate quarterly | Secrets vault only | | API Token | Account-wide | Rotate quarterly | Secrets vault only | | SSL Cert (`brd-ca.crt`) | Public | Auto-renewed | Can be in repo | ### Step 2: Environment Variable Security ```bash # .env (NEVER commit) BRIGHTDATA_CUSTOMER_ID=c_abc123 BRIGHTDATA_ZONE=web_unlocker1 BRIGHTDATA_ZONE_PASSWORD=z_pass_xyz BRIGHTDATA_API_TOKEN=abc123def456 # .gitignore .env .env.local .env.*.local # .env.example (safe to commit — no real values) BRIGHTDATA_CUSTOMER_ID= BRIGHTDATA_ZONE= BRIGHTDATA_ZONE_PASSWORD= BRIGHTDATA_API_TOKEN= ``` ### Step 3: Zone Isolation by Environment Create separate zones per environment so staging credentials cannot access production proxy bandwidth: ```typescript // config/brightdata.ts const ZONE_MAP = { development: 'web_unlocker_dev', staging: 'web_unlocker_staging', production: 'web_unlocker_prod', } as const; export ...

Details

Author
jeremylongshore
Repository
jeremylongshore/claude-code-plugins-plus-skills
Created
7 months ago
Last Updated
today
Language
Python
License
MIT

Integrates with

Similar Skills

Semantically similar based on skill content — not just same category

AI & Automation Featured

brightdata-install-auth

Install and configure Bright Data SDK/CLI authentication. Use when setting up a new Bright Data integration, configuring API keys, or initializing Bright Data in your project. Trigger with phrases like "install brightdata", "setup brightdata", "brightdata auth", "configure brightdata API key".

2,266 Updated today
jeremylongshore
AI & Automation Featured

brightdata-prod-checklist

Execute Bright Data production deployment checklist and rollback procedures. Use when deploying Bright Data integrations to production, preparing for launch, or implementing go-live procedures. Trigger with phrases like "brightdata production", "deploy brightdata", "brightdata go-live", "brightdata launch checklist".

2,266 Updated today
jeremylongshore
AI & Automation Featured

brightdata-common-errors

Diagnose and fix Bright Data common errors and exceptions. Use when encountering Bright Data errors, debugging failed requests, or troubleshooting integration issues. Trigger with phrases like "brightdata error", "fix brightdata", "brightdata not working", "debug brightdata".

2,266 Updated today
jeremylongshore
AI & Automation Featured

databricks-security-basics

Apply Databricks security best practices for secrets and access control. Use when securing API tokens, implementing least privilege access, or auditing Databricks security configuration. Trigger with phrases like "databricks security", "databricks secrets", "secure databricks", "databricks token security", "databricks scopes".

2,266 Updated today
jeremylongshore
AI & Automation Featured

brightdata-deploy-integration

Deploy Bright Data integrations to Vercel, Fly.io, and Cloud Run platforms. Use when deploying Bright Data-powered applications to production, configuring platform-specific secrets, or setting up deployment pipelines. Trigger with phrases like "deploy brightdata", "brightdata Vercel", "brightdata production deploy", "brightdata Cloud Run", "brightdata Fly.io".

2,266 Updated today
jeremylongshore