ClaudeCloudflare Developer Platform2026/06/03 0:00

Workers - New Workers bulk secrets API endpoint

要点だけを先に読めるように短く再構成したセクションです。

元記事

Quick Digest

要約

要点だけを先に読めるように短く再構成したセクションです。

claudeja

Workers - New Workers bulk secrets API endpoint の要約

Key Points

  • ポイント1: Changelog New updates and improvements at Cloudflare.
  • ポイント2: Subscribe to RSS View RSS feeds ← Back to all posts New Workers bulk secrets API endpoint Jun 03, 2026 Workers You can now create, update, or delete multiple secrets for your Worke
  • ポイント3: Include a secret with a value to create or update.

Summary

この記事は 2026-06-03 に公開された「Workers - New Workers bulk secrets API endpoint」の内容を日本語で簡潔にまとめたものです。

Key Points

  • ポイント1: Changelog New updates and improvements at Cloudflare.
  • ポイント2: Subscribe to RSS View RSS feeds ← Back to all posts New Workers bulk secrets API endpoint Jun 03, 2026 Workers You can now create, update, or delete multiple secrets for your Worke
  • ポイント3: Include a secret with a value to create or update.

Full Translation

翻訳

原文の流れを保ったまま読める翻訳セクションです。

claudeja

Workers - New Workers bulk secrets API endpoint(原文タイトル)

概要

公開日: 2026-06-03 翻訳生成に失敗したため、原文をそのまま保存しています。

原文

Changelog New updates and improvements at Cloudflare. Subscribe to RSS View RSS feeds ← Back to all posts New Workers bulk secrets API endpoint Jun 03, 2026 Workers You can now create, update, or delete multiple secrets for your Worker in a single request using the bulk secrets endpoint . Include a secret with a value to create or update. Set a secret to null to delete. Secrets not included in the request are left unchanged. The following example creates API_KEY , updates the already existing DB_PASSWORD , and deletes OLD_SECRET : { " secrets " : { " API_KEY " : { " type " : "secret_text" , " name " : "API_KEY" , " text " : "my-api-key" }, " DB_PASSWORD " : { " type " : "secret_text" , " name " : "DB_PASSWORD" , " text " : "my-db-password" }, " OLD_SECRET " : null } } You can do the same from the command line using wrangler secret bulk : Terminal window npx wrangler secret bulk < secrets.json To delete a key, set its value to null in the JSON file. Deletion is not supported with .env files. Each request supports up to 100 total operations (creates, updates, and deletes combined). Resources API New to Cloudflare? Directory Sponsorships Open Source Cloudflare Research Support Help Center System Status Compliance GDPR Company cloudflare.com Our team Careers Tools Cloudflare Radar Cloudflare Labs Speed Test Is BGP Safe Yet? Certificate Transparency Community Community forum X Discord YouTube GitHub © 2026 Cloudflare, Inc. Privacy Policy Terms of Use Report Security Issues Trademark Cookie Settings Was this helpful? Yes No