[{"data":1,"prerenderedAt":1039},["ShallowReactive",2],{"/ja-jp/blog/secrets-manager-in-public-beta":3,"navigation-ja-jp":261,"banner-ja-jp":679,"footer-ja-jp":688,"blog-post-authors-ja-jp-Joe Randazzo|Mark Settle":929,"blog-related-posts-ja-jp-secrets-manager-in-public-beta":956,"blog-promotions-ja-jp":978,"next-steps-ja-jp":1030},{"id":4,"title":5,"authors":6,"body":9,"category":242,"date":243,"description":244,"extension":245,"externalUrl":246,"featured":247,"heroImage":248,"meta":249,"navigation":250,"path":251,"seo":252,"slug":254,"stem":255,"tags":256,"template":259,"updatedDate":246,"__hash__":260},"blogPosts/ja-jp/blog/secrets-manager-in-public-beta.md","GitLab Secrets ManagerでCI/CD認証情報を管理",[7,8],"Joe Randazzo","Mark Settle",{"type":10,"value":11,"toc":229},"minimark",[12,21,31,35,38,41,45,54,65,75,78,82,85,88,96,99,108,111,114,121,124,127,130,134,143,147,150,153,172,175,184,193,197],[13,14,15,16,20],"p",{},"認証情報の漏洩の多くは、認証情報を必要としているのに適切な保存場所がなく、その場しのぎの対応をしたデベロッパーに端を発します。スコープが過剰なCI/CD変数や設定ファイル、あるいは「ちょっとの間だけ」とコミットされた",[17,18,19],"code",{},".env","ファイルに認証情報が紛れ込みます。",[13,22,23,24,30],{},"GitLab 19.0で",[25,26,29],"a",{"href":27,"rel":28},"https://docs.gitlab.com/ja-jp/ci/secrets/secrets_manager/",[],"パブリックベータ版","として提供開始したGitLab Secrets Managerは、コードとパイプラインを実行しているのと同じプラットフォームで認証情報を管理します。各シークレットは必要なジョブにスコープされ、既存のアクセス制御で管理されます。シークレットが意図しない場所に保存されるリスクが減り、万一漏洩した場合でも、セキュリティチームとエンジニアリングチームへの影響を最小限に抑えられます。",[32,33,34],"h2",{"id":34},"シークレットの典型的な保存先",[13,36,37],{},"デベロッパーはしばしば、CI/CD変数にシークレットを格納するという方法をデフォルトで選択します。プロジェクトまたはグループレベルで変数を設定し、値をマスクしてパイプラインを更新する——このやり方では、値がすべてのジョブに注入され、パイプラインへのアクセス権を持つ誰もが読み取れる状態になります。最小権限の原則に反しますが、ビルドは動き続けます。",[13,39,40],{},"よく使われる解決策はスタンドアロンの vault です。シークレットをCI/CD設定から切り出せるものの、恒久的な運用コストが発生します——追加で認証が必要なシステム、別途管理が必要なアクセスモデル、インシデント時に突き合わせが必要な別の監査ストリームです。",[32,42,44],{"id":43},"既存のプロジェクトとパイプラインでsecrets-managerを試す","既存のプロジェクトとパイプラインでSecrets Managerを試す",[13,46,47,48,53],{},"GitLab Secrets Managerは、",[25,49,52],{"href":50,"rel":51},"https://openbao.org/",[],"OpenBao","上に構築されたGitLabのネイティブ機能です。既存のGitLabプラットフォームに組み込まれているため、認証情報は既存のプロジェクトおよびグループ構造の中に留まります。",[13,55,56,57,60,61,64],{},"デベロッパーは",[17,58,59],{},".gitlab-ci.yml","の",[17,62,63],{},"secrets:","キーワードを使って、CI/CD変数からシークレットを移行できます：",[66,67,72],"pre",{"className":68,"code":70,"language":71},[69],"language-text","deploy:\n  secrets:\n    DATABASE_PASSWORD:\n      gitlab_secrets_manager:\n        name: db-password\n  script:\n    - deploy --password $DATABASE_PASSWORD\n","text",[17,73,70],{"__ignoreMap":74},"",[13,76,77],{},"デフォルトでは、GitLabはシークレットを一時ファイルに書き込み、そのパスをジョブにスコープされた環境変数として提供します。値そのものではなくパスを渡すことで、サブプロセス、クラッシュダンプ、テレメトリーへの露出リスクを低減できます。",[79,80,81],"h3",{"id":81},"使い慣れたアクセスモデルをそのまま活用",[13,83,84],{},"スタンドアロンのシークレットマネージャーでは、2つのアクセスモデルを並行して管理しなければなりません。GitLabで構築済みのすべてのチーム、アプリケーション、権限境界を、シークレットツール側でも再構築し、メンバーの入退社やロール変更に合わせて同期し続ける必要があります。2つのシステムが乖離すると——退職したエンジニアの認証情報が残ったままだったり、アプリケーションが不要なアクセス権を蓄積したりすると——そのギャップが悪用される可能性があります。",[13,86,87],{},"Secrets Managerは、既存のグループおよびプロジェクト構造をシークレットの分離境界として使用するため、別途構造を構築・管理する必要はありません。ユーザー、グループ、ロールごとに読み取り・作成・更新・削除の権限を設定できます。グループレベルで作成されたシークレットはその配下のすべてのプロジェクトで利用でき、共通の認証情報は一度定義するだけで必要な場所に継承されます。メンバーがプロジェクトから削除されると、そのプロジェクトのシークレットへのアクセス権も即座に失われます。",[13,89,90],{},[91,92],"img",{"alt":93,"src":94,"title":95},"GitLab Secrets Managerページのスクリーンショット。「保存済みシークレット」テーブルが表示されており、各行にシークレット名、環境とブランチのスコープ、作成日、「Healthy」ステータスが表示されています。","https://res.cloudinary.com/about-gitlab-com/image/upload/v1779288172/o7dlh5uo18gdv6kqxflq.png","GitLab Secrets Managerに保存されたプロジェクトの認証情報",[79,97,98],{"id":98},"必要なジョブにのみスコープされたシークレット",[13,100,101,102,107],{},"3月に",[25,103,106],{"href":104,"rel":105},"https://about.gitlab.com/ja-jp/blog/pipeline-security-lessons-from-march-supply-chain-incidents/",[],"Axios npmパッケージが侵害された際","、感染バージョンを実行していた組織は、パイプラインが触れたすべての認証情報が攻撃者の手に渡ったものとして対応を迫られました。漏洩したシークレットのローテーションと、それらのシークレットがアクセスできるすべてのシステムの監査を、短期間で実施しなければなりませんでした。",[13,109,110],{},"シークレットのスコープが広いほど、漏洩時の対応コストは増大します——そのコストはセキュリティチームだけでなく、マージのブロックやビルドの破損という形でデベロッパーにも及びます。スコープを絞ることで、侵害された認証情報が実際にアクセス権を持っていたシステムだけに対応範囲を限定できます。",[13,112,113],{},"Secrets Managerは、各認証情報を必要なジョブにスコープすることで、侵害時の影響範囲を最小化します。ジョブがシークレットを取得できるかどうかは、3つのジョブ属性に基づいて判断されます——ターゲットとする環境、実行するブランチ、そのブランチが保護されているかどうかです。環境とブランチにはワイルドカードを使用できるため、すべてのケースを列挙する必要はありません。スコープはGitLabがすでに追跡しているジョブ属性で定義されるため、パイプラインと照合するための別システムも不要です。",[13,115,116,117,120],{},"ジョブが実行されると、必要なシークレットの値をリクエストします。シークレットのバックエンドはジョブのIDを検証し、ブランチと環境がスコープルールと一致するかを確認してから値を返します。条件を組み合わせることもでき、保護されたブランチで実行され、かつ",[17,118,119],{},"production/*","環境をターゲットとするジョブのみに認証情報を渡すルールを1つで定義できます。ジョブ終了後、シークレットは破棄されます。Runnerには何も残らず、ジョブログはマスクされます。一方、CI変数はプロジェクト設定の中に無期限に残り続けます。",[79,122,123],{"id":123},"シークレットをパイプラインまでトレースする",[13,125,126],{},"シークレットが漏洩したり依存関係が侵害されたりした場合、対応者はその認証情報を使用したすべてのパイプラインとジョブまでさかのぼる必要があります。これはCIシステム、シークレットツール、IDプロバイダー、その認証情報が触れた他のシステムのログを突き合わせる作業を伴います。",[13,128,129],{},"GitLab Secrets Managerは、プロジェクトおよびグループレベルのシークレットに対する作成・更新・削除イベントを、プラットフォームの他のイベントと同じ監査証跡に記録します。シークレットの変更履歴は、他のガバナンス記録と一元管理されます。CI/CDパイプラインからのシークレット読み取りは、元のパイプラインとジョブIDを含む監査イベントとしてストリーミングされるため、複数システムにまたがるデータを手動で突き合わせることなく、シークレットの使用箇所を追跡できます。監査ログはSelf-Managed版デプロイメントで現在利用可能で、GitLab.comへの対応はパブリックベータプログラム期間中に提供予定です。",[32,131,133],{"id":132},"secrets-managerの動作を確認する","Secrets Managerの動作を確認する",[135,136],"iframe",{"src":137,"frameBorder":138,"allow":139,"referrerPolicy":140,"style":141,"title":142},"https://player.vimeo.com/video/1194101911?badge=0&autopause=0&player_id=0&app_id=58479","0","autoplay; fullscreen; picture-in-picture; clipboard-write; encrypted-media; web-share","strict-origin-when-cross-origin","position:absolute;top:0;left:0;width:100%;height:100%;","19.0 Secrets Manager",[144,145],"script",{"src":146},"https://player.vimeo.com/api/player.js",[32,148,149],{"id":149},"パブリックベータ版に参加する",[13,151,152],{},"GitLab Secrets Managerは、GitLab.comおよびSelf-Managed版デプロイメントのPremiumおよびUltimateユーザー向けにパブリックベータ版として提供中です。GitLab Dedicated版のサポートも近日提供予定です。",[13,154,155,156,160,161,166,167,171],{},"GitLab.comでは、",[25,157,159],{"href":27,"rel":158},[],"オプトインして最初のシークレットを作成","できます。Self-Managed版デプロイメントでは、",[25,162,165],{"href":163,"rel":164},"https://docs.gitlab.com/ja-jp/administration/secrets_manager/",[],"インストール手順","に従い、",[25,168,170],{"href":27,"rel":169},[],"デベロッパーとしてSecrets Managerを使用する方法","もご確認ください。",[13,173,174],{},"HashiCorp Vault、AWS Secrets Manager、Azure Key Vault、Google Cloud Secret Managerとの連携はGitLab Secrets Managerと並行して動作するため、独自のスケジュールで導入を進めることができます。",[13,176,177,178,183],{},"Secrets Managerはベータ版期間中は無料でご利用いただけます。一般提供（GA）後は",[25,179,182],{"href":180,"rel":181},"https://docs.gitlab.com/ja-jp/subscriptions/gitlab_credits/",[],"GitLabクレジット","での課金となる有料機能となります。課金が発生する前にオプトインが必要で、一般提供開始前に事前通知をお送りします。",[13,185,186,187,192],{},"Secrets Managerをお試しいただいたら、",[25,188,191],{"href":189,"rel":190},"https://gitlab.com/gitlab-org/gitlab/-/work_items/598100",[],"フィードバックをお寄せください","。一般提供前の機能改善に反映させていただきます。",[32,194,196],{"id":195},"gitlab-190の詳細はこちら","GitLab 19.0の詳細はこちら",[198,199,200,208,215,222],"ul",{},[201,202,203],"li",{},[25,204,207],{"href":205,"rel":206},"https://docs.gitlab.com/ja-jp/releases/19/gitlab-19-0-released/",[],"GitLab 19.0がリリースされました",[201,209,210],{},[25,211,214],{"href":212,"rel":213},"https://about.gitlab.com/ja-jp/blog/more-ai-models-for-duo-agent-platform-self-hosted/",[],"GitLab Duo Agent Platform Self-Hostedでさらに多くのAIモデルに対応",[201,216,217],{},[25,218,221],{"href":219,"rel":220},"https://about.gitlab.com/ja-jp/blog/transform-mrs-to-automated-workflow/",[],"マージリクエストを手動作業から自動化ワークフローへ",[201,223,224],{},[25,225,228],{"href":226,"rel":227},"https://about.gitlab.com/ja-jp/blog/track-ci-component-usage/",[],"組織全体でCIコンポーネントの使用状況を追跡",{"title":74,"searchDepth":230,"depth":230,"links":231},2,[232,233,239,240,241],{"id":34,"depth":230,"text":34},{"id":43,"depth":230,"text":44,"children":234},[235,237,238],{"id":81,"depth":236,"text":81},3,{"id":98,"depth":236,"text":98},{"id":123,"depth":236,"text":123},{"id":132,"depth":230,"text":133},{"id":149,"depth":230,"text":149},{"id":195,"depth":230,"text":196},"security","2026-05-21","CI/CD変数への認証情報の保存をやめましょう。GitLab Secrets Managerでは、各シークレットを環境またはブランチにスコープし、コードと同じアクセス制御で管理できます。GitLab 19.0でパブリックベータ版を提供開始。","md",null,false,"https://res.cloudinary.com/about-gitlab-com/image/upload/v1779189265/iqzyhhiwagxzwywvjzow.png",{},true,"/ja-jp/blog/secrets-manager-in-public-beta",{"config":253,"title":5,"description":244},{"noIndex":247},"secrets-manager-in-public-beta","ja-jp/blog/secrets-manager-in-public-beta",[242,257,258],"product","features","BlogPost","Pst9Qz3N1mtRYLGSLN182T5L3qSdZ_xv45c36VXxNRo",{"logo":262,"freeTrial":267,"sales":272,"login":277,"items":282,"search":599,"minimal":632,"duo":649,"switchNav":658,"pricingDeployment":669},{"config":263},{"href":264,"dataGaName":265,"dataGaLocation":266},"/ja-jp/","gitlab logo","header",{"text":268,"config":269},"無料トライアルを開始",{"href":270,"dataGaName":271,"dataGaLocation":266},"https://gitlab.com/-/trial_registrations/new?glm_source=about.gitlab.com/ja-jp&glm_content=default-saas-trial/","free trial",{"text":273,"config":274},"お問い合わせはこちら",{"href":275,"dataGaName":276,"dataGaLocation":266},"/ja-jp/sales/","sales",{"text":278,"config":279},"サインイン",{"href":280,"dataGaName":281,"dataGaLocation":266},"https://gitlab.com/users/sign_in/","sign in",[283,312,414,419,523,579],{"text":284,"config":285,"menu":287},"プラットフォーム",{"dataNavLevelOne":286},"platform",{"type":288,"columns":289},"cards",[290,296,304],{"title":284,"description":291,"link":292},"DevSecOpsに特化したインテリジェントオーケストレーションプラットフォーム",{"text":293,"config":294},"プラットフォームの詳細はこちら",{"href":295,"dataGaName":286,"dataGaLocation":266},"/ja-jp/platform/",{"title":297,"description":298,"link":299},"GitLab Duo Agent Platform","ソフトウェアライフサイクル全体を支えるエージェント型AI",{"text":300,"config":301},"GitLab Duoのご紹介",{"href":302,"dataGaName":303,"dataGaLocation":266},"/ja-jp/gitlab-duo-agent-platform/","gitlab duo agent platform",{"title":305,"description":306,"link":307},"GitLabが選ばれる理由","エンタープライズがGitLabを選ぶ主な理由をご覧ください",{"text":308,"config":309},"詳細はこちら",{"href":310,"dataGaName":311,"dataGaLocation":266},"/ja-jp/why-gitlab/","why gitlab",{"text":313,"left":250,"config":314,"menu":316},"製品",{"dataNavLevelOne":315},"solutions",{"type":317,"link":318,"columns":322,"feature":393},"lists",{"text":319,"config":320},"すべてのソリューションを表示",{"href":321,"dataGaName":315,"dataGaLocation":266},"/ja-jp/solutions/",[323,348,371],{"title":324,"description":325,"link":326,"items":331},"自動化","CI/CDと自動化でデプロイを加速",{"config":327},{"icon":328,"href":329,"dataGaName":330,"dataGaLocation":266},"AutomatedCodeAlt","/ja-jp/solutions/delivery-automation/","automated software delivery",[332,336,339,344],{"text":333,"config":334},"CI/CD",{"href":335,"dataGaLocation":266,"dataGaName":333},"/ja-jp/solutions/continuous-integration/",{"text":297,"config":337},{"href":302,"dataGaLocation":266,"dataGaName":338},"gitlab duo agent platform - product menu",{"text":340,"config":341},"ソースコード管理",{"href":342,"dataGaLocation":266,"dataGaName":343},"/ja-jp/solutions/source-code-management/","Source Code Management",{"text":345,"config":346},"自動化されたソフトウェアデリバリー",{"href":329,"dataGaLocation":266,"dataGaName":347},"Automated software delivery",{"title":349,"description":350,"link":351,"items":356},"セキュリティ","セキュリティを犠牲にすることなくコード作成を高速化",{"config":352},{"href":353,"dataGaName":354,"dataGaLocation":266,"icon":355},"/ja-jp/solutions/application-security-testing/","security and compliance","ShieldCheckLight",[357,361,366],{"text":358,"config":359},"アプリケーションセキュリティテスト",{"href":353,"dataGaName":360,"dataGaLocation":266},"Application security testing",{"text":362,"config":363},"ソフトウェアサプライチェーンセキュリティ",{"href":364,"dataGaLocation":266,"dataGaName":365},"/ja-jp/solutions/supply-chain/","Software supply chain security",{"text":367,"config":368},"ソフトウェアコンプライアンス",{"href":369,"dataGaName":370,"dataGaLocation":266},"/ja-jp/solutions/software-compliance/","software compliance",{"title":372,"link":373,"items":378},"測定",{"config":374},{"icon":375,"href":376,"dataGaName":377,"dataGaLocation":266},"DigitalTransformation","/ja-jp/solutions/visibility-measurement/","visibility and measurement",[379,383,388],{"text":380,"config":381},"可視性と測定",{"href":376,"dataGaLocation":266,"dataGaName":382},"Visibility and Measurement",{"text":384,"config":385},"バリューストリーム管理",{"href":386,"dataGaLocation":266,"dataGaName":387},"/ja-jp/solutions/value-stream-management/","Value Stream Management",{"text":389,"config":390},"分析とインサイト",{"href":391,"dataGaLocation":266,"dataGaName":392},"/ja-jp/solutions/analytics-and-insights/","Analytics and insights",{"title":394,"type":317,"items":395},"GitLabが活躍する場所",[396,402,408],{"text":397,"config":398},"大企業",{"icon":399,"href":400,"dataGaLocation":266,"dataGaName":401},"Building","/ja-jp/enterprise/","enterprise",{"text":403,"config":404},"スモールビジネス",{"icon":405,"href":406,"dataGaLocation":266,"dataGaName":407},"Work","/ja-jp/small-business/","small business",{"text":409,"config":410},"公共部門",{"icon":411,"href":412,"dataGaLocation":266,"dataGaName":413},"Organization","/ja-jp/solutions/public-sector/","public sector",{"text":415,"config":416},"価格",{"href":417,"dataGaName":418,"dataGaLocation":266,"dataNavLevelOne":418},"/ja-jp/pricing/","pricing",{"text":420,"config":421,"menu":423},"関連リソース",{"dataNavLevelOne":422},"resources",{"type":317,"link":424,"columns":428,"feature":512},{"text":425,"config":426},"すべてのリソースを表示",{"href":427,"dataGaName":422,"dataGaLocation":266},"/ja-jp/resources/",[429,462,484],{"title":430,"items":431},"はじめに",[432,437,442,447,452,457],{"text":433,"config":434},"インストール",{"href":435,"dataGaName":436,"dataGaLocation":266},"/ja-jp/install/","install",{"text":438,"config":439},"クイックスタートガイド",{"href":440,"dataGaName":441,"dataGaLocation":266},"/ja-jp/get-started/","quick setup checklists",{"text":443,"config":444},"学ぶ",{"href":445,"dataGaLocation":266,"dataGaName":446},"https://university.gitlab.com/","learn",{"text":448,"config":449},"製品ドキュメント",{"href":450,"dataGaName":451,"dataGaLocation":266},"https://docs.gitlab.com/","product documentation",{"text":453,"config":454},"ベストプラクティスビデオ",{"href":455,"dataGaName":456,"dataGaLocation":266},"/ja-jp/getting-started-videos/","best practice videos",{"text":458,"config":459},"インテグレーション",{"href":460,"dataGaName":461,"dataGaLocation":266},"/ja-jp/integrations/","integrations",{"title":463,"items":464},"検索する",[465,470,475,479],{"text":466,"config":467},"お客様成功事例",{"href":468,"dataGaName":469,"dataGaLocation":266},"/ja-jp/customers/","customer success stories",{"text":471,"config":472},"ブログ",{"href":473,"dataGaName":474,"dataGaLocation":266},"/ja-jp/blog/","blog",{"text":476,"config":477},"The Source",{"href":478,"dataGaName":474,"dataGaLocation":266},"/ja-jp/the-source/",{"text":480,"config":481},"リモート",{"href":482,"dataGaName":483,"dataGaLocation":266},"https://handbook.gitlab.com/handbook/company/culture/all-remote/","remote",{"title":485,"items":486},"つなげる",[487,492,497,502,507],{"text":488,"config":489},"GitLabサービス",{"href":490,"dataGaName":491,"dataGaLocation":266},"/ja-jp/services/","services",{"text":493,"config":494},"コミュニティ",{"href":495,"dataGaName":496,"dataGaLocation":266},"/community/","community",{"text":498,"config":499},"フォーラム",{"href":500,"dataGaName":501,"dataGaLocation":266},"https://forum.gitlab.com/","forum",{"text":503,"config":504},"イベント",{"href":505,"dataGaName":506,"dataGaLocation":266},"/events/","events",{"text":508,"config":509},"パートナー",{"href":510,"dataGaName":511,"dataGaLocation":266},"/ja-jp/partners/","partners",{"config":513,"title":516,"text":517,"link":518},{"background":514,"textColor":515},"url('https://res.cloudinary.com/about-gitlab-com/image/upload/v1777322348/qpq8yrgn8knii57omj0c.png')","#000","GitLabの最新情報","最新の機能と改善点に関する情報をお届けします。",{"text":519,"config":520},"最新情報を読む",{"href":521,"dataGaName":522,"dataGaLocation":266},"/ja-jp/whats-new/","whats new",{"text":524,"config":525,"menu":527},"企業情報",{"dataNavLevelOne":526},"company",{"type":317,"columns":528},[529],{"items":530},[531,536,542,544,549,554,559,564,569,574],{"text":532,"config":533},"GitLabについて",{"href":534,"dataGaName":535,"dataGaLocation":266},"/ja-jp/company/","about",{"text":537,"config":538,"footerGa":541},"採用情報",{"href":539,"dataGaName":540,"dataGaLocation":266},"/jobs/","jobs",{"dataGaName":540},{"text":503,"config":543},{"href":505,"dataGaName":506,"dataGaLocation":266},{"text":545,"config":546},"経営陣",{"href":547,"dataGaName":548,"dataGaLocation":266},"/company/team/e-group/","leadership",{"text":550,"config":551},"ハンドブック",{"href":552,"dataGaName":553,"dataGaLocation":266},"https://handbook.gitlab.com/","handbook",{"text":555,"config":556},"投資家向け情報",{"href":557,"dataGaName":558,"dataGaLocation":266},"https://ir.gitlab.com/","investor relations",{"text":560,"config":561},"トラストセンター",{"href":562,"dataGaName":563,"dataGaLocation":266},"/ja-jp/security/","trust center",{"text":565,"config":566},"AI Transparency Center",{"href":567,"dataGaName":568,"dataGaLocation":266},"/ja-jp/ai-transparency-center/","ai transparency center",{"text":570,"config":571},"ニュースレター",{"href":572,"dataGaName":573,"dataGaLocation":266},"/company/contact/#contact-forms","newsletter",{"text":575,"config":576},"プレス",{"href":577,"dataGaName":578,"dataGaLocation":266},"/press/","press",{"text":580,"config":581,"menu":582},"お問い合わせ",{"dataNavLevelOne":526},{"type":317,"columns":583},[584],{"items":585},[586,589,594],{"text":273,"config":587},{"href":275,"dataGaName":588,"dataGaLocation":266},"talk to sales",{"text":590,"config":591},"サポートを受ける",{"href":592,"dataGaName":593,"dataGaLocation":266},"https://support.gitlab.com","support portal",{"text":595,"config":596},"カスタマーポータル",{"href":597,"dataGaName":598,"dataGaLocation":266},"https://customers.gitlab.com/customers/sign_in/","customer portal",{"close":600,"login":601,"suggestions":608},"閉じる",{"text":602,"link":603},"リポジトリとプロジェクトを検索するには、次にログインします",{"text":604,"config":605},"GitLab.com",{"href":280,"dataGaName":606,"dataGaLocation":607},"search login","search",{"text":609,"default":610},"提案",[611,613,618,620,624,628],{"text":297,"config":612},{"href":302,"dataGaName":297,"dataGaLocation":607},{"text":614,"config":615},"コード提案（AI）",{"href":616,"dataGaName":617,"dataGaLocation":607},"/ja-jp/solutions/code-suggestions/","Code Suggestions (AI)",{"text":333,"config":619},{"href":335,"dataGaName":333,"dataGaLocation":607},{"text":621,"config":622},"GitLab on AWS",{"href":623,"dataGaName":621,"dataGaLocation":607},"/ja-jp/partners/technology-partners/aws/",{"text":625,"config":626},"GitLab on Google Cloud",{"href":627,"dataGaName":625,"dataGaLocation":607},"/ja-jp/partners/technology-partners/google-cloud-platform/",{"text":629,"config":630},"GitLabを選ぶ理由",{"href":310,"dataGaName":631,"dataGaLocation":607},"Why GitLab?",{"freeTrial":633,"mobileIcon":637,"desktopIcon":642,"secondaryButton":645},{"text":268,"config":634},{"href":635,"dataGaName":271,"dataGaLocation":636},"https://gitlab.com/-/trials/new/","nav",{"altText":638,"config":639},"GitLabアイコン",{"src":640,"dataGaName":641,"dataGaLocation":636},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1758203874/jypbw1jx72aexsoohd7x.svg","gitlab icon",{"altText":638,"config":643},{"src":644,"dataGaName":641,"dataGaLocation":636},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1758203875/gs4c8p8opsgvflgkswz9.svg",{"text":430,"config":646},{"href":647,"dataGaName":648,"dataGaLocation":636},"https://gitlab.com/-/trial_registrations/new?glm_source=about.gitlab.com/ja-jp/get-started/","get started",{"freeTrial":650,"mobileIcon":654,"desktopIcon":656},{"text":651,"config":652},"GitLab Duoの詳細について",{"href":302,"dataGaName":653,"dataGaLocation":636},"gitlab duo",{"altText":638,"config":655},{"src":640,"dataGaName":641,"dataGaLocation":636},{"altText":638,"config":657},{"src":644,"dataGaName":641,"dataGaLocation":636},{"button":659,"mobileIcon":664,"desktopIcon":666},{"text":660,"config":661},"/switch",{"href":662,"dataGaName":663,"dataGaLocation":636},"#contact","switch",{"altText":638,"config":665},{"src":640,"dataGaName":641,"dataGaLocation":636},{"altText":638,"config":667},{"src":668,"dataGaName":641,"dataGaLocation":636},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1773335277/ohhpiuoxoldryzrnhfrh.png",{"freeTrial":670,"mobileIcon":675,"desktopIcon":677},{"text":671,"config":672},"料金ページに戻る",{"href":417,"dataGaName":673,"dataGaLocation":636,"icon":674},"back to pricing","GoBack",{"altText":638,"config":676},{"src":640,"dataGaName":641,"dataGaLocation":636},{"altText":638,"config":678},{"src":644,"dataGaName":641,"dataGaLocation":636},{"title":680,"button":681,"config":686},"エージェント型AIがソフトウェアデリバリーをどのように変革するかをご覧ください",{"text":682,"config":683},"6月18日のGitLab Transcend日本開催版に申し込む",{"href":684,"dataGaName":685,"dataGaLocation":266},"/ja-jp/events/transcend/virtual/","transcend event",{"layout":687,"disabled":247},"release",{"data":689},{"text":690,"source":691,"edit":697,"contribute":702,"config":707,"items":712,"minimal":920},"GitはSoftware Freedom Conservancyの商標です。当社は「GitLab」をライセンスに基づいて使用しています",{"text":692,"config":693},"ページのソースを表示",{"href":694,"dataGaName":695,"dataGaLocation":696},"https://gitlab.com/gitlab-com/marketing/digital-experience/about-gitlab-com/","page source","footer",{"text":698,"config":699},"このページを編集",{"href":700,"dataGaName":701,"dataGaLocation":696},"https://gitlab.com/gitlab-com/marketing/digital-experience/about-gitlab-com/-/blob/main/content/","web ide",{"text":703,"config":704},"ご協力をお願いします",{"href":705,"dataGaName":706,"dataGaLocation":696},"https://gitlab.com/gitlab-com/marketing/digital-experience/about-gitlab-com/-/blob/main/CONTRIBUTING.md/","please contribute",{"twitter":708,"facebook":709,"youtube":710,"linkedin":711},"https://twitter.com/gitlab","https://www.facebook.com/gitlab","https://www.youtube.com/channel/UCnMGQ8QHMAnVIsI3xJrihhg","https://www.linkedin.com/company/gitlab-com",[713,758,811,855,887],{"title":415,"links":714,"subMenu":729},[715,719,724],{"text":716,"config":717},"プランの表示",{"href":417,"dataGaName":718,"dataGaLocation":696},"view plans",{"text":720,"config":721},"Premiumを選ぶ理由",{"href":722,"dataGaName":723,"dataGaLocation":696},"/ja-jp/pricing/premium/","why premium",{"text":725,"config":726},"Ultimateを選ぶ理由",{"href":727,"dataGaName":728,"dataGaLocation":696},"/ja-jp/pricing/ultimate/","why ultimate",[730],{"title":580,"links":731},[732,734,736,738,743,748,753],{"text":580,"config":733},{"href":275,"dataGaName":276,"dataGaLocation":696},{"text":590,"config":735},{"href":592,"dataGaName":593,"dataGaLocation":696},{"text":595,"config":737},{"href":597,"dataGaName":598,"dataGaLocation":696},{"text":739,"config":740},"ステータス",{"href":741,"dataGaName":742,"dataGaLocation":696},"https://status.gitlab.com/","status",{"text":744,"config":745},"利用規約",{"href":746,"dataGaName":747,"dataGaLocation":696},"/terms/","terms of use",{"text":749,"config":750},"プライバシーに関する声明",{"href":751,"dataGaName":752,"dataGaLocation":696},"/ja-jp/privacy/","privacy statement",{"text":754,"config":755},"Cookie 優先設定",{"dataGaName":756,"dataGaLocation":696,"id":757,"isOneTrustButton":250},"cookie preferences","ot-sdk-btn",{"title":313,"links":759,"subMenu":768},[760,764],{"text":761,"config":762},"DevSecOpsプラットフォーム",{"href":295,"dataGaName":763,"dataGaLocation":696},"devsecops platform",{"text":765,"config":766},"AI支援開発",{"href":302,"dataGaName":767,"dataGaLocation":696},"ai-assisted development",[769],{"title":770,"links":771},"トピック",[772,776,781,786,791,796,801,806],{"text":333,"config":773},{"href":774,"dataGaName":775,"dataGaLocation":696},"/ja-jp/topics/ci-cd/","cicd",{"text":777,"config":778},"GitOps",{"href":779,"dataGaName":780,"dataGaLocation":696},"/ja-jp/topics/gitops/","gitops",{"text":782,"config":783},"DevOps",{"href":784,"dataGaName":785,"dataGaLocation":696},"/ja-jp/topics/devops/","devops",{"text":787,"config":788},"バージョン管理",{"href":789,"dataGaName":790,"dataGaLocation":696},"/ja-jp/topics/version-control/","version control",{"text":792,"config":793},"DevSecOps",{"href":794,"dataGaName":795,"dataGaLocation":696},"/ja-jp/topics/devsecops/","devsecops",{"text":797,"config":798},"クラウドネイティブ",{"href":799,"dataGaName":800,"dataGaLocation":696},"/ja-jp/topics/cloud-native/","cloud native",{"text":802,"config":803},"コーディングのためのAI",{"href":804,"dataGaName":805,"dataGaLocation":696},"/ja-jp/topics/devops/ai-for-coding/","ai for coding",{"text":807,"config":808},"エージェント型AI",{"href":809,"dataGaName":810,"dataGaLocation":696},"/ja-jp/topics/agentic-ai/","agentic ai",{"title":812,"links":813},"ソリューション",[814,817,819,824,828,831,834,837,840,842,845,850],{"text":358,"config":815},{"href":353,"dataGaName":816,"dataGaLocation":696},"Application Security Testing",{"text":345,"config":818},{"href":329,"dataGaName":330,"dataGaLocation":696},{"text":820,"config":821},"アジャイル開発",{"href":822,"dataGaName":823,"dataGaLocation":696},"/ja-jp/solutions/agile-delivery/","agile delivery",{"text":825,"config":826},"SCM",{"href":342,"dataGaName":827,"dataGaLocation":696},"source code management",{"text":333,"config":829},{"href":335,"dataGaName":830,"dataGaLocation":696},"continuous integration & delivery",{"text":384,"config":832},{"href":386,"dataGaName":833,"dataGaLocation":696},"value stream management",{"text":777,"config":835},{"href":836,"dataGaName":780,"dataGaLocation":696},"/ja-jp/solutions/gitops/",{"text":838,"config":839},"エンタープライズ",{"href":400,"dataGaName":401,"dataGaLocation":696},{"text":403,"config":841},{"href":406,"dataGaName":407,"dataGaLocation":696},{"text":843,"config":844},"公共機関",{"href":412,"dataGaName":413,"dataGaLocation":696},{"text":846,"config":847},"教育",{"href":848,"dataGaName":849,"dataGaLocation":696},"/ja-jp/solutions/education/","education",{"text":851,"config":852},"金融サービス",{"href":853,"dataGaName":854,"dataGaLocation":696},"/ja-jp/solutions/finance/","financial services",{"title":856,"links":857},"リソース",[858,860,862,864,868,870,873,875,877,879,881,883,885],{"text":433,"config":859},{"href":435,"dataGaName":436,"dataGaLocation":696},{"text":438,"config":861},{"href":440,"dataGaName":441,"dataGaLocation":696},{"text":443,"config":863},{"href":445,"dataGaName":446,"dataGaLocation":696},{"text":448,"config":865},{"href":866,"dataGaName":867,"dataGaLocation":696},"https://docs.gitlab.com/ja-jp/","docs",{"text":471,"config":869},{"href":473,"dataGaName":474,"dataGaLocation":696},{"text":871,"config":872},"新着情報",{"href":521,"dataGaName":522,"dataGaLocation":696},{"text":466,"config":874},{"href":468,"dataGaName":469,"dataGaLocation":696},{"text":480,"config":876},{"href":482,"dataGaName":483,"dataGaLocation":696},{"text":488,"config":878},{"href":490,"dataGaName":491,"dataGaLocation":696},{"text":493,"config":880},{"href":495,"dataGaName":496,"dataGaLocation":696},{"text":498,"config":882},{"href":500,"dataGaName":501,"dataGaLocation":696},{"text":503,"config":884},{"href":505,"dataGaName":506,"dataGaLocation":696},{"text":508,"config":886},{"href":510,"dataGaName":511,"dataGaLocation":696},{"title":888,"links":889},"会社情報",[890,892,894,896,898,900,904,909,911,913,915],{"text":532,"config":891},{"href":534,"dataGaName":526,"dataGaLocation":696},{"text":537,"config":893},{"href":539,"dataGaName":540,"dataGaLocation":696},{"text":545,"config":895},{"href":547,"dataGaName":548,"dataGaLocation":696},{"text":550,"config":897},{"href":552,"dataGaName":553,"dataGaLocation":696},{"text":555,"config":899},{"href":557,"dataGaName":558,"dataGaLocation":696},{"text":901,"config":902},"Sustainability",{"href":903,"dataGaName":901,"dataGaLocation":696},"/sustainability/",{"text":905,"config":906},"ダイバーシティ、インクルージョン、ビロンギング（DIB）",{"href":907,"dataGaName":908,"dataGaLocation":696},"/ja-jp/diversity-inclusion-belonging/","Diversity, inclusion and belonging",{"text":560,"config":910},{"href":562,"dataGaName":563,"dataGaLocation":696},{"text":570,"config":912},{"href":572,"dataGaName":573,"dataGaLocation":696},{"text":575,"config":914},{"href":577,"dataGaName":578,"dataGaLocation":696},{"text":916,"config":917},"現代奴隷制の透明性に関する声明",{"href":918,"dataGaName":919,"dataGaLocation":696},"https://handbook.gitlab.com/handbook/legal/modern-slavery-act-transparency-statement/","modern slavery transparency statement",{"items":921},[922,924,927],{"text":744,"config":923},{"href":746,"dataGaName":747,"dataGaLocation":696},{"text":925,"config":926},"Cookieの設定",{"dataGaName":756,"dataGaLocation":696,"id":757,"isOneTrustButton":250},{"text":749,"config":928},{"href":751,"dataGaName":752,"dataGaLocation":696},[930,944],{"id":931,"title":7,"body":246,"config":932,"content":934,"description":246,"extension":938,"meta":939,"navigation":250,"path":940,"seo":941,"stem":942,"__hash__":943},"blogAuthors/en-us/blog/authors/joe-randazzo.yml",{"template":933},"BlogAuthor",{"name":7,"config":935},{"headshot":936,"ctfId":937},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664711/Blog/Author%20Headshots/randazzo.jpg","5DxpEbIVcwN2ukwiEMsHlH","yml",{},"/en-us/blog/authors/joe-randazzo",{},"en-us/blog/authors/joe-randazzo","Kg6ZOiBKQgjjlIpsfIAWHsug3iGMaAK1trTdXg4BaFI",{"id":945,"title":8,"body":246,"config":946,"content":947,"description":246,"extension":938,"meta":951,"navigation":250,"path":952,"seo":953,"stem":954,"__hash__":955},"blogAuthors/en-us/blog/authors/mark-settle.yml",{"template":933},{"name":8,"config":948},{"headshot":949,"ctfId":950},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1779215794/fw131xublkzdvjdadd4q.png","marksettle",{},"/en-us/blog/authors/mark-settle",{},"en-us/blog/authors/mark-settle","aur3jcqDyhashUtyXhd1W7N3ZrN09waCQv135AABEt4",[957,964,970],{"title":958,"description":959,"heroImage":248,"category":242,"date":960,"authors":961,"slug":963,"externalUrl":246},"数分でコードベース全体のセキュリティスキャンを完全カバー","GitLab 19.0のセキュリティ設定プロファイルを活用すると、SAST・依存関係スキャン・シークレット検出を数千のプロジェクトに一括適用できます。YAMLファイルを編集せずにスキャナーカバレッジを迅速に確立し、セキュリティの抜け漏れをなくします。","2026-05-26",[962],"Michael Omokoh","security-configuration-profiles",{"title":965,"description":966,"heroImage":248,"category":242,"date":960,"authors":967,"slug":969,"externalUrl":246},"SBOMベースの依存関係スキャンでサプライチェーンリスクを軽減","GitLab 19.0でSBOMベースの依存関係スキャンが一般提供開始。プロジェクト内の直接・推移的依存関係を網羅的に一覧化し、脆弱なパッケージがプロジェクトに混入した経路を追跡します。コードが実際に使用している脆弱性を優先的に特定・修正できます。",[8,968],"Joel Patterson","sbom-based-dependency-scanning",{"title":971,"description":972,"heroImage":973,"category":242,"date":974,"authors":975,"slug":977,"externalUrl":246},"誤解を招く脆弱性の重大度を、ポリシーで修正する5つの方法","デフォルトのCVSSスコアは実際のリスクを反映していません。GitLabの重大度オーバーライドポリシーを使用すると、CVE、CWE、ファイルパス、ディレクトリを条件として重大度を自動調整し、実際のリスクに即した脆弱性レポートを実現できます。","https://res.cloudinary.com/about-gitlab-com/image/upload/v1772630163/akp8ly2mrsfrhsb0liyb.png","2026-05-13",[976],"Grant Hickman","severity-override-vulnerability-management-policy",{"promotions":979},[980,994,1005,1016],{"id":981,"categories":982,"header":984,"text":985,"button":986,"image":991},"ai-modernization",[983],"ai","AIの真価、組織全体で発揮できていますか？","所要時間は5分以内です",{"text":987,"config":988},"AI成熟度スコアを確認する",{"href":989,"dataGaName":990,"dataGaLocation":474},"/ja-jp/assessments/ai-modernization-assessment/","modernization assessment",{"config":992},{"src":993},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1772138786/qix0m7kwnd8x2fh1zq49.png",{"id":995,"categories":996,"header":997,"text":985,"button":998,"image":1002},"devops-modernization",[257,795],"単にツールを管理するだけでなく、イノベーションを提供していますか？",{"text":999,"config":1000},"DevOps成熟度スコアを確認しましょう",{"href":1001,"dataGaName":990,"dataGaLocation":474},"/ja-jp/assessments/devops-modernization-assessment/",{"config":1003},{"src":1004},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1772138785/eg818fmakweyuznttgid.png",{"id":1006,"categories":1007,"header":1008,"text":985,"button":1009,"image":1013},"security-modernization",[242],"スピードのためにセキュリティを犠牲にしていませんか？",{"text":1010,"config":1011},"セキュリティ成熟度スコアを確認しましょう",{"href":1012,"dataGaName":990,"dataGaLocation":474},"/ja-jp/assessments/security-modernization-assessment/",{"config":1014},{"src":1015},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1772138786/p4pbqd9nnjejg5ds6mdk.png",{"id":1017,"paths":1018,"header":1021,"text":1022,"button":1023,"image":1028},"github-azure-migration",[1019,1020],"migration-from-azure-devops-to-gitlab","integrating-azure-devops-scm-and-gitlab","チームはGitHubのAzure移行に対応できていますか？","GitHubはすでにAzureを基盤として再構築を進めています。それがあなたのチームにとって何を意味するのか、ご確認ください。",{"text":1024,"config":1025},"GitLabとGitHubの比較を見る",{"href":1026,"dataGaName":1027,"dataGaLocation":474},"/ja-jp/compare/gitlab-vs-github/github-azure-migration/","github azure migration",{"config":1029},{"src":1004},{"header":1031,"blurb":1032,"button":1033,"secondaryButton":1037},"今すぐ開発をスピードアップ","DevSecOpsに特化したインテリジェントオーケストレーションプラットフォームで実現できることをご確認ください。\n",{"text":268,"config":1034},{"href":1035,"dataGaName":271,"dataGaLocation":1036},"https://gitlab.com/-/trial_registrations/new?glm_content=default-saas-trial&glm_source=about.gitlab.com/ja-jp/","feature",{"text":580,"config":1038},{"href":275,"dataGaName":276,"dataGaLocation":1036},1781392797684]