[{"data":1,"prerenderedAt":1258},["ShallowReactive",2],{"/blog/tutorial-secure-bigquery-data-publishing-with-gitlab":3,"navigation-en-us":473,"banner-en-us":900,"footer-en-us":910,"blog-post-authors-en-us-Regnard Raquedan":1153,"blog-related-posts-en-us-tutorial-secure-bigquery-data-publishing-with-gitlab":1168,"blog-promotions-en-us":1194,"next-steps-en-us":1248},{"id":4,"title":5,"authors":6,"body":8,"category":449,"date":450,"description":451,"extension":452,"externalUrl":453,"faq":453,"featured":220,"heroImage":454,"meta":455,"navigation":220,"path":456,"seo":457,"slug":462,"stem":463,"tags":464,"template":471,"updatedDate":453,"__hash__":472},"blogPosts/en-us/blog/tutorial-secure-bigquery-data-publishing-with-gitlab.md","Tutorial: Secure BigQuery data publishing with GitLab ",[7],"Regnard Raquedan",{"type":9,"value":10,"toc":442},"minimark",[11,22,25,37,42,45,67,71,74,110,114,119,122,162,167,174,184,187,192,199,375,380,383,387,419,423,426,438],[12,13,14,15,21],"p",{},"GitLab offers a powerful solution for automating and securing ",[16,17,20],"a",{"href":18,"rel":19},"https://cloud.google.com/bigquery",[],"BigQuery"," data exports. This integration transforms manual exports into repeatable, auditable processes that can eliminate security vulnerabilities while saving valuable time. This tutorial explains how to implement this solution so you can quickly reduce manual operations, permission issues, and security concerns with just a few lines of GitLab YAML code.",[12,23,24],{},"Follow along with this step-by-step video:",[26,27,30,31],"figure",{"className":28},[29],"video_container","\n  ",[32,33],"iframe",{"src":34,"frameBorder":35,"allowFullScreen":36},"https://www.youtube.com/embed/gxXX-ItAreo?si=FijY9wMVppCW-18q","0","true",[38,39,41],"h2",{"id":40},"the-solution-architecture","The solution architecture",[12,43,44],{},"Our solution leverages GitLab CI/CD pipelines to automate the secure export of data from BigQuery to Google Cloud Storage. Here's the high-level architecture:",[46,47,48,52,55,58,61,64],"ol",{},[49,50,51],"li",{},"SQL code is stored and version-controlled in GitLab.",[49,53,54],{},"After code review and approval, GitLab CI/CD pipeline executes the code.",[49,56,57],{},"The pipeline authenticates with Google Cloud.",[49,59,60],{},"SQL queries are executed against BigQuery.",[49,62,63],{},"Results are exported as CSV files to Google Cloud Storage.",[49,65,66],{},"Secure links to these files are provided for authorized consumption.",[38,68,70],{"id":69},"prerequisites","Prerequisites",[12,72,73],{},"Before we begin, ensure you have:",[75,76,77,84,104],"ul",{},[49,78,79,83],{},[80,81,82],"strong",{},"Google Cloud APIs enabled:"," BigQuery API and Cloud Storage API",[49,85,86,89,90],{},[80,87,88],{},"Service account"," with appropriate permissions:\n",[75,91,92,95,98],{},[49,93,94],{},"BigQuery Job User",[49,96,97],{},"Storage Admin",[49,99,100,103],{},[80,101,102],{},"Note:"," For this demo, we're using the service account approach for authentication, which is simpler to set up. For production environments, you might consider using GitLab's identity and access management integration with Google Cloud. This integration leverages Workload Identity Federation, which provides enhanced security and is more suitable for enterprise customers and organizations.",[49,105,106,109],{},[80,107,108],{},"GitLab project"," ready to store your SQL code and pipeline configuration",[38,111,113],{"id":112},"step-by-step-implementation","Step-by-step implementation",[12,115,116],{},[80,117,118],{},"1. Configure Google Cloud credentials.",[12,120,121],{},"First, set up the necessary environment variables in your GitLab project:",[75,123,124,131,138],{},[49,125,126,127,130],{},"Go to your ",[80,128,129],{},"GitLab project > Settings > CI/CD",".",[49,132,133,134,137],{},"Expand the ",[80,135,136],{},"Variables"," section.",[49,139,140,141],{},"Add the following variables:\n",[75,142,143,150,156],{},[49,144,145,149],{},[146,147,148],"code",{},"GCS_BUCKET",": Your Google Cloud Storage bucket name",[49,151,152,155],{},[146,153,154],{},"GCP_PROJECT_ID",": Your Google Cloud project ID",[49,157,158,161],{},[146,159,160],{},"GCP_SA_KEY",": Base64-encoded service account key (mark as masked)",[12,163,164],{},[80,165,166],{},"2. Create your SQL query.",[12,168,169,170,173],{},"Create a file named ",[146,171,172],{},"query.sql"," in your GitLab repository with your BigQuery SQL query. The query looks like this:",[175,176,182],"pre",{"className":177,"code":179,"language":180,"meta":181},[178],"language-text","-- This query shows a list of the daily top Google Search terms.\nSELECT\n   refresh_date AS Day,\n   term AS Top_Term,\n       -- These search terms are in the top 25 in the US each day.\n   rank,\nFROM `bigquery-public-data.google_trends.top_terms`\nWHERE\n   rank = 1\n       -- Choose only the top term each day.\n   AND refresh_date >= DATE_SUB(CURRENT_DATE(), INTERVAL 2 WEEK)\n       -- Filter to the last 2 weeks.\nGROUP BY Day, Top_Term, rank\nORDER BY Day DESC\n   -- Show the days in reverse chronological order.\n\n","text","",[146,183,179],{"__ignoreMap":181},[12,185,186],{},"This query gets the top 25 search terms from Google Trends for the current day.",[12,188,189],{},[80,190,191],{},"3. Configure the GitLab CI/CD pipeline.",[12,193,194,195,198],{},"Create a ",[146,196,197],{},".gitlab-ci.yml"," file in your repository root:",[175,200,204],{"className":201,"code":202,"language":203,"meta":181,"style":181},"language-markdown shiki shiki-themes github-light","image: google/cloud-sdk:alpine\n\ninclude:\n  - template: Jobs/Secret-Detection.gitlab-ci.yml  # https://gitlab.com/gitlab-org/gitlab/blob/master/lib/gitlab/ci/templates/Jobs/Secret-Detection.gitlab-ci.yml\n\nexecute:\n  stage: deploy\n  script: \n    # Set up Google Cloud authentication and install necessary components\n    - export GOOGLE_CLOUD_CREDENTIALS=$(echo $SERVICE_ACCOUNT_KEY | base64 -d)\n    - echo $GOOGLE_CLOUD_CREDENTIALS > service-account-key.json \n    - gcloud auth activate-service-account --key-file service-account-key.json \n    - gcloud components install gsutil\n    # Set the active Google Cloud project\n    - gcloud config set project $PROJECT_ID\n    # Run the BigQuery query and export the results to a CSV file\n    - bq query --format=csv --use_legacy_sql=false \u003C test.sql > results.csv\n    # Create a Google Cloud Storage bucket if it doesn't exist\n    - gsutil ls gs://${CLOUD_STORAGE_BUCKET} || gsutil mb gs://${CLOUD_STORAGE_BUCKET}\n    # Upload the CSV file to the storage bucket\n    - gsutil cp results.csv gs://${CLOUD_STORAGE_BUCKET}/results.csv\n    # Set the access control list (ACL) to make the CSV file publicly readable\n    - gsutil acl ch -u AllUsers:R gs://${CLOUD_STORAGE_BUCKET}/results.csv\n    # Define the static URL for the CSV file\n    - export STATIC_URL=\"https://storage.googleapis.com/${CLOUD_STORAGE_BUCKET}/results.csv\"\n    # Display the static URL for the CSV file\n    - echo \"File URL = $STATIC_URL\"\n\n","markdown",[146,205,206,215,222,228,238,243,249,255,261,267,273,279,285,291,297,303,309,315,321,327,333,339,345,351,357,363,369],{"__ignoreMap":181},[207,208,211],"span",{"class":209,"line":210},"line",1,[207,212,214],{"class":213},"sgsFI","image: google/cloud-sdk:alpine\n",[207,216,218],{"class":209,"line":217},2,[207,219,221],{"emptyLinePlaceholder":220},true,"\n",[207,223,225],{"class":209,"line":224},3,[207,226,227],{"class":213},"include:\n",[207,229,231,235],{"class":209,"line":230},4,[207,232,234],{"class":233},"sqxcx","  -",[207,236,237],{"class":213}," template: Jobs/Secret-Detection.gitlab-ci.yml  # https://gitlab.com/gitlab-org/gitlab/blob/master/lib/gitlab/ci/templates/Jobs/Secret-Detection.gitlab-ci.yml\n",[207,239,241],{"class":209,"line":240},5,[207,242,221],{"emptyLinePlaceholder":220},[207,244,246],{"class":209,"line":245},6,[207,247,248],{"class":213},"execute:\n",[207,250,252],{"class":209,"line":251},7,[207,253,254],{"class":213},"  stage: deploy\n",[207,256,258],{"class":209,"line":257},8,[207,259,260],{"class":213},"  script: \n",[207,262,264],{"class":209,"line":263},9,[207,265,266],{"class":213},"    # Set up Google Cloud authentication and install necessary components\n",[207,268,270],{"class":209,"line":269},10,[207,271,272],{"class":213},"    - export GOOGLE_CLOUD_CREDENTIALS=$(echo $SERVICE_ACCOUNT_KEY | base64 -d)\n",[207,274,276],{"class":209,"line":275},11,[207,277,278],{"class":213},"    - echo $GOOGLE_CLOUD_CREDENTIALS > service-account-key.json \n",[207,280,282],{"class":209,"line":281},12,[207,283,284],{"class":213},"    - gcloud auth activate-service-account --key-file service-account-key.json \n",[207,286,288],{"class":209,"line":287},13,[207,289,290],{"class":213},"    - gcloud components install gsutil\n",[207,292,294],{"class":209,"line":293},14,[207,295,296],{"class":213},"    # Set the active Google Cloud project\n",[207,298,300],{"class":209,"line":299},15,[207,301,302],{"class":213},"    - gcloud config set project $PROJECT_ID\n",[207,304,306],{"class":209,"line":305},16,[207,307,308],{"class":213},"    # Run the BigQuery query and export the results to a CSV file\n",[207,310,312],{"class":209,"line":311},17,[207,313,314],{"class":213},"    - bq query --format=csv --use_legacy_sql=false \u003C test.sql > results.csv\n",[207,316,318],{"class":209,"line":317},18,[207,319,320],{"class":213},"    # Create a Google Cloud Storage bucket if it doesn't exist\n",[207,322,324],{"class":209,"line":323},19,[207,325,326],{"class":213},"    - gsutil ls gs://${CLOUD_STORAGE_BUCKET} || gsutil mb gs://${CLOUD_STORAGE_BUCKET}\n",[207,328,330],{"class":209,"line":329},20,[207,331,332],{"class":213},"    # Upload the CSV file to the storage bucket\n",[207,334,336],{"class":209,"line":335},21,[207,337,338],{"class":213},"    - gsutil cp results.csv gs://${CLOUD_STORAGE_BUCKET}/results.csv\n",[207,340,342],{"class":209,"line":341},22,[207,343,344],{"class":213},"    # Set the access control list (ACL) to make the CSV file publicly readable\n",[207,346,348],{"class":209,"line":347},23,[207,349,350],{"class":213},"    - gsutil acl ch -u AllUsers:R gs://${CLOUD_STORAGE_BUCKET}/results.csv\n",[207,352,354],{"class":209,"line":353},24,[207,355,356],{"class":213},"    # Define the static URL for the CSV file\n",[207,358,360],{"class":209,"line":359},25,[207,361,362],{"class":213},"    - export STATIC_URL=\"https://storage.googleapis.com/${CLOUD_STORAGE_BUCKET}/results.csv\"\n",[207,364,366],{"class":209,"line":365},26,[207,367,368],{"class":213},"    # Display the static URL for the CSV file\n",[207,370,372],{"class":209,"line":371},27,[207,373,374],{"class":213},"    - echo \"File URL = $STATIC_URL\"\n",[12,376,377],{},[80,378,379],{},"4. Run the pipeline.",[12,381,382],{},"Now, whenever changes are merged to your main branch, the pipeline will provide a link to the CSV file stored on the Google Cloud Storage bucket. This file contains the result of the executed SQL query that GitLab subjects to security checks.",[38,384,386],{"id":385},"benefits-of-this-approach","Benefits of this approach",[75,388,389,395,401,407,413],{},[49,390,391,394],{},[80,392,393],{},"Security:"," Authentication is handled automatically via service accounts (or Workload Identity Federation for enhanced security in production environments).",[49,396,397,400],{},[80,398,399],{},"Auditability:"," All data exports are tracked through GitLab commits and pipeline logs.",[49,402,403,406],{},[80,404,405],{},"Repeatability:"," Consistent, predictable export process on every run, and can be scheduled.",[49,408,409,412],{},[80,410,411],{},"Version control:"," SQL queries are properly versioned and reviewed.",[49,414,415,418],{},[80,416,417],{},"Automation:"," Significantly fewer manual exports, reducing human error.",[38,420,422],{"id":421},"try-it-today","Try it today",[12,424,425],{},"By combining GitLab's DevSecOps capabilities with Google Cloud's BigQuery and Cloud Storage, you've now automated and secured your data publishing workflow. This approach reduces manual operations, resolves permission headaches, and addresses security concerns – all achieved with just a few lines of GitLab CI code.",[427,428,429],"blockquote",{},[12,430,431,432,437],{},"Use this tutorial's ",[16,433,436],{"href":434,"rel":435},"https://gitlab.com/gitlab-partners-public/google-cloud/demos/big-query-data-publishing",[],"complete code example"," to get started now.",[439,440,441],"style",{},"html pre.shiki code .sgsFI, html code.shiki .sgsFI{--shiki-default:#24292E}html pre.shiki code .sqxcx, html code.shiki .sqxcx{--shiki-default:#E36209}html .default .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}",{"title":181,"searchDepth":217,"depth":217,"links":443},[444,445,446,447,448],{"id":40,"depth":217,"text":41},{"id":69,"depth":217,"text":70},{"id":112,"depth":217,"text":113},{"id":385,"depth":217,"text":386},{"id":421,"depth":217,"text":422},"engineering","2025-03-25","Learn how to create repeatable, auditable, and efficient processes for automating and securing BigQuery data exports.","md",null,"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749659756/Blog/Hero%20Images/REFERENCE_-_display_preview_for_blog_images.png",{},"/en-us/blog/tutorial-secure-bigquery-data-publishing-with-gitlab",{"title":5,"description":451,"ogTitle":5,"ogDescription":451,"noIndex":458,"ogImage":454,"ogUrl":459,"ogSiteName":460,"ogType":461,"canonicalUrls":459},false,"https://about.gitlab.com/blog/tutorial-secure-bigquery-data-publishing-with-gitlab","https://about.gitlab.com","article","tutorial-secure-bigquery-data-publishing-with-gitlab","en-us/blog/tutorial-secure-bigquery-data-publishing-with-gitlab",[465,466,467,468,469,470],"DevSecOps","DevSecOps platform","tutorial","workflow","integrations","google","BlogPost","AECyopSc8E3d3GkwlZczpsEwM5KcTkkCuTPm6tFyFWY",{"logo":474,"freeTrial":479,"sales":484,"login":489,"items":494,"search":820,"minimal":851,"duo":870,"switchNav":879,"pricingDeployment":890},{"config":475},{"href":476,"dataGaName":477,"dataGaLocation":478},"/","gitlab logo","header",{"text":480,"config":481},"Get free trial",{"href":482,"dataGaName":483,"dataGaLocation":478},"https://gitlab.com/-/trial_registrations/new?glm_source=about.gitlab.com&glm_content=default-saas-trial/","free trial",{"text":485,"config":486},"Request a demo",{"href":487,"dataGaName":488,"dataGaLocation":478},"/sales/?contact-topic=request-demo","sales",{"text":490,"config":491},"Sign in",{"href":492,"dataGaName":493,"dataGaLocation":478},"https://gitlab.com/users/sign_in/","sign in",[495,524,624,629,742,798],{"text":496,"config":497,"menu":499},"Platform",{"dataNavLevelOne":498},"platform",{"type":500,"columns":501},"cards",[502,508,516],{"title":496,"description":503,"link":504},"The intelligent orchestration platform for DevSecOps",{"text":505,"config":506},"Explore our Platform",{"href":507,"dataGaName":498,"dataGaLocation":478},"/platform/",{"title":509,"description":510,"link":511},"GitLab Duo Agent Platform","Agentic AI for the entire software lifecycle",{"text":512,"config":513},"Meet GitLab Duo",{"href":514,"dataGaName":515,"dataGaLocation":478},"/gitlab-duo-agent-platform/","gitlab duo agent platform",{"title":517,"description":518,"link":519},"Why GitLab","See the top reasons enterprises choose GitLab",{"text":520,"config":521},"Learn more",{"href":522,"dataGaName":523,"dataGaLocation":478},"/why-gitlab/","why gitlab",{"text":525,"left":220,"config":526,"menu":528},"Product",{"dataNavLevelOne":527},"solutions",{"type":529,"link":530,"columns":534,"feature":603},"lists",{"text":531,"config":532},"View all Solutions",{"href":533,"dataGaName":527,"dataGaLocation":478},"/solutions/",[535,559,582],{"title":536,"description":537,"link":538,"items":543},"Automation","CI/CD and automation to accelerate deployment",{"config":539},{"icon":540,"href":541,"dataGaName":542,"dataGaLocation":478},"AutomatedCodeAlt","/solutions/delivery-automation/","automated software delivery",[544,548,551,555],{"text":545,"config":546},"CI/CD",{"href":547,"dataGaLocation":478,"dataGaName":545},"/solutions/continuous-integration/",{"text":509,"config":549},{"href":514,"dataGaLocation":478,"dataGaName":550},"gitlab duo agent platform - product menu",{"text":552,"config":553},"Source Code Management",{"href":554,"dataGaLocation":478,"dataGaName":552},"/solutions/source-code-management/",{"text":556,"config":557},"Automated Software Delivery",{"href":541,"dataGaLocation":478,"dataGaName":558},"Automated software delivery",{"title":560,"description":561,"link":562,"items":567},"Security","Deliver code faster without compromising security",{"config":563},{"href":564,"dataGaName":565,"dataGaLocation":478,"icon":566},"/solutions/application-security-testing/","security and compliance","ShieldCheckLight",[568,572,577],{"text":569,"config":570},"Application Security Testing",{"href":564,"dataGaName":571,"dataGaLocation":478},"Application security testing",{"text":573,"config":574},"Software Supply Chain Security",{"href":575,"dataGaLocation":478,"dataGaName":576},"/solutions/supply-chain/","Software supply chain security",{"text":578,"config":579},"Software Compliance",{"href":580,"dataGaName":581,"dataGaLocation":478},"/solutions/software-compliance/","software compliance",{"title":583,"link":584,"items":589},"Measurement",{"config":585},{"icon":586,"href":587,"dataGaName":588,"dataGaLocation":478},"DigitalTransformation","/solutions/visibility-measurement/","visibility and measurement",[590,594,598],{"text":591,"config":592},"Visibility & Measurement",{"href":587,"dataGaLocation":478,"dataGaName":593},"Visibility and Measurement",{"text":595,"config":596},"Value Stream Management",{"href":597,"dataGaLocation":478,"dataGaName":595},"/solutions/value-stream-management/",{"text":599,"config":600},"Analytics & Insights",{"href":601,"dataGaLocation":478,"dataGaName":602},"/solutions/analytics-and-insights/","Analytics and insights",{"title":604,"type":529,"items":605},"GitLab for",[606,612,618],{"text":607,"config":608},"Enterprise",{"icon":609,"href":610,"dataGaLocation":478,"dataGaName":611},"Building","/enterprise/","enterprise",{"text":613,"config":614},"Small Business",{"icon":615,"href":616,"dataGaLocation":478,"dataGaName":617},"Work","/small-business/","small business",{"text":619,"config":620},"Public Sector",{"icon":621,"href":622,"dataGaLocation":478,"dataGaName":623},"Organization","/solutions/public-sector/","public sector",{"text":625,"config":626},"Pricing",{"href":627,"dataGaName":628,"dataGaLocation":478,"dataNavLevelOne":628},"/pricing/","pricing",{"text":630,"config":631,"menu":633},"Resources",{"dataNavLevelOne":632},"resources",{"type":529,"link":634,"columns":638,"feature":731},{"text":635,"config":636},"View all resources",{"href":637,"dataGaName":632,"dataGaLocation":478},"/resources/",[639,671,698],{"title":640,"items":641},"Getting started",[642,647,652,657,662,667],{"text":643,"config":644},"Install",{"href":645,"dataGaName":646,"dataGaLocation":478},"/install/","install",{"text":648,"config":649},"Quick start guides",{"href":650,"dataGaName":651,"dataGaLocation":478},"/get-started/","quick setup checklists",{"text":653,"config":654},"Learn",{"href":655,"dataGaLocation":478,"dataGaName":656},"https://university.gitlab.com/","learn",{"text":658,"config":659},"Product documentation",{"href":660,"dataGaName":661,"dataGaLocation":478},"https://docs.gitlab.com/","product documentation",{"text":663,"config":664},"Best practice videos",{"href":665,"dataGaName":666,"dataGaLocation":478},"/getting-started-videos/","best practice videos",{"text":668,"config":669},"Integrations",{"href":670,"dataGaName":469,"dataGaLocation":478},"/integrations/",{"title":672,"items":673},"Discover",[674,679,684,689,693],{"text":675,"config":676},"Customer success stories",{"href":677,"dataGaName":678,"dataGaLocation":478},"/customers/","customer success stories",{"text":680,"config":681},"Blog",{"href":682,"dataGaName":683,"dataGaLocation":478},"/blog/","blog",{"text":685,"config":686},"Demo Hub",{"href":687,"dataGaName":688,"dataGaLocation":478},"/demo-hub/","demo hub",{"text":690,"config":691},"The Source",{"href":692,"dataGaName":683,"dataGaLocation":478},"/the-source/",{"text":694,"config":695},"Remote",{"href":696,"dataGaName":697,"dataGaLocation":478},"https://handbook.gitlab.com/handbook/company/culture/all-remote/","remote",{"title":699,"items":700},"Connect",[701,706,711,716,721,726],{"text":702,"config":703},"GitLab Services",{"href":704,"dataGaName":705,"dataGaLocation":478},"/services/","services",{"text":707,"config":708},"Contribute",{"href":709,"dataGaName":710,"dataGaLocation":478},"https://contributors.gitlab.com","contribute",{"text":712,"config":713},"Community",{"href":714,"dataGaName":715,"dataGaLocation":478},"/community/","community",{"text":717,"config":718},"Forum",{"href":719,"dataGaName":720,"dataGaLocation":478},"https://forum.gitlab.com/","forum",{"text":722,"config":723},"Events",{"href":724,"dataGaName":725,"dataGaLocation":478},"/events/","events",{"text":727,"config":728},"Partners",{"href":729,"dataGaName":730,"dataGaLocation":478},"/partners/","partners",{"config":732,"title":735,"text":736,"link":737},{"background":733,"textColor":734},"url('https://res.cloudinary.com/about-gitlab-com/image/upload/v1777322348/qpq8yrgn8knii57omj0c.png')","#000","What’s new in GitLab","Stay updated with our latest features and improvements.",{"text":738,"config":739},"Read the latest",{"href":740,"dataGaName":741,"dataGaLocation":478},"/whats-new/","whats new",{"text":743,"config":744,"menu":746},"Company",{"dataNavLevelOne":745},"company",{"type":529,"columns":747},[748],{"items":749},[750,755,761,763,768,773,778,783,788,793],{"text":751,"config":752},"About",{"href":753,"dataGaName":754,"dataGaLocation":478},"/company/","about",{"text":756,"config":757,"footerGa":760},"Jobs",{"href":758,"dataGaName":759,"dataGaLocation":478},"/jobs/","jobs",{"dataGaName":759},{"text":722,"config":762},{"href":724,"dataGaName":725,"dataGaLocation":478},{"text":764,"config":765},"Leadership",{"href":766,"dataGaName":767,"dataGaLocation":478},"/company/team/e-group/","leadership",{"text":769,"config":770},"Handbook",{"href":771,"dataGaName":772,"dataGaLocation":478},"https://handbook.gitlab.com/","handbook",{"text":774,"config":775},"Investor relations",{"href":776,"dataGaName":777,"dataGaLocation":478},"https://ir.gitlab.com/overview/default.aspx","investor relations",{"text":779,"config":780},"Trust Center",{"href":781,"dataGaName":782,"dataGaLocation":478},"/security/","trust center",{"text":784,"config":785},"AI Transparency Center",{"href":786,"dataGaName":787,"dataGaLocation":478},"/ai-transparency-center/","ai transparency center",{"text":789,"config":790},"Newsletter",{"href":791,"dataGaName":792,"dataGaLocation":478},"/company/contact/#contact-forms","newsletter",{"text":794,"config":795},"Press",{"href":796,"dataGaName":797,"dataGaLocation":478},"/press/","press",{"text":799,"config":800,"menu":801},"Contact us",{"dataNavLevelOne":745},{"type":529,"columns":802},[803],{"items":804},[805,810,815],{"text":806,"config":807},"Talk to sales",{"href":808,"dataGaName":809,"dataGaLocation":478},"/sales/","talk to sales",{"text":811,"config":812},"Support portal",{"href":813,"dataGaName":814,"dataGaLocation":478},"https://support.gitlab.com/hc/en-us","support portal",{"text":816,"config":817},"Customer portal",{"href":818,"dataGaName":819,"dataGaLocation":478},"https://customers.gitlab.com/customers/sign_in/","customer portal",{"close":821,"login":822,"suggestions":829},"Close",{"text":823,"link":824},"To search repositories and projects, login to",{"text":825,"config":826},"gitlab.com",{"href":492,"dataGaName":827,"dataGaLocation":828},"search login","search",{"text":830,"default":831},"Suggestions",[832,834,838,840,844,848],{"text":509,"config":833},{"href":514,"dataGaName":509,"dataGaLocation":828},{"text":835,"config":836},"Code Suggestions (AI)",{"href":837,"dataGaName":835,"dataGaLocation":828},"/solutions/code-suggestions/",{"text":545,"config":839},{"href":547,"dataGaName":545,"dataGaLocation":828},{"text":841,"config":842},"GitLab on AWS",{"href":843,"dataGaName":841,"dataGaLocation":828},"/partners/technology-partners/aws/",{"text":845,"config":846},"GitLab on Google Cloud",{"href":847,"dataGaName":845,"dataGaLocation":828},"/partners/technology-partners/google-cloud-platform/",{"text":849,"config":850},"Why GitLab?",{"href":522,"dataGaName":849,"dataGaLocation":828},{"freeTrial":852,"mobileIcon":857,"desktopIcon":862,"secondaryButton":865},{"text":853,"config":854},"Start free trial",{"href":855,"dataGaName":483,"dataGaLocation":856},"https://gitlab.com/-/trials/new/","nav",{"altText":858,"config":859},"Gitlab Icon",{"src":860,"dataGaName":861,"dataGaLocation":856},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1758203874/jypbw1jx72aexsoohd7x.svg","gitlab icon",{"altText":858,"config":863},{"src":864,"dataGaName":861,"dataGaLocation":856},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1758203875/gs4c8p8opsgvflgkswz9.svg",{"text":866,"config":867},"Get Started",{"href":868,"dataGaName":869,"dataGaLocation":856},"https://gitlab.com/-/trial_registrations/new?glm_source=about.gitlab.com/get-started/","get started",{"freeTrial":871,"mobileIcon":875,"desktopIcon":877},{"text":872,"config":873},"Learn more about GitLab Duo",{"href":514,"dataGaName":874,"dataGaLocation":856},"gitlab duo",{"altText":858,"config":876},{"src":860,"dataGaName":861,"dataGaLocation":856},{"altText":858,"config":878},{"src":864,"dataGaName":861,"dataGaLocation":856},{"button":880,"mobileIcon":885,"desktopIcon":887},{"text":881,"config":882},"/switch",{"href":883,"dataGaName":884,"dataGaLocation":856},"#contact","switch",{"altText":858,"config":886},{"src":860,"dataGaName":861,"dataGaLocation":856},{"altText":858,"config":888},{"src":889,"dataGaName":861,"dataGaLocation":856},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1773335277/ohhpiuoxoldryzrnhfrh.png",{"freeTrial":891,"mobileIcon":896,"desktopIcon":898},{"text":892,"config":893},"Back to pricing",{"href":627,"dataGaName":894,"dataGaLocation":856,"icon":895},"back to pricing","GoBack",{"altText":858,"config":897},{"src":860,"dataGaName":861,"dataGaLocation":856},{"altText":858,"config":899},{"src":864,"dataGaName":861,"dataGaLocation":856},{"title":901,"titleMobile":902,"button":903,"config":908},"Duo Agent Platform delivers 400% ROI, per new Forrester Consulting study.","400% ROI: Forrester TEI for GitLab Duo",{"text":520,"config":904},{"href":905,"dataGaName":906,"dataGaLocation":907},"https://about.gitlab.com/blog/gitlab-duo-agent-platform-delivers-400-percent-roi/","forrester-tei-dap-banner","global-banner",{"layout":909,"disabled":458},"release",{"data":911},{"text":912,"source":913,"edit":919,"contribute":924,"config":929,"items":934,"minimal":1142},"Git is a trademark of Software Freedom Conservancy and our use of 'GitLab' is under license",{"text":914,"config":915},"View page source",{"href":916,"dataGaName":917,"dataGaLocation":918},"https://gitlab.com/gitlab-com/marketing/digital-experience/about-gitlab-com/","page source","footer",{"text":920,"config":921},"Edit this page",{"href":922,"dataGaName":923,"dataGaLocation":918},"https://gitlab.com/gitlab-com/marketing/digital-experience/about-gitlab-com/-/blob/main/content/","web ide",{"text":925,"config":926},"Please contribute",{"href":927,"dataGaName":928,"dataGaLocation":918},"https://gitlab.com/gitlab-com/marketing/digital-experience/about-gitlab-com/-/blob/main/CONTRIBUTING.md/","please contribute",{"twitter":930,"facebook":931,"youtube":932,"linkedin":933},"https://twitter.com/gitlab","https://www.facebook.com/gitlab","https://www.youtube.com/channel/UCnMGQ8QHMAnVIsI3xJrihhg","https://www.linkedin.com/company/gitlab-com",[935,982,1034,1078,1110],{"title":625,"links":936,"subMenu":951},[937,941,946],{"text":938,"config":939},"View plans",{"href":627,"dataGaName":940,"dataGaLocation":918},"view plans",{"text":942,"config":943},"Why Premium?",{"href":944,"dataGaName":945,"dataGaLocation":918},"/pricing/premium/","why premium",{"text":947,"config":948},"Why Ultimate?",{"href":949,"dataGaName":950,"dataGaLocation":918},"/pricing/ultimate/","why ultimate",[952],{"title":953,"links":954},"Contact Us",[955,958,960,962,967,972,977],{"text":956,"config":957},"Contact sales",{"href":808,"dataGaName":488,"dataGaLocation":918},{"text":811,"config":959},{"href":813,"dataGaName":814,"dataGaLocation":918},{"text":816,"config":961},{"href":818,"dataGaName":819,"dataGaLocation":918},{"text":963,"config":964},"Status",{"href":965,"dataGaName":966,"dataGaLocation":918},"https://status.gitlab.com/","status",{"text":968,"config":969},"Terms of use",{"href":970,"dataGaName":971,"dataGaLocation":918},"/terms/","terms of use",{"text":973,"config":974},"Privacy statement",{"href":975,"dataGaName":976,"dataGaLocation":918},"/privacy/","privacy statement",{"text":978,"config":979},"Cookie preferences",{"dataGaName":980,"dataGaLocation":918,"id":981,"isOneTrustButton":220},"cookie preferences","ot-sdk-btn",{"title":525,"links":983,"subMenu":991},[984,987],{"text":466,"config":985},{"href":507,"dataGaName":986,"dataGaLocation":918},"devsecops platform",{"text":988,"config":989},"AI-Assisted Development",{"href":514,"dataGaName":990,"dataGaLocation":918},"ai-assisted development",[992],{"title":993,"links":994},"Topics",[995,1000,1005,1010,1015,1019,1024,1029],{"text":996,"config":997},"CICD",{"href":998,"dataGaName":999,"dataGaLocation":918},"/topics/ci-cd/","cicd",{"text":1001,"config":1002},"GitOps",{"href":1003,"dataGaName":1004,"dataGaLocation":918},"/topics/gitops/","gitops",{"text":1006,"config":1007},"DevOps",{"href":1008,"dataGaName":1009,"dataGaLocation":918},"/topics/devops/","devops",{"text":1011,"config":1012},"Version Control",{"href":1013,"dataGaName":1014,"dataGaLocation":918},"/topics/version-control/","version control",{"text":465,"config":1016},{"href":1017,"dataGaName":1018,"dataGaLocation":918},"/topics/devsecops/","devsecops",{"text":1020,"config":1021},"Cloud Native",{"href":1022,"dataGaName":1023,"dataGaLocation":918},"/topics/cloud-native/","cloud native",{"text":1025,"config":1026},"AI for Coding",{"href":1027,"dataGaName":1028,"dataGaLocation":918},"/topics/devops/ai-for-coding/","ai for coding",{"text":1030,"config":1031},"Agentic AI",{"href":1032,"dataGaName":1033,"dataGaLocation":918},"/topics/agentic-ai/","agentic ai",{"title":1035,"links":1036},"Solutions",[1037,1039,1041,1046,1050,1053,1057,1060,1062,1065,1068,1073],{"text":569,"config":1038},{"href":564,"dataGaName":569,"dataGaLocation":918},{"text":558,"config":1040},{"href":541,"dataGaName":542,"dataGaLocation":918},{"text":1042,"config":1043},"Agile development",{"href":1044,"dataGaName":1045,"dataGaLocation":918},"/solutions/agile-delivery/","agile delivery",{"text":1047,"config":1048},"SCM",{"href":554,"dataGaName":1049,"dataGaLocation":918},"source code management",{"text":996,"config":1051},{"href":547,"dataGaName":1052,"dataGaLocation":918},"continuous integration & delivery",{"text":1054,"config":1055},"Value stream management",{"href":597,"dataGaName":1056,"dataGaLocation":918},"value stream management",{"text":1001,"config":1058},{"href":1059,"dataGaName":1004,"dataGaLocation":918},"/solutions/gitops/",{"text":607,"config":1061},{"href":610,"dataGaName":611,"dataGaLocation":918},{"text":1063,"config":1064},"Small business",{"href":616,"dataGaName":617,"dataGaLocation":918},{"text":1066,"config":1067},"Public sector",{"href":622,"dataGaName":623,"dataGaLocation":918},{"text":1069,"config":1070},"Education",{"href":1071,"dataGaName":1072,"dataGaLocation":918},"/solutions/education/","education",{"text":1074,"config":1075},"Financial services",{"href":1076,"dataGaName":1077,"dataGaLocation":918},"/solutions/finance/","financial services",{"title":630,"links":1079},[1080,1082,1084,1086,1089,1091,1094,1096,1098,1100,1102,1104,1106,1108],{"text":643,"config":1081},{"href":645,"dataGaName":646,"dataGaLocation":918},{"text":648,"config":1083},{"href":650,"dataGaName":651,"dataGaLocation":918},{"text":653,"config":1085},{"href":655,"dataGaName":656,"dataGaLocation":918},{"text":658,"config":1087},{"href":660,"dataGaName":1088,"dataGaLocation":918},"docs",{"text":680,"config":1090},{"href":682,"dataGaName":683,"dataGaLocation":918},{"text":1092,"config":1093},"What's new",{"href":740,"dataGaName":741,"dataGaLocation":918},{"text":675,"config":1095},{"href":677,"dataGaName":678,"dataGaLocation":918},{"text":694,"config":1097},{"href":696,"dataGaName":697,"dataGaLocation":918},{"text":702,"config":1099},{"href":704,"dataGaName":705,"dataGaLocation":918},{"text":707,"config":1101},{"href":709,"dataGaName":710,"dataGaLocation":918},{"text":712,"config":1103},{"href":714,"dataGaName":715,"dataGaLocation":918},{"text":717,"config":1105},{"href":719,"dataGaName":720,"dataGaLocation":918},{"text":722,"config":1107},{"href":724,"dataGaName":725,"dataGaLocation":918},{"text":727,"config":1109},{"href":729,"dataGaName":730,"dataGaLocation":918},{"title":743,"links":1111},[1112,1114,1116,1118,1120,1122,1126,1131,1133,1135,1137],{"text":751,"config":1113},{"href":753,"dataGaName":745,"dataGaLocation":918},{"text":756,"config":1115},{"href":758,"dataGaName":759,"dataGaLocation":918},{"text":764,"config":1117},{"href":766,"dataGaName":767,"dataGaLocation":918},{"text":769,"config":1119},{"href":771,"dataGaName":772,"dataGaLocation":918},{"text":774,"config":1121},{"href":776,"dataGaName":777,"dataGaLocation":918},{"text":1123,"config":1124},"Sustainability",{"href":1125,"dataGaName":1123,"dataGaLocation":918},"/sustainability/",{"text":1127,"config":1128},"Diversity, inclusion and belonging (DIB)",{"href":1129,"dataGaName":1130,"dataGaLocation":918},"/diversity-inclusion-belonging/","Diversity, inclusion and belonging",{"text":779,"config":1132},{"href":781,"dataGaName":782,"dataGaLocation":918},{"text":789,"config":1134},{"href":791,"dataGaName":792,"dataGaLocation":918},{"text":794,"config":1136},{"href":796,"dataGaName":797,"dataGaLocation":918},{"text":1138,"config":1139},"Modern Slavery Transparency Statement",{"href":1140,"dataGaName":1141,"dataGaLocation":918},"https://handbook.gitlab.com/handbook/legal/modern-slavery-act-transparency-statement/","modern slavery transparency statement",{"items":1143},[1144,1147,1150],{"text":1145,"config":1146},"Terms",{"href":970,"dataGaName":971,"dataGaLocation":918},{"text":1148,"config":1149},"Cookies",{"dataGaName":980,"dataGaLocation":918,"id":981,"isOneTrustButton":220},{"text":1151,"config":1152},"Privacy",{"href":975,"dataGaName":976,"dataGaLocation":918},[1154],{"id":1155,"title":7,"body":453,"config":1156,"content":1158,"description":453,"extension":1162,"meta":1163,"navigation":220,"path":1164,"seo":1165,"stem":1166,"__hash__":1167},"blogAuthors/en-us/blog/authors/regnard-raquedan.yml",{"template":1157},"BlogAuthor",{"name":7,"config":1159},{"headshot":1160,"ctfId":1161},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749663118/Blog/Author%20Headshots/regnard_raquedan_headshot.png","rraquedan","yml",{},"/en-us/blog/authors/regnard-raquedan",{},"en-us/blog/authors/regnard-raquedan","1JCF9gTeSA0OaLWrorCsz7_b5_2A2kagAMVhH8r4NcM",[1169,1178,1186],{"title":1170,"description":1171,"heroImage":1172,"category":449,"date":1173,"authors":1174,"slug":1177,"externalUrl":453},"Confidential AI for GitLab Self-Hosted","Give developers AI coding agents in GitLab Duo without source code leaving a hardware-encrypted boundary — no GPUs needed.","https://res.cloudinary.com/about-gitlab-com/image/upload/v1773866173/vte9qh8rriznvyclhkes.png","2026-08-06",[1175,1176],"Mathias Ewald","Martin Paloncy, Edgeless Systems","confidential-ai-for-gitlab-self-hosted",{"title":1179,"description":1180,"heroImage":1181,"category":449,"date":1182,"authors":1183,"slug":1185,"externalUrl":453},"Green DevOps: Why carbon measurement belongs in your CI/CD pipeline","CI/CD pipelines have a hidden carbon cost. Here's why measuring it matters, and how you can get started with Eco CI and Carmen in GitLab.","https://res.cloudinary.com/about-gitlab-com/image/upload/v1765809212/noh0mdfn9o94ry9ykura.png","2026-07-09",[1184],"Lysanne Pinto","green-devops-carbon-measurement-cicd-pipeline",{"title":1187,"description":1188,"heroImage":1189,"category":449,"date":1190,"authors":1191,"slug":1193,"externalUrl":453},"How to build CI/CD observability at scale","This practical guide to GitLab pipeline analytics helps self-managed users gain operational insights using Prometheus and Grafana.","https://res.cloudinary.com/about-gitlab-com/image/upload/v1774465167/n5hlvrsrheadeccyr1oz.png","2026-04-28",[1192],"Paul Meresanu","how-to-build-ci-cd-observability-at-scale",{"promotions":1195},[1196,1210,1222,1234],{"id":1197,"categories":1198,"header":1200,"text":1201,"button":1202,"image":1207},"ai-modernization",[1199],"ai","Is AI achieving its promise at scale?","Quiz will take 5 minutes or less",{"text":1203,"config":1204},"Get your AI maturity score",{"href":1205,"dataGaName":1206,"dataGaLocation":683},"/assessments/ai-modernization-assessment/","modernization assessment",{"config":1208},{"src":1209},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1772138786/qix0m7kwnd8x2fh1zq49.png",{"id":1211,"categories":1212,"header":1214,"text":1201,"button":1215,"image":1219},"devops-modernization",[1213,1018],"product","Are you just managing tools or shipping innovation?",{"text":1216,"config":1217},"Get your DevOps maturity score",{"href":1218,"dataGaName":1206,"dataGaLocation":683},"/assessments/devops-modernization-assessment/",{"config":1220},{"src":1221},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1772138785/eg818fmakweyuznttgid.png",{"id":1223,"categories":1224,"header":1226,"text":1201,"button":1227,"image":1231},"security-modernization",[1225],"security","Are you trading speed for security?",{"text":1228,"config":1229},"Get your security maturity score",{"href":1230,"dataGaName":1206,"dataGaLocation":683},"/assessments/security-modernization-assessment/",{"config":1232},{"src":1233},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1772138786/p4pbqd9nnjejg5ds6mdk.png",{"id":1235,"paths":1236,"header":1239,"text":1240,"button":1241,"image":1246},"github-azure-migration",[1237,1238],"migration-from-azure-devops-to-gitlab","integrating-azure-devops-scm-and-gitlab","Is your team ready for GitHub's Azure move?","GitHub is already rebuilding around Azure. Find out what it means for you.",{"text":1242,"config":1243},"See how GitLab compares to GitHub",{"href":1244,"dataGaName":1245,"dataGaLocation":683},"/compare/gitlab-vs-github/github-azure-migration/","github azure migration",{"config":1247},{"src":1221},{"header":1249,"blurb":1250,"button":1251,"secondaryButton":1256},"Start building faster today","See what your team can do with the intelligent orchestration platform for DevSecOps.\n",{"text":1252,"config":1253},"Get your free trial",{"href":1254,"dataGaName":483,"dataGaLocation":1255},"https://gitlab.com/-/trial_registrations/new?glm_content=default-saas-trial&glm_source=about.gitlab.com/","feature",{"text":956,"config":1257},{"href":808,"dataGaName":488,"dataGaLocation":1255},1786803755835]