[{"data":1,"prerenderedAt":841},["ShallowReactive",2],{"/en-us/blog/deploy-a-server-using-go-with-gitlab-google-cloud":3,"navigation-en-us":46,"banner-en-us":467,"footer-en-us":477,"blog-post-authors-en-us-Claire Champernowne|Noah Ing":716,"blog-related-posts-en-us-deploy-a-server-using-go-with-gitlab-google-cloud":743,"blog-promotions-en-us":778,"next-steps-en-us":831},{"id":4,"title":5,"authorSlugs":6,"authors":9,"body":12,"category":13,"categorySlug":13,"config":14,"content":18,"date":28,"description":19,"extension":29,"externalUrl":30,"featured":17,"heroImage":21,"isFeatured":17,"meta":31,"navigation":32,"path":33,"publishedDate":28,"rawbody":34,"seo":35,"slug":16,"stem":39,"tagSlugs":40,"tags":44,"template":15,"updatedDate":30,"__hash__":45},"blogPosts/en-us/blog/deploy-a-server-using-go-with-gitlab-google-cloud.md","Deploy a server using Go with GitLab + Google Cloud",[7,8],"claire-champernowne","noah-ing",[10,11],"Claire Champernowne","Noah Ing","Deploying an application to the cloud often requires assistance from production or DevOps engineers. GitLab's Google Cloud integration empowers developers to handle deployments independently. In this tutorial, you'll learn how to deploy a server to Google Cloud in less than 10 minutes using Go. Whether you’re a solo developer or part of a large team, this setup allows you to deploy applications efficiently.\n\n## You'll learn how to:\n\n1. Create a new project in GitLab\n2. Create a Go server utilizing `main.go`\n3. Use the Google Cloud integration to create a Service account\n4. Use the Google Cloud integration to create Cloud Run via a merge request\n5. Access your newly deployed Go server\n6. Clean up your environment\n\n## Prerequisites\n\n- Owner access on a Google Cloud Platform project\n- Working knowledge of Golang\n- Working knowledge of GitLab CI\n- 10 minutes\n\n## Step-by-step Golang server deployment to Google Cloud\n\n### 1. Create a new blank project in GitLab.\n\nWe decided to call our project `golang-cloud-run` for simplicity.\n\n![Create a new blank project in GitLab](https://res.cloudinary.com/about-gitlab-com/image/upload/v1750098035/Blog/Content%20Images/Blog/Content%20Images/image9_aHR0cHM6_1750098035249.png)\n\n### 2. Create a server utilizing this `main.go` demo.\n\nFind the `main.go` demo [here](https://gitlab.com/demos/applications/golang-cloud-run).\n\n```text\n// Sample run-helloworld is a minimal Cloud Run service.\npackage main\n\nimport (\n\t\"fmt\"\n\t\"log\"\n\t\"net/http\"\n\t\"os\"\n)\n\nfunc main() {\n\tlog.Print(\"starting server...\")\n\thttp.HandleFunc(\"/\", handler)\n\n\t// Determine port for HTTP service.\n\tport := os.Getenv(\"PORT\")\n\tif port == \"\" {\n\t\tport = \"8080\"\n\t\tlog.Printf(\"defaulting to port %s\", port)\n\t}\n\n\t// Start HTTP server.\n\tlog.Printf(\"listening on port %s\", port)\n\tif err := http.ListenAndServe(\":\"+port, nil); err != nil {\n\t\tlog.Fatal(err)\n\t}\n}\n\nfunc handler(w http.ResponseWriter, r *http.Request) {\n\tname := os.Getenv(\"NAME\")\n\tif name == \"\" {\n\t\tname = \"World\"\n\t}\n\tfmt.Fprintf(w, \"Hello %s!\\n\", name)\n}\n```\n\n### 3. Use the Google Cloud integration to create a Service account.\n\nNavigate to **Operate \\> Google Cloud \\> Create Service account**.\n\n![Golang tutorial - image 2](https://res.cloudinary.com/about-gitlab-com/image/upload/v1750098036/Blog/Content%20Images/Blog/Content%20Images/image11_aHR0cHM6_1750098035250.png)\n\n### 4. Configure the region you would like the Cloud Run instance deployed to.\n\n![Golang tutorial - image10](https://res.cloudinary.com/about-gitlab-com/image/upload/v1750098035/Blog/Content%20Images/Blog/Content%20Images/image10_aHR0cHM6_1750098035252.png)\n\n### 5. Use the Google Cloud integration to configure Cloud Run via Merge Request.\n\n![Golang tutorial - image4](https://res.cloudinary.com/about-gitlab-com/image/upload/v1750098035/Blog/Content%20Images/Blog/Content%20Images/image4_aHR0cHM6_1750098035254.png)\n\n### 6. This will open a merge request. Immediately merge the MR.\n\n![Golang tutorial - image6](https://res.cloudinary.com/about-gitlab-com/image/upload/v1750098036/Blog/Content%20Images/Blog/Content%20Images/image6_aHR0cHM6_1750098035257.png)\n\nThis merge request adds a CI/CD deployment job to your pipeline definition. In our case, this is also creating a pipeline definition, as we didn’t have one before.\n\n**Note:** The CI/CD variables `GCP_PROJECT_ID`, `GCP_REGION`, `GCP_SERVICE_ACCOUNT`, `GCP_SERVICE_ACCOUNT_KEY` will all be automatically populated from the previous steps.\n![Golang tutorial - image7](https://res.cloudinary.com/about-gitlab-com/image/upload/v1750098035/Blog/Content%20Images/Blog/Content%20Images/image7_aHR0cHM6_1750098035259.png)\n\n### 7. Voila! Check your pipeline and you will see you have successfully deployed to Google Cloud Run utilizing GitLab CI.\n\n![Golang tutorial - image2](https://res.cloudinary.com/about-gitlab-com/image/upload/v1750098035/Blog/Content%20Images/Blog/Content%20Images/image2_aHR0cHM6_1750098035261.png)\n\n\u003Cbr>\n\n![Golang tutorial - image3](https://res.cloudinary.com/about-gitlab-com/image/upload/v1750098035/Blog/Content%20Images/Blog/Content%20Images/image3_aHR0cHM6_1750098035262.png)\n\n## 8. Click the Service URL to view your newly deployed server.\n\nAlternatively, you can navigate to **Operate \\> Environments** to see a list of deployments for your environments.\n\n![Golang tutorial - image5](https://res.cloudinary.com/about-gitlab-com/image/upload/v1750098035/Blog/Content%20Images/Blog/Content%20Images/image5_aHR0cHM6_1750098035264.png)\n\nBy clicking on the environment called **main**, you’ll be able to view a complete list of deployments specific to that environment.\n\n![Golang tutorial - image8](https://res.cloudinary.com/about-gitlab-com/image/upload/v1750098035/Blog/Content%20Images/Blog/Content%20Images/image8_aHR0cHM6_1750098035265.png)\n\n## Next steps\n\nTo get started with developing your Go application, try adding another endpoint. For instance, in your `main.go` file, you can add a `/bye` endpoint as shown below (don’t forget to register the new handler function in main!):\n\n```text\nfunc main() {\n\tlog.Print(\"starting server...\")\n\n\thttp.HandleFunc(\"/\", handler)\n\thttp.HandleFunc(\"/bye\", byeHandler)\n```\n\n```text\nfunc byeHandler(w http.ResponseWriter, r *http.Request) {\n\tname := os.Getenv(\"NAME\")\n\tif name == \"\" {\n\t\tname = \"World\"\n\t}\n\tfmt.Fprintf(w, \"Bye %s!\\n\", name)\n}\n```\n\nYour `main.go` file should now look something like this:\n\n```text\n// Sample run-helloworld is a minimal Cloud Run service.\npackage main\n\nimport (\n\t\"fmt\"\n\t\"log\"\n\t\"net/http\"\n\t\"os\"\n)\n\nfunc main() {\n\tlog.Print(\"starting server...\")\n\n\thttp.HandleFunc(\"/\", handler)\n\n\thttp.HandleFunc(\"/bye\", byeHandler)\n\n\t// Determine port for HTTP service.\n\tport := os.Getenv(\"PORT\")\n\tif port == \"\" {\n\t\tport = \"8080\"\n\t\tlog.Printf(\"defaulting to port %s\", port)\n\t}\n\n\t// Start HTTP server.\n\tlog.Printf(\"listening on port %s\", port)\n\tif err := http.ListenAndServe(\":\"+port, nil); err != nil {\n\t\tlog.Fatal(err)\n\t}\n}\n\nfunc handler(w http.ResponseWriter, r *http.Request) {\n\tname := os.Getenv(\"NAME\")\n\tif name == \"\" {\n\t\tname = \"World\"\n\t}\n\tfmt.Fprintf(w, \"Hello %s!\\n\", name)\n}\n\nfunc byeHandler(w http.ResponseWriter, r *http.Request) {\n\tname := os.Getenv(\"NAME\")\n\tif name == \"\" {\n\t\tname = \"World\"\n\t}\n\tfmt.Fprintf(w, \"Bye %s!\\n\", name)\n}\n```\n\nPush the changes to the repo, and watch the `deploy-to-cloud-run job` deploy the updates. Once it’s complete, go back to the Service URL and navigate to the `/bye` endpoint to see the new functionality in action.\n\n## Clean up the environment\n\nTo prevent incurring charges on your Google Cloud account for the resources used in this tutorial, you can either delete the specific resources or delete the entire Google Cloud project. For detailed instructions, refer to the [cleanup guide](https://docs.gitlab.com/tutorials/create_and_deploy_web_service_w/ ith_google_cloud_run_component/#clean-up).\n\n> Discover more tutorials like this in our [Solutions Architecture](https://about.gitlab.com/blog/tags/solutions-architecture/) area.","product",{"template":15,"slug":16,"featured":17},"BlogPost","deploy-a-server-using-go-with-gitlab-google-cloud",false,{"title":5,"description":19,"authors":20,"heroImage":21,"tags":22,"category":13,"date":28,"body":12},"This tutorial shows how to use GitLab’s Google Cloud integration to deploy a Golang server in less than 10 minutes, helping developers become more independent and efficient.",[10,11],"https://res.cloudinary.com/about-gitlab-com/image/upload/v1750098028/Blog/Hero%20Images/Blog/Hero%20Images/blog-image-template-1800x945_fJKX41PJHKCfSOWw4xQxm_1750098028126.png",[23,24,25,26,13,27],"DevSecOps","DevSecOps platform","tutorial","solutions architecture","features","2025-01-28","md",null,{},true,"/en-us/blog/deploy-a-server-using-go-with-gitlab-google-cloud","---\nseo:\n  title: Deploy a server using Go with GitLab + Google Cloud\n  description: >-\n    This tutorial shows how to use GitLab’s Google Cloud integration to deploy a\n    Golang server in less than 10 minutes, helping developers become more\n    independent and efficient.\n  ogTitle: Deploy a server using Go with GitLab + Google Cloud\n  ogDescription: >-\n    This tutorial shows how to use GitLab’s Google Cloud integration to deploy a\n    Golang server in less than 10 minutes, helping developers become more\n    independent and efficient.\n  noIndex: false\n  ogImage: >-\n    https://res.cloudinary.com/about-gitlab-com/image/upload/v1750098028/Blog/Hero%20Images/Blog/Hero%20Images/blog-image-template-1800x945_fJKX41PJHKCfSOWw4xQxm_1750098028126.png\n  ogUrl: >-\n    https://about.gitlab.com/blog/deploy-a-server-using-go-with-gitlab-google-cloud\n  ogSiteName: https://about.gitlab.com\n  ogType: article\n  canonicalUrls: >-\n    https://about.gitlab.com/blog/deploy-a-server-using-go-with-gitlab-google-cloud\ntitle: Deploy a server using Go with GitLab + Google Cloud\ndescription: This tutorial shows how to use GitLab’s Google Cloud integration to deploy a Golang server in less than 10 minutes, helping developers become more independent and efficient.\nauthors:\n  - Claire Champernowne\n  - Noah Ing\nheroImage: https://res.cloudinary.com/about-gitlab-com/image/upload/v1750098028/Blog/Hero%20Images/Blog/Hero%20Images/blog-image-template-1800x945_fJKX41PJHKCfSOWw4xQxm_1750098028126.png\ntags:\n  - DevSecOps\n  - DevSecOps platform\n  - tutorial\n  - solutions architecture\n  - product\n  - features\ncategory: product\ndate: '2025-01-28'\nslug: deploy-a-server-using-go-with-gitlab-google-cloud\nfeatured: false\ntemplate: BlogPost\n---\n\nDeploying an application to the cloud often requires assistance from production or DevOps engineers. GitLab's Google Cloud integration empowers developers to handle deployments independently. In this tutorial, you'll learn how to deploy a server to Google Cloud in less than 10 minutes using Go. Whether you’re a solo developer or part of a large team, this setup allows you to deploy applications efficiently.\n\n## You'll learn how to:\n\n1. Create a new project in GitLab\n2. Create a Go server utilizing `main.go`\n3. Use the Google Cloud integration to create a Service account\n4. Use the Google Cloud integration to create Cloud Run via a merge request\n5. Access your newly deployed Go server\n6. Clean up your environment\n\n## Prerequisites\n\n- Owner access on a Google Cloud Platform project\n- Working knowledge of Golang\n- Working knowledge of GitLab CI\n- 10 minutes\n\n## Step-by-step Golang server deployment to Google Cloud\n\n### 1. Create a new blank project in GitLab.\n\nWe decided to call our project `golang-cloud-run` for simplicity.\n\n![Create a new blank project in GitLab](https://res.cloudinary.com/about-gitlab-com/image/upload/v1750098035/Blog/Content%20Images/Blog/Content%20Images/image9_aHR0cHM6_1750098035249.png)\n\n### 2. Create a server utilizing this `main.go` demo.\n\nFind the `main.go` demo [here](https://gitlab.com/demos/applications/golang-cloud-run).\n\n```text\n// Sample run-helloworld is a minimal Cloud Run service.\npackage main\n\nimport (\n\t\"fmt\"\n\t\"log\"\n\t\"net/http\"\n\t\"os\"\n)\n\nfunc main() {\n\tlog.Print(\"starting server...\")\n\thttp.HandleFunc(\"/\", handler)\n\n\t// Determine port for HTTP service.\n\tport := os.Getenv(\"PORT\")\n\tif port == \"\" {\n\t\tport = \"8080\"\n\t\tlog.Printf(\"defaulting to port %s\", port)\n\t}\n\n\t// Start HTTP server.\n\tlog.Printf(\"listening on port %s\", port)\n\tif err := http.ListenAndServe(\":\"+port, nil); err != nil {\n\t\tlog.Fatal(err)\n\t}\n}\n\nfunc handler(w http.ResponseWriter, r *http.Request) {\n\tname := os.Getenv(\"NAME\")\n\tif name == \"\" {\n\t\tname = \"World\"\n\t}\n\tfmt.Fprintf(w, \"Hello %s!\\n\", name)\n}\n```\n\n### 3. Use the Google Cloud integration to create a Service account.\n\nNavigate to **Operate \\> Google Cloud \\> Create Service account**.\n\n![Golang tutorial - image 2](https://res.cloudinary.com/about-gitlab-com/image/upload/v1750098036/Blog/Content%20Images/Blog/Content%20Images/image11_aHR0cHM6_1750098035250.png)\n\n### 4. Configure the region you would like the Cloud Run instance deployed to.\n\n![Golang tutorial - image10](https://res.cloudinary.com/about-gitlab-com/image/upload/v1750098035/Blog/Content%20Images/Blog/Content%20Images/image10_aHR0cHM6_1750098035252.png)\n\n### 5. Use the Google Cloud integration to configure Cloud Run via Merge Request.\n\n![Golang tutorial - image4](https://res.cloudinary.com/about-gitlab-com/image/upload/v1750098035/Blog/Content%20Images/Blog/Content%20Images/image4_aHR0cHM6_1750098035254.png)\n\n### 6. This will open a merge request. Immediately merge the MR.\n\n![Golang tutorial - image6](https://res.cloudinary.com/about-gitlab-com/image/upload/v1750098036/Blog/Content%20Images/Blog/Content%20Images/image6_aHR0cHM6_1750098035257.png)\n\nThis merge request adds a CI/CD deployment job to your pipeline definition. In our case, this is also creating a pipeline definition, as we didn’t have one before.\n\n**Note:** The CI/CD variables `GCP_PROJECT_ID`, `GCP_REGION`, `GCP_SERVICE_ACCOUNT`, `GCP_SERVICE_ACCOUNT_KEY` will all be automatically populated from the previous steps.\n![Golang tutorial - image7](https://res.cloudinary.com/about-gitlab-com/image/upload/v1750098035/Blog/Content%20Images/Blog/Content%20Images/image7_aHR0cHM6_1750098035259.png)\n\n### 7. Voila! Check your pipeline and you will see you have successfully deployed to Google Cloud Run utilizing GitLab CI.\n\n![Golang tutorial - image2](https://res.cloudinary.com/about-gitlab-com/image/upload/v1750098035/Blog/Content%20Images/Blog/Content%20Images/image2_aHR0cHM6_1750098035261.png)\n\n\u003Cbr>\n\n![Golang tutorial - image3](https://res.cloudinary.com/about-gitlab-com/image/upload/v1750098035/Blog/Content%20Images/Blog/Content%20Images/image3_aHR0cHM6_1750098035262.png)\n\n## 8. Click the Service URL to view your newly deployed server.\n\nAlternatively, you can navigate to **Operate \\> Environments** to see a list of deployments for your environments.\n\n![Golang tutorial - image5](https://res.cloudinary.com/about-gitlab-com/image/upload/v1750098035/Blog/Content%20Images/Blog/Content%20Images/image5_aHR0cHM6_1750098035264.png)\n\nBy clicking on the environment called **main**, you’ll be able to view a complete list of deployments specific to that environment.\n\n![Golang tutorial - image8](https://res.cloudinary.com/about-gitlab-com/image/upload/v1750098035/Blog/Content%20Images/Blog/Content%20Images/image8_aHR0cHM6_1750098035265.png)\n\n## Next steps\n\nTo get started with developing your Go application, try adding another endpoint. For instance, in your `main.go` file, you can add a `/bye` endpoint as shown below (don’t forget to register the new handler function in main!):\n\n```text\nfunc main() {\n\tlog.Print(\"starting server...\")\n\n\thttp.HandleFunc(\"/\", handler)\n\thttp.HandleFunc(\"/bye\", byeHandler)\n```\n\n```text\nfunc byeHandler(w http.ResponseWriter, r *http.Request) {\n\tname := os.Getenv(\"NAME\")\n\tif name == \"\" {\n\t\tname = \"World\"\n\t}\n\tfmt.Fprintf(w, \"Bye %s!\\n\", name)\n}\n```\n\nYour `main.go` file should now look something like this:\n\n```text\n// Sample run-helloworld is a minimal Cloud Run service.\npackage main\n\nimport (\n\t\"fmt\"\n\t\"log\"\n\t\"net/http\"\n\t\"os\"\n)\n\nfunc main() {\n\tlog.Print(\"starting server...\")\n\n\thttp.HandleFunc(\"/\", handler)\n\n\thttp.HandleFunc(\"/bye\", byeHandler)\n\n\t// Determine port for HTTP service.\n\tport := os.Getenv(\"PORT\")\n\tif port == \"\" {\n\t\tport = \"8080\"\n\t\tlog.Printf(\"defaulting to port %s\", port)\n\t}\n\n\t// Start HTTP server.\n\tlog.Printf(\"listening on port %s\", port)\n\tif err := http.ListenAndServe(\":\"+port, nil); err != nil {\n\t\tlog.Fatal(err)\n\t}\n}\n\nfunc handler(w http.ResponseWriter, r *http.Request) {\n\tname := os.Getenv(\"NAME\")\n\tif name == \"\" {\n\t\tname = \"World\"\n\t}\n\tfmt.Fprintf(w, \"Hello %s!\\n\", name)\n}\n\nfunc byeHandler(w http.ResponseWriter, r *http.Request) {\n\tname := os.Getenv(\"NAME\")\n\tif name == \"\" {\n\t\tname = \"World\"\n\t}\n\tfmt.Fprintf(w, \"Bye %s!\\n\", name)\n}\n```\n\nPush the changes to the repo, and watch the `deploy-to-cloud-run job` deploy the updates. Once it’s complete, go back to the Service URL and navigate to the `/bye` endpoint to see the new functionality in action.\n\n## Clean up the environment\n\nTo prevent incurring charges on your Google Cloud account for the resources used in this tutorial, you can either delete the specific resources or delete the entire Google Cloud project. For detailed instructions, refer to the [cleanup guide](https://docs.gitlab.com/tutorials/create_and_deploy_web_service_w/ ith_google_cloud_run_component/#clean-up).\n\n> Discover more tutorials like this in our [Solutions Architecture](https://about.gitlab.com/blog/tags/solutions-architecture/) area.\n",{"title":5,"description":19,"ogTitle":5,"ogDescription":19,"noIndex":17,"ogImage":21,"ogUrl":36,"ogSiteName":37,"ogType":38,"canonicalUrls":36},"https://about.gitlab.com/blog/deploy-a-server-using-go-with-gitlab-google-cloud","https://about.gitlab.com","article","en-us/blog/deploy-a-server-using-go-with-gitlab-google-cloud",[41,42,25,43,13,27],"devsecops","devsecops-platform","solutions-architecture",[23,24,25,26,13,27],"zFUQgbzQLjbAN-OzAmQ50GoNy0c6RPLoth2tSAUA48w",{"logo":47,"freeTrial":52,"sales":57,"login":62,"items":67,"search":387,"minimal":418,"duo":437,"switchNav":446,"pricingDeployment":457},{"config":48},{"href":49,"dataGaName":50,"dataGaLocation":51},"/","gitlab logo","header",{"text":53,"config":54},"Get free trial",{"href":55,"dataGaName":56,"dataGaLocation":51},"https://gitlab.com/-/trial_registrations/new?glm_source=about.gitlab.com&glm_content=default-saas-trial/","free trial",{"text":58,"config":59},"Talk to sales",{"href":60,"dataGaName":61,"dataGaLocation":51},"/sales/","sales",{"text":63,"config":64},"Sign in",{"href":65,"dataGaName":66,"dataGaLocation":51},"https://gitlab.com/users/sign_in/","sign in",[68,97,197,202,306,367],{"text":69,"config":70,"menu":72},"Platform",{"dataNavLevelOne":71},"platform",{"type":73,"columns":74},"cards",[75,81,89],{"title":69,"description":76,"link":77},"The intelligent orchestration platform for DevSecOps",{"text":78,"config":79},"Explore our Platform",{"href":80,"dataGaName":71,"dataGaLocation":51},"/platform/",{"title":82,"description":83,"link":84},"GitLab Duo Agent Platform","Agentic AI for the entire software lifecycle",{"text":85,"config":86},"Meet GitLab Duo",{"href":87,"dataGaName":88,"dataGaLocation":51},"/gitlab-duo-agent-platform/","gitlab duo agent platform",{"title":90,"description":91,"link":92},"Why GitLab","See the top reasons enterprises choose GitLab",{"text":93,"config":94},"Learn more",{"href":95,"dataGaName":96,"dataGaLocation":51},"/why-gitlab/","why gitlab",{"text":98,"left":32,"config":99,"menu":101},"Product",{"dataNavLevelOne":100},"solutions",{"type":102,"link":103,"columns":107,"feature":176},"lists",{"text":104,"config":105},"View all Solutions",{"href":106,"dataGaName":100,"dataGaLocation":51},"/solutions/",[108,132,155],{"title":109,"description":110,"link":111,"items":116},"Automation","CI/CD and automation to accelerate deployment",{"config":112},{"icon":113,"href":114,"dataGaName":115,"dataGaLocation":51},"AutomatedCodeAlt","/solutions/delivery-automation/","automated software delivery",[117,121,124,128],{"text":118,"config":119},"CI/CD",{"href":120,"dataGaLocation":51,"dataGaName":118},"/solutions/continuous-integration/",{"text":82,"config":122},{"href":87,"dataGaLocation":51,"dataGaName":123},"gitlab duo agent platform - product menu",{"text":125,"config":126},"Source Code Management",{"href":127,"dataGaLocation":51,"dataGaName":125},"/solutions/source-code-management/",{"text":129,"config":130},"Automated Software Delivery",{"href":114,"dataGaLocation":51,"dataGaName":131},"Automated software delivery",{"title":133,"description":134,"link":135,"items":140},"Security","Deliver code faster without compromising security",{"config":136},{"href":137,"dataGaName":138,"dataGaLocation":51,"icon":139},"/solutions/application-security-testing/","security and compliance","ShieldCheckLight",[141,145,150],{"text":142,"config":143},"Application Security Testing",{"href":137,"dataGaName":144,"dataGaLocation":51},"Application security testing",{"text":146,"config":147},"Software Supply Chain Security",{"href":148,"dataGaLocation":51,"dataGaName":149},"/solutions/supply-chain/","Software supply chain security",{"text":151,"config":152},"Software Compliance",{"href":153,"dataGaName":154,"dataGaLocation":51},"/solutions/software-compliance/","software compliance",{"title":156,"link":157,"items":162},"Measurement",{"config":158},{"icon":159,"href":160,"dataGaName":161,"dataGaLocation":51},"DigitalTransformation","/solutions/visibility-measurement/","visibility and measurement",[163,167,171],{"text":164,"config":165},"Visibility & Measurement",{"href":160,"dataGaLocation":51,"dataGaName":166},"Visibility and Measurement",{"text":168,"config":169},"Value Stream Management",{"href":170,"dataGaLocation":51,"dataGaName":168},"/solutions/value-stream-management/",{"text":172,"config":173},"Analytics & Insights",{"href":174,"dataGaLocation":51,"dataGaName":175},"/solutions/analytics-and-insights/","Analytics and insights",{"title":177,"type":102,"items":178},"GitLab for",[179,185,191],{"text":180,"config":181},"Enterprise",{"icon":182,"href":183,"dataGaLocation":51,"dataGaName":184},"Building","/enterprise/","enterprise",{"text":186,"config":187},"Small Business",{"icon":188,"href":189,"dataGaLocation":51,"dataGaName":190},"Work","/small-business/","small business",{"text":192,"config":193},"Public Sector",{"icon":194,"href":195,"dataGaLocation":51,"dataGaName":196},"Organization","/solutions/public-sector/","public sector",{"text":198,"config":199},"Pricing",{"href":200,"dataGaName":201,"dataGaLocation":51,"dataNavLevelOne":201},"/pricing/","pricing",{"text":203,"config":204,"menu":206},"Resources",{"dataNavLevelOne":205},"resources",{"type":102,"link":207,"columns":211,"feature":295},{"text":208,"config":209},"View all resources",{"href":210,"dataGaName":205,"dataGaLocation":51},"/resources/",[212,245,267],{"title":213,"items":214},"Getting started",[215,220,225,230,235,240],{"text":216,"config":217},"Install",{"href":218,"dataGaName":219,"dataGaLocation":51},"/install/","install",{"text":221,"config":222},"Quick start guides",{"href":223,"dataGaName":224,"dataGaLocation":51},"/get-started/","quick setup checklists",{"text":226,"config":227},"Learn",{"href":228,"dataGaLocation":51,"dataGaName":229},"https://university.gitlab.com/","learn",{"text":231,"config":232},"Product documentation",{"href":233,"dataGaName":234,"dataGaLocation":51},"https://docs.gitlab.com/","product documentation",{"text":236,"config":237},"Best practice videos",{"href":238,"dataGaName":239,"dataGaLocation":51},"/getting-started-videos/","best practice videos",{"text":241,"config":242},"Integrations",{"href":243,"dataGaName":244,"dataGaLocation":51},"/integrations/","integrations",{"title":246,"items":247},"Discover",[248,253,258,262],{"text":249,"config":250},"Customer success stories",{"href":251,"dataGaName":252,"dataGaLocation":51},"/customers/","customer success stories",{"text":254,"config":255},"Blog",{"href":256,"dataGaName":257,"dataGaLocation":51},"/blog/","blog",{"text":259,"config":260},"The Source",{"href":261,"dataGaName":257,"dataGaLocation":51},"/the-source/",{"text":263,"config":264},"Remote",{"href":265,"dataGaName":266,"dataGaLocation":51},"https://handbook.gitlab.com/handbook/company/culture/all-remote/","remote",{"title":268,"items":269},"Connect",[270,275,280,285,290],{"text":271,"config":272},"GitLab Services",{"href":273,"dataGaName":274,"dataGaLocation":51},"/services/","services",{"text":276,"config":277},"Community",{"href":278,"dataGaName":279,"dataGaLocation":51},"/community/","community",{"text":281,"config":282},"Forum",{"href":283,"dataGaName":284,"dataGaLocation":51},"https://forum.gitlab.com/","forum",{"text":286,"config":287},"Events",{"href":288,"dataGaName":289,"dataGaLocation":51},"/events/","events",{"text":291,"config":292},"Partners",{"href":293,"dataGaName":294,"dataGaLocation":51},"/partners/","partners",{"config":296,"title":299,"text":300,"link":301},{"background":297,"textColor":298},"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":302,"config":303},"Read the latest",{"href":304,"dataGaName":305,"dataGaLocation":51},"/releases/whats-new/","whats new",{"text":307,"config":308,"menu":310},"Company",{"dataNavLevelOne":309},"company",{"type":102,"columns":311},[312],{"items":313},[314,319,325,327,332,337,342,347,352,357,362],{"text":315,"config":316},"About",{"href":317,"dataGaName":318,"dataGaLocation":51},"/company/","about",{"text":320,"config":321,"footerGa":324},"Jobs",{"href":322,"dataGaName":323,"dataGaLocation":51},"/jobs/","jobs",{"dataGaName":323},{"text":286,"config":326},{"href":288,"dataGaName":289,"dataGaLocation":51},{"text":328,"config":329},"Leadership",{"href":330,"dataGaName":331,"dataGaLocation":51},"/company/team/e-group/","leadership",{"text":333,"config":334},"Team",{"href":335,"dataGaName":336,"dataGaLocation":51},"/company/team/","team",{"text":338,"config":339},"Handbook",{"href":340,"dataGaName":341,"dataGaLocation":51},"https://handbook.gitlab.com/","handbook",{"text":343,"config":344},"Investor relations",{"href":345,"dataGaName":346,"dataGaLocation":51},"https://ir.gitlab.com/","investor relations",{"text":348,"config":349},"Trust Center",{"href":350,"dataGaName":351,"dataGaLocation":51},"/security/","trust center",{"text":353,"config":354},"AI Transparency Center",{"href":355,"dataGaName":356,"dataGaLocation":51},"/ai-transparency-center/","ai transparency center",{"text":358,"config":359},"Newsletter",{"href":360,"dataGaName":361,"dataGaLocation":51},"/company/contact/#contact-forms","newsletter",{"text":363,"config":364},"Press",{"href":365,"dataGaName":366,"dataGaLocation":51},"/press/","press",{"text":368,"config":369,"menu":370},"Contact us",{"dataNavLevelOne":309},{"type":102,"columns":371},[372],{"items":373},[374,377,382],{"text":58,"config":375},{"href":60,"dataGaName":376,"dataGaLocation":51},"talk to sales",{"text":378,"config":379},"Support portal",{"href":380,"dataGaName":381,"dataGaLocation":51},"https://support.gitlab.com","support portal",{"text":383,"config":384},"Customer portal",{"href":385,"dataGaName":386,"dataGaLocation":51},"https://customers.gitlab.com/customers/sign_in/","customer portal",{"close":388,"login":389,"suggestions":396},"Close",{"text":390,"link":391},"To search repositories and projects, login to",{"text":392,"config":393},"gitlab.com",{"href":65,"dataGaName":394,"dataGaLocation":395},"search login","search",{"text":397,"default":398},"Suggestions",[399,401,405,407,411,415],{"text":82,"config":400},{"href":87,"dataGaName":82,"dataGaLocation":395},{"text":402,"config":403},"Code Suggestions (AI)",{"href":404,"dataGaName":402,"dataGaLocation":395},"/solutions/code-suggestions/",{"text":118,"config":406},{"href":120,"dataGaName":118,"dataGaLocation":395},{"text":408,"config":409},"GitLab on AWS",{"href":410,"dataGaName":408,"dataGaLocation":395},"/partners/technology-partners/aws/",{"text":412,"config":413},"GitLab on Google Cloud",{"href":414,"dataGaName":412,"dataGaLocation":395},"/partners/technology-partners/google-cloud-platform/",{"text":416,"config":417},"Why GitLab?",{"href":95,"dataGaName":416,"dataGaLocation":395},{"freeTrial":419,"mobileIcon":424,"desktopIcon":429,"secondaryButton":432},{"text":420,"config":421},"Start free trial",{"href":422,"dataGaName":56,"dataGaLocation":423},"https://gitlab.com/-/trials/new/","nav",{"altText":425,"config":426},"Gitlab Icon",{"src":427,"dataGaName":428,"dataGaLocation":423},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1758203874/jypbw1jx72aexsoohd7x.svg","gitlab icon",{"altText":425,"config":430},{"src":431,"dataGaName":428,"dataGaLocation":423},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1758203875/gs4c8p8opsgvflgkswz9.svg",{"text":433,"config":434},"Get Started",{"href":435,"dataGaName":436,"dataGaLocation":423},"https://gitlab.com/-/trial_registrations/new?glm_source=about.gitlab.com/get-started/","get started",{"freeTrial":438,"mobileIcon":442,"desktopIcon":444},{"text":439,"config":440},"Learn more about GitLab Duo",{"href":87,"dataGaName":441,"dataGaLocation":423},"gitlab duo",{"altText":425,"config":443},{"src":427,"dataGaName":428,"dataGaLocation":423},{"altText":425,"config":445},{"src":431,"dataGaName":428,"dataGaLocation":423},{"button":447,"mobileIcon":452,"desktopIcon":454},{"text":448,"config":449},"/switch",{"href":450,"dataGaName":451,"dataGaLocation":423},"#contact","switch",{"altText":425,"config":453},{"src":427,"dataGaName":428,"dataGaLocation":423},{"altText":425,"config":455},{"src":456,"dataGaName":428,"dataGaLocation":423},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1773335277/ohhpiuoxoldryzrnhfrh.png",{"freeTrial":458,"mobileIcon":463,"desktopIcon":465},{"text":459,"config":460},"Back to pricing",{"href":200,"dataGaName":461,"dataGaLocation":423,"icon":462},"back to pricing","GoBack",{"altText":425,"config":464},{"src":427,"dataGaName":428,"dataGaLocation":423},{"altText":425,"config":466},{"src":431,"dataGaName":428,"dataGaLocation":423},{"title":468,"button":469,"config":474},"See how agentic AI transforms software delivery",{"text":470,"config":471},"Sign up for GitLab Transcend on June 10",{"href":472,"dataGaName":473,"dataGaLocation":51},"/releases/whats-new/#sign-up","transcend event",{"layout":475,"icon":476,"disabled":17},"release","AiStar",{"data":478},{"text":479,"source":480,"edit":486,"contribute":491,"config":496,"items":501,"minimal":705},"Git is a trademark of Software Freedom Conservancy and our use of 'GitLab' is under license",{"text":481,"config":482},"View page source",{"href":483,"dataGaName":484,"dataGaLocation":485},"https://gitlab.com/gitlab-com/marketing/digital-experience/about-gitlab-com/","page source","footer",{"text":487,"config":488},"Edit this page",{"href":489,"dataGaName":490,"dataGaLocation":485},"https://gitlab.com/gitlab-com/marketing/digital-experience/about-gitlab-com/-/blob/main/content/","web ide",{"text":492,"config":493},"Please contribute",{"href":494,"dataGaName":495,"dataGaLocation":485},"https://gitlab.com/gitlab-com/marketing/digital-experience/about-gitlab-com/-/blob/main/CONTRIBUTING.md/","please contribute",{"twitter":497,"facebook":498,"youtube":499,"linkedin":500},"https://twitter.com/gitlab","https://www.facebook.com/gitlab","https://www.youtube.com/channel/UCnMGQ8QHMAnVIsI3xJrihhg","https://www.linkedin.com/company/gitlab-com",[502,549,600,644,671],{"title":198,"links":503,"subMenu":518},[504,508,513],{"text":505,"config":506},"View plans",{"href":200,"dataGaName":507,"dataGaLocation":485},"view plans",{"text":509,"config":510},"Why Premium?",{"href":511,"dataGaName":512,"dataGaLocation":485},"/pricing/premium/","why premium",{"text":514,"config":515},"Why Ultimate?",{"href":516,"dataGaName":517,"dataGaLocation":485},"/pricing/ultimate/","why ultimate",[519],{"title":520,"links":521},"Contact Us",[522,525,527,529,534,539,544],{"text":523,"config":524},"Contact sales",{"href":60,"dataGaName":61,"dataGaLocation":485},{"text":378,"config":526},{"href":380,"dataGaName":381,"dataGaLocation":485},{"text":383,"config":528},{"href":385,"dataGaName":386,"dataGaLocation":485},{"text":530,"config":531},"Status",{"href":532,"dataGaName":533,"dataGaLocation":485},"https://status.gitlab.com/","status",{"text":535,"config":536},"Terms of use",{"href":537,"dataGaName":538,"dataGaLocation":485},"/terms/","terms of use",{"text":540,"config":541},"Privacy statement",{"href":542,"dataGaName":543,"dataGaLocation":485},"/privacy/","privacy statement",{"text":545,"config":546},"Cookie preferences",{"dataGaName":547,"dataGaLocation":485,"id":548,"isOneTrustButton":32},"cookie preferences","ot-sdk-btn",{"title":98,"links":550,"subMenu":558},[551,554],{"text":24,"config":552},{"href":80,"dataGaName":553,"dataGaLocation":485},"devsecops platform",{"text":555,"config":556},"AI-Assisted Development",{"href":87,"dataGaName":557,"dataGaLocation":485},"ai-assisted development",[559],{"title":560,"links":561},"Topics",[562,567,572,577,582,585,590,595],{"text":563,"config":564},"CICD",{"href":565,"dataGaName":566,"dataGaLocation":485},"/topics/ci-cd/","cicd",{"text":568,"config":569},"GitOps",{"href":570,"dataGaName":571,"dataGaLocation":485},"/topics/gitops/","gitops",{"text":573,"config":574},"DevOps",{"href":575,"dataGaName":576,"dataGaLocation":485},"/topics/devops/","devops",{"text":578,"config":579},"Version Control",{"href":580,"dataGaName":581,"dataGaLocation":485},"/topics/version-control/","version control",{"text":23,"config":583},{"href":584,"dataGaName":41,"dataGaLocation":485},"/topics/devsecops/",{"text":586,"config":587},"Cloud Native",{"href":588,"dataGaName":589,"dataGaLocation":485},"/topics/cloud-native/","cloud native",{"text":591,"config":592},"AI for Coding",{"href":593,"dataGaName":594,"dataGaLocation":485},"/topics/devops/ai-for-coding/","ai for coding",{"text":596,"config":597},"Agentic AI",{"href":598,"dataGaName":599,"dataGaLocation":485},"/topics/agentic-ai/","agentic ai",{"title":601,"links":602},"Solutions",[603,605,607,612,616,619,623,626,628,631,634,639],{"text":142,"config":604},{"href":137,"dataGaName":142,"dataGaLocation":485},{"text":131,"config":606},{"href":114,"dataGaName":115,"dataGaLocation":485},{"text":608,"config":609},"Agile development",{"href":610,"dataGaName":611,"dataGaLocation":485},"/solutions/agile-delivery/","agile delivery",{"text":613,"config":614},"SCM",{"href":127,"dataGaName":615,"dataGaLocation":485},"source code management",{"text":563,"config":617},{"href":120,"dataGaName":618,"dataGaLocation":485},"continuous integration & delivery",{"text":620,"config":621},"Value stream management",{"href":170,"dataGaName":622,"dataGaLocation":485},"value stream management",{"text":568,"config":624},{"href":625,"dataGaName":571,"dataGaLocation":485},"/solutions/gitops/",{"text":180,"config":627},{"href":183,"dataGaName":184,"dataGaLocation":485},{"text":629,"config":630},"Small business",{"href":189,"dataGaName":190,"dataGaLocation":485},{"text":632,"config":633},"Public sector",{"href":195,"dataGaName":196,"dataGaLocation":485},{"text":635,"config":636},"Education",{"href":637,"dataGaName":638,"dataGaLocation":485},"/solutions/education/","education",{"text":640,"config":641},"Financial services",{"href":642,"dataGaName":643,"dataGaLocation":485},"/solutions/finance/","financial services",{"title":203,"links":645},[646,648,650,652,655,657,659,661,663,665,667,669],{"text":216,"config":647},{"href":218,"dataGaName":219,"dataGaLocation":485},{"text":221,"config":649},{"href":223,"dataGaName":224,"dataGaLocation":485},{"text":226,"config":651},{"href":228,"dataGaName":229,"dataGaLocation":485},{"text":231,"config":653},{"href":233,"dataGaName":654,"dataGaLocation":485},"docs",{"text":254,"config":656},{"href":256,"dataGaName":257,"dataGaLocation":485},{"text":249,"config":658},{"href":251,"dataGaName":252,"dataGaLocation":485},{"text":263,"config":660},{"href":265,"dataGaName":266,"dataGaLocation":485},{"text":271,"config":662},{"href":273,"dataGaName":274,"dataGaLocation":485},{"text":276,"config":664},{"href":278,"dataGaName":279,"dataGaLocation":485},{"text":281,"config":666},{"href":283,"dataGaName":284,"dataGaLocation":485},{"text":286,"config":668},{"href":288,"dataGaName":289,"dataGaLocation":485},{"text":291,"config":670},{"href":293,"dataGaName":294,"dataGaLocation":485},{"title":307,"links":672},[673,675,677,679,681,683,685,689,694,696,698,700],{"text":315,"config":674},{"href":317,"dataGaName":309,"dataGaLocation":485},{"text":320,"config":676},{"href":322,"dataGaName":323,"dataGaLocation":485},{"text":328,"config":678},{"href":330,"dataGaName":331,"dataGaLocation":485},{"text":333,"config":680},{"href":335,"dataGaName":336,"dataGaLocation":485},{"text":338,"config":682},{"href":340,"dataGaName":341,"dataGaLocation":485},{"text":343,"config":684},{"href":345,"dataGaName":346,"dataGaLocation":485},{"text":686,"config":687},"Sustainability",{"href":688,"dataGaName":686,"dataGaLocation":485},"/sustainability/",{"text":690,"config":691},"Diversity, inclusion and belonging (DIB)",{"href":692,"dataGaName":693,"dataGaLocation":485},"/diversity-inclusion-belonging/","Diversity, inclusion and belonging",{"text":348,"config":695},{"href":350,"dataGaName":351,"dataGaLocation":485},{"text":358,"config":697},{"href":360,"dataGaName":361,"dataGaLocation":485},{"text":363,"config":699},{"href":365,"dataGaName":366,"dataGaLocation":485},{"text":701,"config":702},"Modern Slavery Transparency Statement",{"href":703,"dataGaName":704,"dataGaLocation":485},"https://handbook.gitlab.com/handbook/legal/modern-slavery-act-transparency-statement/","modern slavery transparency statement",{"items":706},[707,710,713],{"text":708,"config":709},"Terms",{"href":537,"dataGaName":538,"dataGaLocation":485},{"text":711,"config":712},"Cookies",{"dataGaName":547,"dataGaLocation":485,"id":548,"isOneTrustButton":32},{"text":714,"config":715},"Privacy",{"href":542,"dataGaName":543,"dataGaLocation":485},[717,731],{"id":718,"title":10,"body":30,"config":719,"content":721,"description":30,"extension":725,"meta":726,"navigation":32,"path":727,"seo":728,"stem":729,"__hash__":730},"blogAuthors/en-us/blog/authors/claire-champernowne.yml",{"template":720},"BlogAuthor",{"name":10,"config":722},{"headshot":723,"ctfId":724},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664698/Blog/Author%20Headshots/clair_champernowne_headshot.png","jNt5P04nQ4dptXOKZZ8ZQ","yml",{},"/en-us/blog/authors/claire-champernowne",{},"en-us/blog/authors/claire-champernowne","OnZQjcD7hICotLx3XJblGd0BUyGYfV_8I2JLe-yr6Z4",{"id":732,"title":11,"body":30,"config":733,"content":734,"description":30,"extension":725,"meta":738,"navigation":32,"path":739,"seo":740,"stem":741,"__hash__":742},"blogAuthors/en-us/blog/authors/noah-ing.yml",{"template":720},{"name":11,"config":735},{"headshot":736,"ctfId":737},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664410/Blog/Author%20Headshots/noahing.png","noahing",{},"/en-us/blog/authors/noah-ing",{},"en-us/blog/authors/noah-ing","NHgV_yTX8kHX01mE2SSxC6hcOMw3BCWiblr8m6csLkw",[744,754,763],{"content":745,"config":752},{"title":746,"description":747,"heroImage":748,"date":749,"tags":750,"category":13},"GitLab Patch Release: 18.11.2, 18.10.5","Learn about this release for GitLab Community Edition and Enterprise Edition.","https://res.cloudinary.com/about-gitlab-com/image/upload/v1749661926/Blog/Hero%20Images/security-patch-blog-image-r2-0506-700x400-fy25_2x.jpg","2026-04-29",[751],"patch releases",{"featured":17,"template":15,"externalUrl":753},"https://docs.gitlab.com/releases/patches/patch-release-gitlab-18-11-2-released/",{"content":755,"config":761},{"title":756,"description":757,"heroImage":748,"date":758,"category":13,"tags":759},"GitLab Patch Release: 18.11.1, 18.10.4, 18.9.6","Discover what's in this latest patch release.","2026-04-22",[751,760],"security releases",{"featured":17,"template":15,"externalUrl":762},"https://docs.gitlab.com/releases/patches/patch-release-gitlab-18-11-1-released/",{"content":764,"config":776},{"title":765,"description":766,"body":767,"category":13,"tags":768,"date":771,"authors":772,"heroImage":775},"GitLab + Amazon: Platform orchestration on a trusted AI foundation","Pair GitLab Duo Agent Platform with Amazon Bedrock for agentic software development and orchestration.","If your team runs GitLab and has a strong AWS practice, a new combination of Duo Agent Platform and Amazon Bedrock is just for you. The model is simple: GitLab acts as your orchestration layer to help accelerate your entire software lifecycle with agentic AI, and Bedrock is designed to provide a secure, compliant foundation model layer with AI inference behind the scenes.\n\nGitLab Duo Agent Platform enables you to handle planning, merge pipelines, security scanning, vulnerability remediation, and more as part of your GitLab workflows, while the GitLab AI Gateway routes model calls to Bedrock (or GitLab-managed Bedrock-backed endpoints, depending on your setup). That means you can build on the identity and access management (IAM) policies, virtual private cloud (VPC) boundaries, regional controls, and cloud spend commitments you already have in AWS.\n\nIf you already use Amazon Bedrock and want AI to help inside the work you already do in GitLab, not in yet another standalone chat tool, this is the pairing for you.\n\n\nIn this article, we look at the real problem many teams face today: AI is fragmented, data paths are fuzzy, and Bedrock investment gets underused when AI sits outside the software development lifecycle. Then we break down your deployment options for GitLab Duo Agent Platform:\n\n* Integrated with self-hosted models on Amazon Bedrock for GitLab Self-Managed deployments and self-hosted AI gateway   \n* Integrated with GitLab-operated models on Amazon Bedrock (with GitLab-owned keys) for GitLab Self-Managed deployments and GitLab-hosted AI gateway  \n* Integrated with GitLab-operated models on Amazon Bedrock (with GitLab-owned keys) for GitLab.com instances and GitLab-hosted AI gateway\n\nWe wrap with a summary on how this approach helps avoid shadow AI and point-tool sprawl without creating a parallel tech stack for AI tooling.\n\n## AI everywhere, control nowhere\n\nSomewhere in your company right now, software teams might be using an AI tool that your security team hasn't approved. Prompt data might be leaving your environment through a path no one has fully mapped. And your organization’s Amazon Bedrock investment might be underused while individual teams expense separate AI tools, pulling workloads and cloud spend away from the platforms you’ve already committed to.\n\nInstead of being a people problem, this might be an architecture problem. And it surfaces the same three constraints in nearly every enterprise:\n\n**Operational fragmentation.** Each team, or sometimes even an individual developer, picks their own development toolset, including AI tooling and model selection. That fragmentation makes end-to-end governance within the software development lifecycle nearly impossible.\n\n**Security and sovereignty.** Where does prompt and code data actually flow? Who owns the logs?\n\n**Cloud spend optimization.** Commitments to key cloud providers like AWS are diluted as workloads and AI usage drift to point tools outside of customers’ existing agreements.\n\nGitLab Duo Agent Platform and Amazon Bedrock help solve this together. The division of labor is straightforward: Duo Agent Platform owns the workflow orchestration with agentic AI for software development, Bedrock owns the inference layer and hosts approved foundational models, and your organization has full control over the data and policy boundaries you already defined in AWS. Three jobs, three owners, no fragmentation.\n\n## GitLab Duo Agent Platform: The agentic control plane\n\nGitLab Duo Agent Platform is GitLab's agentic AI layer: a framework of specialized agents and flows that operate simultaneously and in-parallel, going beyond the traditional stage-based handoffs  and helping automate work across the entire software lifecycle. Rather than a single assistant responding to prompts, Duo Agent Platform enables teams to orchestrate many AI agents asynchronously using unified data and project context, including issues, merge requests, pipelines, and security findings. Linear workflows are turned into coordinated, continuous collaboration between software teams and their AI agents, at scale.\n\nWith that control plane in place, the natural next question is which AI foundation should power these agents. For customers who run GitLab Self-Managed on AWS and need inference traffic, prompt data, and logs to also stay within their AWS environment along with their software lifecycle data, Amazon Bedrock acting as the AI inference layer is the natural fit. \n\n## Amazon Bedrock: The trusted AI foundation\n\nAmazon Bedrock is a fully managed, serverless foundation model layer that runs entirely within your AWS environment. Customer data stays in the customer's AWS account: inputs and outputs are encrypted in transit and at rest, never shared with model providers, and never used to train base models. Bedrock carries compliance certifications across GDPR, HIPAA, and FedRAMP High, covering many regulated industry requirements out of the box. Teams can also bring fine-tuned models from elsewhere via Custom Model Import and deploy them alongside native Bedrock models through the same infrastructure, without managing separate deployment pipelines. Bedrock Guardrails adds configurable safeguards across all models for content filtering, hallucination detection, and sensitive data protection.\n\nTogether, GitLab Duo Agent Platform and Bedrock consolidate DevSecOps orchestration and AI model governance, helping eliminate the fragmentation that happens when teams roll out AI tools independently.\n\n## Choosing your deployment path\n\nThe integration delivers the same core GitLab Duo Agent Platform capabilities regardless of how it is deployed. What varies is who runs GitLab, who operates the AI Gateway, and whose Bedrock account the inference runs through. The right pattern depends on where your organization already operates.\n\nAt a high level, the integration has three main components:\n\n* **GitLab Duo Agent Platform:** agentic workflows embedded across the software development lifecycle  \n* **AI Gateway (GitLab-managed or self-hosted):** the abstraction layer between Duo Agent Platform and the foundational model backend   \n* **Amazon Bedrock:** the AI model and inference substrate\n\n![Deployment of GitLab and AWS Bedrock](https://res.cloudinary.com/about-gitlab-com/image/upload/v1776362365/udmvmv2efpmwtkxgydch.png)\n\nChoosing a deployment pattern is informed by where an organization wants to place the levers of control. The patterns below are designed to meet teams where they already are, whether that's SaaS-first, self-managed for compliance, or all-in on AWS with existing Bedrock investments.\n\n| Deployment Model | GitLab.com instance with GitLab-hosted AI Gateway with GitLab-operated Bedrock models   | GitLab Self-Managed with GitLab-hosted AI Gateway with GitLab-operated Bedrock models | GitLab Self-Managed  with self-hosted AI Gateway and customer-operated Bedrock models |\n| :---- | :---- | :---- | :---- |\n| **Ideal if you:** | Are primarily on GitLab.com and don’t want to self-host AI gateway and Bedrock models  | Need GitLab Self-Managed for compliance and operational reasons but don’t want to manage AI layer | Are AWS-centric with existing Bedrock usage and strict data/control needs  |\n| **Key Benefits** | Fastest, turnkey way to get Duo Agent Platform workflows: GitLab runs GitLab.com, the AI Gateway, integrated with Bedrock AI models. | Keep GitLab deployed in your own environment while consuming Bedrock models via a GitLab-managed AI Gateway, combining deployment control with simplified AI operations. | Run GitLab and AI Gateway in your AWS account, reuse existing IAM/VPC/regions, keep logs and data in your environment, and draw Bedrock usage from your existing AWS spend commitments. |\n\n## How customers use GitLab Duo Agent Platform with Amazon Bedrock\n\nPlatform teams can use GitLab Duo Agent Platform with Amazon Bedrock to standardize which models handle code suggestions, security analysis, and pipeline remediation. This helps enforce guardrails and logging centrally rather than letting individual teams adopt separate tools independently.\n\nSecurity workflows see particular benefit. GitLab Duo Agent Platform agents can propose and validate fixes for security findings within GitLab, helping reduce the manual triage work developers would otherwise handle outside the platform.\n\nFor enterprises already committed to AWS, routing AI workloads through Bedrock from within GitLab enables you to keep developer AI usage aligned with existing cloud agreements rather than generating separate, unplanned spend.\n\n## Closing the loop\n\nThe constraints that slow enterprise AI adoption are often not technical. They are organizational: fragmented tooling, ungoverned data flows, and cloud spend that never consolidates. Those are the problems that can stall AI programs even after the pilots succeed.\n\nGitLab Duo Agent Platform and Amazon Bedrock help address each one directly. Platform teams get consistent governance, auditability, and standardized paths for AI usage across the software development lifecycle. Development teams get streamlined, agentic workflows that feel native to GitLab. And AWS-centric organizations get to extend their existing Bedrock investment rather than build parallel AI infrastructure alongside it.\n\nThe result is an AI program that scales without fragmenting. Governance and velocity on the same stack, serving the same teams, under policies the organization already owns.\n\n\n> To explore which deployment pattern is right for your organization and how to align GitLab Duo Agent Platform and Amazon Bedrock with your existing AWS strategy, [contact the GitLab sales team](https://about.gitlab.com/sales/) and we’ll help you design and implement the best architecture for your environment. You can also [visit our AWS partner page](https://about.gitlab.com/partners/technology-partners/aws/) to learn more.",[294,769,770],"AWS","AI/ML","2026-04-21",[773,774],"Joe Mann","Mark Kriaf","https://res.cloudinary.com/about-gitlab-com/image/upload/v1776362275/ozbwn9tk0dditpnfddlz.png",{"featured":32,"template":15,"slug":777},"gitlab-amazon-platform-orchestration-on-a-trusted-ai-foundation",{"promotions":779},[780,794,805,817],{"id":781,"categories":782,"header":784,"text":785,"button":786,"image":791},"ai-modernization",[783],"ai-ml","Is AI achieving its promise at scale?","Quiz will take 5 minutes or less",{"text":787,"config":788},"Get your AI maturity score",{"href":789,"dataGaName":790,"dataGaLocation":257},"/assessments/ai-modernization-assessment/","modernization assessment",{"config":792},{"src":793},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1772138786/qix0m7kwnd8x2fh1zq49.png",{"id":795,"categories":796,"header":797,"text":785,"button":798,"image":802},"devops-modernization",[13,41],"Are you just managing tools or shipping innovation?",{"text":799,"config":800},"Get your DevOps maturity score",{"href":801,"dataGaName":790,"dataGaLocation":257},"/assessments/devops-modernization-assessment/",{"config":803},{"src":804},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1772138785/eg818fmakweyuznttgid.png",{"id":806,"categories":807,"header":809,"text":785,"button":810,"image":814},"security-modernization",[808],"security","Are you trading speed for security?",{"text":811,"config":812},"Get your security maturity score",{"href":813,"dataGaName":790,"dataGaLocation":257},"/assessments/security-modernization-assessment/",{"config":815},{"src":816},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1772138786/p4pbqd9nnjejg5ds6mdk.png",{"id":818,"paths":819,"header":822,"text":823,"button":824,"image":829},"github-azure-migration",[820,821],"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":825,"config":826},"See how GitLab compares to GitHub",{"href":827,"dataGaName":828,"dataGaLocation":257},"/compare/gitlab-vs-github/github-azure-migration/","github azure migration",{"config":830},{"src":804},{"header":832,"blurb":833,"button":834,"secondaryButton":839},"Start building faster today","See what your team can do with the intelligent orchestration platform for DevSecOps.\n",{"text":835,"config":836},"Get your free trial",{"href":837,"dataGaName":56,"dataGaLocation":838},"https://gitlab.com/-/trial_registrations/new?glm_content=default-saas-trial&glm_source=about.gitlab.com/","feature",{"text":523,"config":840},{"href":60,"dataGaName":61,"dataGaLocation":838},1777934803252]