[{"data":1,"prerenderedAt":1379},["ShallowReactive",2],{"/blog/deploy-aws":3,"navigation-en-us":595,"banner-en-us":1023,"footer-en-us":1033,"blog-post-authors-en-us-Orit Golowinski":1275,"blog-related-posts-en-us-deploy-aws":1289,"blog-promotions-en-us":1315,"next-steps-en-us":1369},{"id":4,"title":5,"authors":6,"body":8,"category":572,"date":573,"description":574,"extension":575,"externalUrl":576,"faq":576,"featured":577,"heroImage":578,"meta":579,"navigation":580,"path":581,"seo":582,"slug":586,"stem":587,"tags":588,"template":593,"updatedDate":576,"__hash__":594},"blogPosts/en-us/blog/deploy-aws.md","How to deploy to AWS with GitLab",[7],"Orit Golowinski",{"type":9,"value":10,"toc":549},"minimark",[11,15,20,30,39,57,61,66,97,101,135,139,185,189,193,211,215,247,251,255,263,269,319,323,330,337,340,344,350,356,359,363,370,377,380,402,411,414,427,430,436,440,443,488,492,507,510,526,535],[12,13,14],"p",{},"Cloud computing services are replacing traditional hardware technologies at an extremely fast pace. The majority of businesses worldwide are already moving their applications to the cloud — both public and private cloud — or plan to in the near future. Over a short period of time, this technology took over the market as businesses preferred remote access to data as well as the cloud's scalability, economy, and reach.",[16,17,19],"h2",{"id":18},"aws-deployment-deploying-applications-to-the-cloud","AWS Deployment: deploying applications to the cloud",[12,21,22,23,29],{},"COVID-19 and the resulting trend toward remote work forced organizations to adopt cloud technologies even if they hadn’t planned to originally. Software deployment to the cloud has also increased. Cloud is no longer just virtual machines, organizations are driving the use of ",[24,25,28],"a",{"href":26,"rel":27},"https://searchitoperations.techtarget.com/definition/Containers-as-a-Service-CaaS",[],"Containers as a Service (CaaS)","\ndue to their growing interest in leveraging containers to ease development and testing, speed up deployment, scale operations, and increase the efficiency of workloads running in the cloud.",[12,31,32,33,38],{},"Since deployment to the cloud has become a standard practice, at GitLab we want to make this repeatable and ",[24,34,37],{"href":35,"rel":36},"https://handbook.gitlab.com/handbook/values/#boring-solutions",[],"boring",". In this blog post, we explain how we've made it easier to deploy to Amazon Web Services (AWS) as part of your deployment process. We invite users to replicate this example to deploy to other cloud providers in a similar way.",[12,40,41,42,46,47,50,51,56],{},"Since we want cloud deployment to be as flexible as possible (similar to a microservices architecture), we constructed atomic Docker images that function as building blocks. Users can use these images as part of their custom ",[43,44,45],"code",{},"gitlab-ci.yml"," file or use our predefined ",[43,48,49],{},".gitlab-ci.yml"," templates. We also added the ability to use ",[24,52,55],{"href":53,"rel":54},"https://docs.gitlab.com/topics/autodevops/",[],"Auto\nDevOps"," with the new AWS deployment targets.",[16,58,60],{"id":59},"aws-deployment-how-to-use-gitlabs-official-aws-docker-images","AWS Deployment: how to use GitLab's official AWS Docker Images",[62,63,65],"h3",{"id":64},"aws-cli-docker-image","AWS CLI Docker image",[12,67,68,69,74,75,80,81,86,87,90,91,96],{},"In ",[24,70,73],{"href":71,"rel":72},"https://docs.gitlab.com/releases/",[],"GitLab 12.6",", we provided an official GitLab ",[24,76,79],{"href":77,"rel":78},"https://gitlab.com/gitlab-org/cloud-deploy/-/blob/master/aws/cloud_deploy/Dockerfile",[],"AWS cloud-deploy","\nDocker image that downloads and installs the ",[24,82,85],{"href":83,"rel":84},"https://aws.amazon.com/cli/",[],"AWS\nCLI",". This allows users to run ",[43,88,89],{},"aws"," commands directly from their pipelines. For more information, see ",[24,92,95],{"href":93,"rel":94},"https://docs.gitlab.com/ci/cloud_deployment/#run-aws-commands-from-gitlab-cicd",[],"Run AWS commands from GitLab\nCI/CD",".",[62,98,100],{"id":99},"cloudformation-stack-creation-docker-image","CloudFormation stack creation Docker image",[12,102,68,103,107,108,113,114,117,118,123,124,131,132,134],{},[24,104,106],{"href":71,"rel":105},[],"GitLab 13.5",", we provided a\nDocker image that runs a script that ",[24,109,112],{"href":110,"rel":111},"https://gitlab.com/gitlab-org/cloud-deploy/-/blob/master/aws/src/bin/gl-cloudformation",[],"creates a stack with\nCloudFormation",".\nThe ",[43,115,116],{},"gl-cloudprovision create-stack"," uses ",[24,119,122],{"href":120,"rel":121},"https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/template-anatomy.html",[],"aws cloudformation create-stack","\nbehind the scenes. A JSON file based on the CloudFormation template must be passed to that command. For an example of this type of JSON file, see ",[24,125,128],{"href":126,"rel":127},"https://gitlab.com/ebaque/jekyll-demo/-/blob/deploy-to-ec2/aws/cf_create_stack.json",[],[43,129,130],{},"cf_create_stack.json",".\nWith this type of JSON file, the command creates the infrastructure on AWS, including an EC2 instance directly from the ",[43,133,49],{}," file. The script exists once we get confirmation that the stack setup is complete or has failed (through periodic polling).",[62,136,138],{"id":137},"push-to-s3-and-deploy-to-ec2-docker-image","Push to S3 and Deploy to EC2 Docker image",[12,140,68,141,144,145,113,150,153,154,157,158,165,166,169,170,173,174,176,177,184],{},[24,142,106],{"href":71,"rel":143},[]," we also provided a Docker image with ",[24,146,149],{"href":147,"rel":148},"https://gitlab.com/gitlab-org/cloud-deploy/-/blob/master/aws/src/bin/gl-ec2",[],"Push to S3 and Deploy to EC2 scripts",[43,151,152],{},"gl-ec2 push-to-s3"," script pushes source code to an S3 bucket. For an example of the JSON file to pass to the ",[43,155,156],{},"aws deploy push"," command, see ",[24,159,162],{"href":160,"rel":161},"https://gitlab.com/ebaque/jekyll-demo/-/blob/deploy-to-ec2/aws/s3_push.json",[],[43,163,164],{},"s3_push.json",".\nThis code can be whatever artifact is built from a preceding build job. The ",[43,167,168],{},"gl-ec2 deploy-to-ec2"," script uses ",[43,171,172],{},"aws deploy create-deployment"," behind the scenes to create a deployment to an EC2 instance directly from the ",[43,175,49],{}," file. For an example of the JSON template to pass, see ",[24,178,181],{"href":179,"rel":180},"https://gitlab.com/ebaque/jekyll-demo/-/blob/deploy-to-ec2/aws/create_deployment.json",[],[43,182,183],{},"create_deployment.json",".\nThe script ends once we get confirmation that the deployment has succeeded or failed (via polling).",[16,186,188],{"id":187},"aws-deployment-using-gitlab-ci-templates-to-deploy-to-aws","AWS Deployment: using GitLab CI templates to deploy to AWS",[62,190,192],{"id":191},"how-to-deploy-to-elastic-container-service-ecs-with-gitlab","How to deploy to Elastic Container Service (ECS) with GitLab",[12,194,68,195,199,200,202,203,210],{},[24,196,198],{"href":71,"rel":197},[],"GitLab 12.9",", we created a full ",[43,201,49],{}," template called ",[24,204,207],{"href":205,"rel":206},"https://gitlab.com/gitlab-org/gitlab/-/blob/master/lib/gitlab/ci/templates/Jobs/Deploy/ECS.gitlab-ci.yml",[],[43,208,209],{},"Deploy-ECS.giltab-ci.yml","\nthat deploys to Amazon ECS and extends support for Fargate. Users can include the template in their configuration, specify a few variables, and their application will be deployed and ready to go in no time. This template can be customized for your specific needs. For example: Replacing the selected container registry, changing the path of the file location, etc.",[62,212,214],{"id":213},"how-to-deploy-to-elastic-cloud-compute-ec2-with-gitlab","How to deploy to Elastic Cloud Compute (EC2) with GitLab",[12,216,68,217,199,220,202,222,229,230,235,236,241,242,96],{},[24,218,106],{"href":71,"rel":219},[],[43,221,49],{},[24,223,226],{"href":224,"rel":225},"https://gitlab.com/gitlab-org/gitlab/-/blob/master/lib/gitlab/ci/templates/Jobs/Deploy/EC2.gitlab-ci.yml",[],[43,227,228],{},"CF-Provision-and-Deploy-EC2.gitlab-ci.yml","\nthat provisions the infrastructure by leveraging ",[24,231,234],{"href":232,"rel":233},"https://aws.amazon.com/cloudformation/",[],"AWS\nCloudFormation",". It then pushes your previously-built artifact to an ",[24,237,240],{"href":238,"rel":239},"https://aws.amazon.com/s3/",[],"AWS S3 bucket","\nand deploys the pushed content to ",[24,243,246],{"href":244,"rel":245},"https://aws.amazon.com/ec2/",[],"AWS EC2",[16,248,250],{"id":249},"aws-deployment-security-considerations","AWS Deployment: security  considerations",[62,252,254],{"id":253},"predefined-aws-cicd-variables","Predefined AWS CI/CD variables",[12,256,257,258,262],{},"In order to deploy to AWS, you must use AWS security keys to connect to to your AWS instance. Users can define this security keys as ",[24,259,261],{"href":260},"/topics/ci-cd/","CI/CD environment"," variables that can be used by the deployment pipeline.",[12,264,68,265,268],{},[24,266,198],{"href":71,"rel":267},[],", we added support for predefined AWS variables. This support function helps users know which variables are required for deploying to AWS and also prevents typos and spelling mistakes.",[270,271,272,285],"table",{},[273,274,275],"thead",{},[276,277,278,282],"tr",{},[279,280,281],"th",{},"Env. variable name",[279,283,284],{},"Value",[286,287,288,299,309],"tbody",{},[276,289,290,296],{},[291,292,293],"td",{},[43,294,295],{},"AWS_ACCESS_KEY_ID",[291,297,298],{},"Your Access key ID",[276,300,301,306],{},[291,302,303],{},[43,304,305],{},"AWS_SECRET_ACCESS_KEY",[291,307,308],{},"Your Secret access key",[276,310,311,316],{},[291,312,313],{},[43,314,315],{},"AWS_DEFAULT_REGION",[291,317,318],{},"Your region code",[62,320,322],{"id":321},"just-in-time-guidance-for-aws-deployments","\"Just-in-time\" guidance for AWS deployments",[12,324,325,329],{},[24,326,328],{"href":71,"rel":327},[],"GitLab 13.1"," provides just-in-time guidance for users who wish to deploy to AWS. Setting up AWS deployments isn't always as easy as we'd like it to be, so we've added in-product links to our AWS templates and documentation when you start adding AWS CI/CD variables to make it easier for you to use our AWS features. This will help you get up and running faster.",[12,331,332],{},[333,334],"img",{"alt":335,"src":336},"In-product guidance for\nAWS","https://res.cloudinary.com/about-gitlab-com/image/upload/v1782397981/blog/Content%20Images/aws_guide.png",[12,338,339],{},"AWS guide from CI/CD variables",[62,341,343],{"id":342},"added-security-for-the-gitlabs-official-aws-docker-images","Added security for the GitLab's official AWS Docker images",[12,345,68,346,349],{},[24,347,106],{"href":71,"rel":348},[],", we changed the image identifier from the release version number to the Docker image digest.\nDocker supports immutable image identifiers and we adopted this best practice to update our cloud-deploy images. When a new image is tagged, we also programmatically retrieve the image digest upon its build and create a release note to effectively communicate this digest to users. This guarantees that every instance of the service runs exactly the same code.\nYou can roll back to an earlier version of the image, even if that version wasn't tagged (or is no longer tagged). This can even prevent race conditions if a new image is pushed while a deploy is in progress.",[12,351,352],{},[333,353],{"alt":354,"src":355},"Docker Image\nDigest","https://res.cloudinary.com/about-gitlab-com/image/upload/v1782398190/blog/Content%20Images/digest1.png",[12,357,358],{},"Docker image digest or release tag",[16,360,362],{"id":361},"aws-deployment-auto-devops-support","AWS Deployment: auto DevOps support",[12,364,365,366,96],{},"GitLab already supports Kubernetes users deploying to AWS EKS cluster. Click the link to read instructions about ",[24,367,369],{"href":368},"/blog/deploying-application-eks/#:~:text=The%20Auto%20DevOps%20function%20at,build%2C%20and%20deploy%20your%20application","how to deploy an application to a\nGitLab-managed Amazon EKS cluster with Auto\nDevOps",[12,371,372,373,376],{},"We also expanded Auto DevOps to support non-Kubernetes users. Users can specify their deployment target by adding the ",[43,374,375],{},"AUTO_DEVOPS_PLATFORM_TARGET"," variable under the CI/CD variables settings. Specifying the deployment target platform builds a full CI/CD pipeline that deploys to AWS targets.",[12,378,379],{},"We currently support:",[381,382,383,390,396],"ul",{},[384,385,386,389],"li",{},[43,387,388],{},"AUTO_DEVOPS_PLATFORM_TARGET: ECS"," (added in GitLab 13.0)",[384,391,392,395],{},[43,393,394],{},"AUTO_DEVOPS_PLATFORM_TARGET: FARGATE"," (added in GitLab 13.2)",[384,397,398,401],{},[43,399,400],{},"AUTO_DEVOPS_PLATFORM_TARGET: EC2"," (added in GitLab 13.6)",[12,403,404,405,410],{},"For more information about Auto DevOps for AWS targets, see ",[24,406,409],{"href":407,"rel":408},"https://docs.gitlab.com/topics/autodevops/requirements/",[],"requirements for Auto\nDevOps","\ndocumentation.",[12,412,413],{},"Here's a quick recording for how to use Auto Deploy to Amazon ECS:",[415,416,419,420],"figure",{"className":417},[418],"video_container","\n  ",[421,422,426],"iframe",{"src":423,"frameBorder":424,"allowFullScreen":425},"https://www.youtube-nocookie.com/embed/HzRhLLFlAos","0","true"," ",[12,428,429],{},"Speed run on how to use auto deploy to EC2 (animation):",[415,431,419,433],{"className":432},[418],[421,434,426],{"src":435,"frameBorder":424,"allowFullScreen":425},"https://www.youtube-nocookie.com/embed/rVr-vZfNL6U",[16,437,439],{"id":438},"aws-deployment-future-plans-to-extend-deployment-support-via-gitlab","AWS Deployment: Future plans to extend deployment support via GitLab",[12,441,442],{},"Check out some of the open issues below to see our plans are for the future of deploying to AWS using GitLab.",[381,444,445,453,461,474],{},[384,446,447,452],{},[24,448,451],{"href":449,"rel":450},"https://gitlab.com/gitlab-org/gitlab/-/issues/215333",[],"Show AWS deployment success code in\nlogs",": This will bring the success/failure codes from AWS into your GitLab pipeline logs, allowing you to see the deployment success code without needing to go into the AWS console to retrieve the logs.",[384,454,455,460],{},[24,456,459],{"href":457,"rel":458},"https://gitlab.com/gitlab-org/gitlab/-/issues/232983",[],"Show AWS deployment success code in pipeline\nview",": This will bring the success/failure codes from AWS into your GitLab pipeline, allowing you to see if the deployment job was successful in one view.",[384,462,463,468,469,473],{},[24,464,467],{"href":465,"rel":466},"https://gitlab.com/gitlab-org/gitlab/-/issues/219087",[],"Auto Deploy to AWS\nS3",": This will expand the supported deployment targets covered in this blog to include ",[24,470,472],{"href":238,"rel":471},[],"S3 buckets"," as well.",[384,475,476,481,482,487],{},[24,477,480],{"href":478,"rel":479},"https://gitlab.com/gitlab-org/gitlab/-/issues/27107",[],"AWS integration per-environment role\nmanagement",": This returns a set of temporary security credentials you can use to access AWS resources that you normally might not be able to access. This is accomplished by using the ",[24,483,486],{"href":484,"rel":485},"https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_identifiers.html",[],"AWS\nIAM","\nroles.",[16,489,491],{"id":490},"more-material-on-deploying-to-eks-and-lambda","More material on deploying to EKS and Lambda",[381,493,494,501],{},[384,495,496,96],{},[24,497,500],{"href":498,"rel":499},"https://docs.google.com/presentation/d/1iXnB6lvTx2_-_0ASElLUDZwyFPWILCRx54XjJkMFuw0/edit#slide=id.g6bb36a7017_2_42",[],"Demo of how to deploy to\nEKS",[384,502,503,96],{},[24,504,506],{"href":505},"/blog/deploy-aws/","Whitepaper on how to deploy on AWS from\nGitLab",[12,508,509],{},"We invite you to contribute to our other cloud provider solutions:",[381,511,512,519],{},[384,513,514,96],{},[24,515,518],{"href":516,"rel":517},"https://gitlab.com/groups/gitlab-org/-/epics/2706",[],"Streamline GCP\ndeployments",[384,520,521,96],{},[24,522,525],{"href":523,"rel":524},"https://gitlab.com/groups/gitlab-org/-/epics/4846",[],"Streamline Azure\ndeployments",[12,527,528,529,534],{},"At GitLab, everyone can contribute. If you want to deploy to a target that isn't mentioned in this post, please let us know by adding an issue and linking it to our ",[24,530,533],{"href":531,"rel":532},"https://gitlab.com/groups/gitlab-org/-/epics/1804",[],"Natively support hypercloud deployments"," epic.",[12,536,537,538,543,544],{},"Cover image by ",[24,539,542],{"href":540,"rel":541},"https://unsplash.com/photos/uj3hvdfQujI",[],"SpaceX"," on ",[24,545,548],{"href":546,"rel":547},"https://www.unsplash.com",[],"Unsplash",{"title":550,"searchDepth":551,"depth":551,"links":552},"",2,[553,554,560,564,569,570,571],{"id":18,"depth":551,"text":19},{"id":59,"depth":551,"text":60,"children":555},[556,558,559],{"id":64,"depth":557,"text":65},3,{"id":99,"depth":557,"text":100},{"id":137,"depth":557,"text":138},{"id":187,"depth":551,"text":188,"children":561},[562,563],{"id":191,"depth":557,"text":192},{"id":213,"depth":557,"text":214},{"id":249,"depth":551,"text":250,"children":565},[566,567,568],{"id":253,"depth":557,"text":254},{"id":321,"depth":557,"text":322},{"id":342,"depth":557,"text":343},{"id":361,"depth":551,"text":362},{"id":438,"depth":551,"text":439},{"id":490,"depth":551,"text":491},"engineering","2020-12-15","We believe deploying to the cloud should be easy and boring. The deployment process is the same regardless of what tech stack you're using so why not automate it?","md",null,false,"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749672124/Blog/Hero%20Images/aws_rocket.jpg",{},true,"/en-us/blog/deploy-aws",{"ogTitle":5,"ogImage":578,"ogDescription":574,"ogSiteName":583,"noIndex":577,"ogType":584,"ogUrl":585,"title":5,"canonicalUrls":585,"description":574},"https://about.gitlab.com","article","https://about.gitlab.com/blog/deploy-aws","deploy-aws","en-us/blog/deploy-aws",[589,590,591,592],"cloud native","DevOps","CI","CD","BlogPost","VbChFFl3Ejcr1I4jTF_2DeYE6RVXOB9CmWFw400rOCU",{"logo":596,"freeTrial":601,"sales":606,"login":611,"items":616,"search":943,"minimal":974,"duo":993,"switchNav":1002,"pricingDeployment":1013},{"config":597},{"href":598,"dataGaName":599,"dataGaLocation":600},"/","gitlab logo","header",{"text":602,"config":603},"Get free trial",{"href":604,"dataGaName":605,"dataGaLocation":600},"https://gitlab.com/-/trial_registrations/new?glm_source=about.gitlab.com&glm_content=default-saas-trial/","free trial",{"text":607,"config":608},"Request a demo",{"href":609,"dataGaName":610,"dataGaLocation":600},"/sales/?contact-topic=request-demo","sales",{"text":612,"config":613},"Sign in",{"href":614,"dataGaName":615,"dataGaLocation":600},"https://gitlab.com/users/sign_in/","sign in",[617,646,746,751,865,921],{"text":618,"config":619,"menu":621},"Platform",{"dataNavLevelOne":620},"platform",{"type":622,"columns":623},"cards",[624,630,638],{"title":618,"description":625,"link":626},"The intelligent orchestration platform for DevSecOps",{"text":627,"config":628},"Explore our Platform",{"href":629,"dataGaName":620,"dataGaLocation":600},"/platform/",{"title":631,"description":632,"link":633},"GitLab Duo Agent Platform","Agentic AI for the entire software lifecycle",{"text":634,"config":635},"Meet GitLab Duo",{"href":636,"dataGaName":637,"dataGaLocation":600},"/gitlab-duo-agent-platform/","gitlab duo agent platform",{"title":639,"description":640,"link":641},"Why GitLab","See the top reasons enterprises choose GitLab",{"text":642,"config":643},"Learn more",{"href":644,"dataGaName":645,"dataGaLocation":600},"/why-gitlab/","why gitlab",{"text":647,"left":580,"config":648,"menu":650},"Product",{"dataNavLevelOne":649},"solutions",{"type":651,"link":652,"columns":656,"feature":725},"lists",{"text":653,"config":654},"View all Solutions",{"href":655,"dataGaName":649,"dataGaLocation":600},"/solutions/",[657,681,704],{"title":658,"description":659,"link":660,"items":665},"Automation","CI/CD and automation to accelerate deployment",{"config":661},{"icon":662,"href":663,"dataGaName":664,"dataGaLocation":600},"AutomatedCodeAlt","/solutions/delivery-automation/","automated software delivery",[666,670,673,677],{"text":667,"config":668},"CI/CD",{"href":669,"dataGaLocation":600,"dataGaName":667},"/solutions/continuous-integration/",{"text":631,"config":671},{"href":636,"dataGaLocation":600,"dataGaName":672},"gitlab duo agent platform - product menu",{"text":674,"config":675},"Source Code Management",{"href":676,"dataGaLocation":600,"dataGaName":674},"/solutions/source-code-management/",{"text":678,"config":679},"Automated Software Delivery",{"href":663,"dataGaLocation":600,"dataGaName":680},"Automated software delivery",{"title":682,"description":683,"link":684,"items":689},"Security","Deliver code faster without compromising security",{"config":685},{"href":686,"dataGaName":687,"dataGaLocation":600,"icon":688},"/solutions/application-security-testing/","security and compliance","ShieldCheckLight",[690,694,699],{"text":691,"config":692},"Application Security Testing",{"href":686,"dataGaName":693,"dataGaLocation":600},"Application security testing",{"text":695,"config":696},"Software Supply Chain Security",{"href":697,"dataGaLocation":600,"dataGaName":698},"/solutions/supply-chain/","Software supply chain security",{"text":700,"config":701},"Software Compliance",{"href":702,"dataGaName":703,"dataGaLocation":600},"/solutions/software-compliance/","software compliance",{"title":705,"link":706,"items":711},"Measurement",{"config":707},{"icon":708,"href":709,"dataGaName":710,"dataGaLocation":600},"DigitalTransformation","/solutions/visibility-measurement/","visibility and measurement",[712,716,720],{"text":713,"config":714},"Visibility & Measurement",{"href":709,"dataGaLocation":600,"dataGaName":715},"Visibility and Measurement",{"text":717,"config":718},"Value Stream Management",{"href":719,"dataGaLocation":600,"dataGaName":717},"/solutions/value-stream-management/",{"text":721,"config":722},"Analytics & Insights",{"href":723,"dataGaLocation":600,"dataGaName":724},"/solutions/analytics-and-insights/","Analytics and insights",{"title":726,"type":651,"items":727},"GitLab for",[728,734,740],{"text":729,"config":730},"Enterprise",{"icon":731,"href":732,"dataGaLocation":600,"dataGaName":733},"Building","/enterprise/","enterprise",{"text":735,"config":736},"Small Business",{"icon":737,"href":738,"dataGaLocation":600,"dataGaName":739},"Work","/small-business/","small business",{"text":741,"config":742},"Public Sector",{"icon":743,"href":744,"dataGaLocation":600,"dataGaName":745},"Organization","/solutions/public-sector/","public sector",{"text":747,"config":748},"Pricing",{"href":749,"dataGaName":750,"dataGaLocation":600,"dataNavLevelOne":750},"/pricing/","pricing",{"text":752,"config":753,"menu":755},"Resources",{"dataNavLevelOne":754},"resources",{"type":651,"link":756,"columns":760,"feature":854},{"text":757,"config":758},"View all resources",{"href":759,"dataGaName":754,"dataGaLocation":600},"/resources/",[761,794,821],{"title":762,"items":763},"Getting started",[764,769,774,779,784,789],{"text":765,"config":766},"Install",{"href":767,"dataGaName":768,"dataGaLocation":600},"/install/","install",{"text":770,"config":771},"Quick start guides",{"href":772,"dataGaName":773,"dataGaLocation":600},"/get-started/","quick setup checklists",{"text":775,"config":776},"Learn",{"href":777,"dataGaLocation":600,"dataGaName":778},"https://university.gitlab.com/","learn",{"text":780,"config":781},"Product documentation",{"href":782,"dataGaName":783,"dataGaLocation":600},"https://docs.gitlab.com/","product documentation",{"text":785,"config":786},"Best practice videos",{"href":787,"dataGaName":788,"dataGaLocation":600},"/getting-started-videos/","best practice videos",{"text":790,"config":791},"Integrations",{"href":792,"dataGaName":793,"dataGaLocation":600},"/integrations/","integrations",{"title":795,"items":796},"Discover",[797,802,807,812,816],{"text":798,"config":799},"Customer success stories",{"href":800,"dataGaName":801,"dataGaLocation":600},"/customers/","customer success stories",{"text":803,"config":804},"Blog",{"href":805,"dataGaName":806,"dataGaLocation":600},"/blog/","blog",{"text":808,"config":809},"Demo Hub",{"href":810,"dataGaName":811,"dataGaLocation":600},"/demo-hub/","demo hub",{"text":813,"config":814},"The Source",{"href":815,"dataGaName":806,"dataGaLocation":600},"/the-source/",{"text":817,"config":818},"Remote",{"href":819,"dataGaName":820,"dataGaLocation":600},"https://handbook.gitlab.com/handbook/company/culture/all-remote/","remote",{"title":822,"items":823},"Connect",[824,829,834,839,844,849],{"text":825,"config":826},"GitLab Services",{"href":827,"dataGaName":828,"dataGaLocation":600},"/services/","services",{"text":830,"config":831},"Contribute",{"href":832,"dataGaName":833,"dataGaLocation":600},"https://contributors.gitlab.com","contribute",{"text":835,"config":836},"Community",{"href":837,"dataGaName":838,"dataGaLocation":600},"/community/","community",{"text":840,"config":841},"Forum",{"href":842,"dataGaName":843,"dataGaLocation":600},"https://forum.gitlab.com/","forum",{"text":845,"config":846},"Events",{"href":847,"dataGaName":848,"dataGaLocation":600},"/events/","events",{"text":850,"config":851},"Partners",{"href":852,"dataGaName":853,"dataGaLocation":600},"/partners/","partners",{"config":855,"title":858,"text":859,"link":860},{"background":856,"textColor":857},"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":861,"config":862},"Read the latest",{"href":863,"dataGaName":864,"dataGaLocation":600},"/whats-new/","whats new",{"text":866,"config":867,"menu":869},"Company",{"dataNavLevelOne":868},"company",{"type":651,"columns":870},[871],{"items":872},[873,878,884,886,891,896,901,906,911,916],{"text":874,"config":875},"About",{"href":876,"dataGaName":877,"dataGaLocation":600},"/company/","about",{"text":879,"config":880,"footerGa":883},"Jobs",{"href":881,"dataGaName":882,"dataGaLocation":600},"/jobs/","jobs",{"dataGaName":882},{"text":845,"config":885},{"href":847,"dataGaName":848,"dataGaLocation":600},{"text":887,"config":888},"Leadership",{"href":889,"dataGaName":890,"dataGaLocation":600},"/company/team/e-group/","leadership",{"text":892,"config":893},"Handbook",{"href":894,"dataGaName":895,"dataGaLocation":600},"https://handbook.gitlab.com/","handbook",{"text":897,"config":898},"Investor relations",{"href":899,"dataGaName":900,"dataGaLocation":600},"https://ir.gitlab.com/overview/default.aspx","investor relations",{"text":902,"config":903},"Trust Center",{"href":904,"dataGaName":905,"dataGaLocation":600},"/security/","trust center",{"text":907,"config":908},"AI Transparency Center",{"href":909,"dataGaName":910,"dataGaLocation":600},"/ai-transparency-center/","ai transparency center",{"text":912,"config":913},"Newsletter",{"href":914,"dataGaName":915,"dataGaLocation":600},"/company/contact/#contact-forms","newsletter",{"text":917,"config":918},"Press",{"href":919,"dataGaName":920,"dataGaLocation":600},"/press/","press",{"text":922,"config":923,"menu":924},"Contact us",{"dataNavLevelOne":868},{"type":651,"columns":925},[926],{"items":927},[928,933,938],{"text":929,"config":930},"Talk to sales",{"href":931,"dataGaName":932,"dataGaLocation":600},"/sales/","talk to sales",{"text":934,"config":935},"Support portal",{"href":936,"dataGaName":937,"dataGaLocation":600},"https://support.gitlab.com/hc/en-us","support portal",{"text":939,"config":940},"Customer portal",{"href":941,"dataGaName":942,"dataGaLocation":600},"https://customers.gitlab.com/customers/sign_in/","customer portal",{"close":944,"login":945,"suggestions":952},"Close",{"text":946,"link":947},"To search repositories and projects, login to",{"text":948,"config":949},"gitlab.com",{"href":614,"dataGaName":950,"dataGaLocation":951},"search login","search",{"text":953,"default":954},"Suggestions",[955,957,961,963,967,971],{"text":631,"config":956},{"href":636,"dataGaName":631,"dataGaLocation":951},{"text":958,"config":959},"Code Suggestions (AI)",{"href":960,"dataGaName":958,"dataGaLocation":951},"/solutions/code-suggestions/",{"text":667,"config":962},{"href":669,"dataGaName":667,"dataGaLocation":951},{"text":964,"config":965},"GitLab on AWS",{"href":966,"dataGaName":964,"dataGaLocation":951},"/partners/technology-partners/aws/",{"text":968,"config":969},"GitLab on Google Cloud",{"href":970,"dataGaName":968,"dataGaLocation":951},"/partners/technology-partners/google-cloud-platform/",{"text":972,"config":973},"Why GitLab?",{"href":644,"dataGaName":972,"dataGaLocation":951},{"freeTrial":975,"mobileIcon":980,"desktopIcon":985,"secondaryButton":988},{"text":976,"config":977},"Start free trial",{"href":978,"dataGaName":605,"dataGaLocation":979},"https://gitlab.com/-/trials/new/","nav",{"altText":981,"config":982},"Gitlab Icon",{"src":983,"dataGaName":984,"dataGaLocation":979},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1758203874/jypbw1jx72aexsoohd7x.svg","gitlab icon",{"altText":981,"config":986},{"src":987,"dataGaName":984,"dataGaLocation":979},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1758203875/gs4c8p8opsgvflgkswz9.svg",{"text":989,"config":990},"Get Started",{"href":991,"dataGaName":992,"dataGaLocation":979},"https://gitlab.com/-/trial_registrations/new?glm_source=about.gitlab.com/get-started/","get started",{"freeTrial":994,"mobileIcon":998,"desktopIcon":1000},{"text":995,"config":996},"Learn more about GitLab Duo",{"href":636,"dataGaName":997,"dataGaLocation":979},"gitlab duo",{"altText":981,"config":999},{"src":983,"dataGaName":984,"dataGaLocation":979},{"altText":981,"config":1001},{"src":987,"dataGaName":984,"dataGaLocation":979},{"button":1003,"mobileIcon":1008,"desktopIcon":1010},{"text":1004,"config":1005},"/switch",{"href":1006,"dataGaName":1007,"dataGaLocation":979},"#contact","switch",{"altText":981,"config":1009},{"src":983,"dataGaName":984,"dataGaLocation":979},{"altText":981,"config":1011},{"src":1012,"dataGaName":984,"dataGaLocation":979},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1773335277/ohhpiuoxoldryzrnhfrh.png",{"freeTrial":1014,"mobileIcon":1019,"desktopIcon":1021},{"text":1015,"config":1016},"Back to pricing",{"href":749,"dataGaName":1017,"dataGaLocation":979,"icon":1018},"back to pricing","GoBack",{"altText":981,"config":1020},{"src":983,"dataGaName":984,"dataGaLocation":979},{"altText":981,"config":1022},{"src":987,"dataGaName":984,"dataGaLocation":979},{"title":1024,"titleMobile":1025,"button":1026,"config":1031},"Duo Agent Platform delivers 400% ROI, per new Forrester Consulting study.","400% ROI: Forrester TEI for GitLab Duo",{"text":642,"config":1027},{"href":1028,"dataGaName":1029,"dataGaLocation":1030},"https://about.gitlab.com/blog/gitlab-duo-agent-platform-delivers-400-percent-roi/","forrester-tei-dap-banner","global-banner",{"layout":1032,"disabled":577},"release",{"data":1034},{"text":1035,"source":1036,"edit":1042,"contribute":1047,"config":1052,"items":1057,"minimal":1264},"Git is a trademark of Software Freedom Conservancy and our use of 'GitLab' is under license",{"text":1037,"config":1038},"View page source",{"href":1039,"dataGaName":1040,"dataGaLocation":1041},"https://gitlab.com/gitlab-com/marketing/digital-experience/about-gitlab-com/","page source","footer",{"text":1043,"config":1044},"Edit this page",{"href":1045,"dataGaName":1046,"dataGaLocation":1041},"https://gitlab.com/gitlab-com/marketing/digital-experience/about-gitlab-com/-/blob/main/content/","web ide",{"text":1048,"config":1049},"Please contribute",{"href":1050,"dataGaName":1051,"dataGaLocation":1041},"https://gitlab.com/gitlab-com/marketing/digital-experience/about-gitlab-com/-/blob/main/CONTRIBUTING.md/","please contribute",{"twitter":1053,"facebook":1054,"youtube":1055,"linkedin":1056},"https://twitter.com/gitlab","https://www.facebook.com/gitlab","https://www.youtube.com/channel/UCnMGQ8QHMAnVIsI3xJrihhg","https://www.linkedin.com/company/gitlab-com",[1058,1105,1156,1200,1232],{"title":747,"links":1059,"subMenu":1074},[1060,1064,1069],{"text":1061,"config":1062},"View plans",{"href":749,"dataGaName":1063,"dataGaLocation":1041},"view plans",{"text":1065,"config":1066},"Why Premium?",{"href":1067,"dataGaName":1068,"dataGaLocation":1041},"/pricing/premium/","why premium",{"text":1070,"config":1071},"Why Ultimate?",{"href":1072,"dataGaName":1073,"dataGaLocation":1041},"/pricing/ultimate/","why ultimate",[1075],{"title":1076,"links":1077},"Contact Us",[1078,1081,1083,1085,1090,1095,1100],{"text":1079,"config":1080},"Contact sales",{"href":931,"dataGaName":610,"dataGaLocation":1041},{"text":934,"config":1082},{"href":936,"dataGaName":937,"dataGaLocation":1041},{"text":939,"config":1084},{"href":941,"dataGaName":942,"dataGaLocation":1041},{"text":1086,"config":1087},"Status",{"href":1088,"dataGaName":1089,"dataGaLocation":1041},"https://status.gitlab.com/","status",{"text":1091,"config":1092},"Terms of use",{"href":1093,"dataGaName":1094,"dataGaLocation":1041},"/terms/","terms of use",{"text":1096,"config":1097},"Privacy statement",{"href":1098,"dataGaName":1099,"dataGaLocation":1041},"/privacy/","privacy statement",{"text":1101,"config":1102},"Cookie preferences",{"dataGaName":1103,"dataGaLocation":1041,"id":1104,"isOneTrustButton":580},"cookie preferences","ot-sdk-btn",{"title":647,"links":1106,"subMenu":1115},[1107,1111],{"text":1108,"config":1109},"DevSecOps platform",{"href":629,"dataGaName":1110,"dataGaLocation":1041},"devsecops platform",{"text":1112,"config":1113},"AI-Assisted Development",{"href":636,"dataGaName":1114,"dataGaLocation":1041},"ai-assisted development",[1116],{"title":1117,"links":1118},"Topics",[1119,1123,1128,1132,1137,1142,1146,1151],{"text":1120,"config":1121},"CICD",{"href":260,"dataGaName":1122,"dataGaLocation":1041},"cicd",{"text":1124,"config":1125},"GitOps",{"href":1126,"dataGaName":1127,"dataGaLocation":1041},"/topics/gitops/","gitops",{"text":590,"config":1129},{"href":1130,"dataGaName":1131,"dataGaLocation":1041},"/topics/devops/","devops",{"text":1133,"config":1134},"Version Control",{"href":1135,"dataGaName":1136,"dataGaLocation":1041},"/topics/version-control/","version control",{"text":1138,"config":1139},"DevSecOps",{"href":1140,"dataGaName":1141,"dataGaLocation":1041},"/topics/devsecops/","devsecops",{"text":1143,"config":1144},"Cloud Native",{"href":1145,"dataGaName":589,"dataGaLocation":1041},"/topics/cloud-native/",{"text":1147,"config":1148},"AI for Coding",{"href":1149,"dataGaName":1150,"dataGaLocation":1041},"/topics/devops/ai-for-coding/","ai for coding",{"text":1152,"config":1153},"Agentic AI",{"href":1154,"dataGaName":1155,"dataGaLocation":1041},"/topics/agentic-ai/","agentic ai",{"title":1157,"links":1158},"Solutions",[1159,1161,1163,1168,1172,1175,1179,1182,1184,1187,1190,1195],{"text":691,"config":1160},{"href":686,"dataGaName":691,"dataGaLocation":1041},{"text":680,"config":1162},{"href":663,"dataGaName":664,"dataGaLocation":1041},{"text":1164,"config":1165},"Agile development",{"href":1166,"dataGaName":1167,"dataGaLocation":1041},"/solutions/agile-delivery/","agile delivery",{"text":1169,"config":1170},"SCM",{"href":676,"dataGaName":1171,"dataGaLocation":1041},"source code management",{"text":1120,"config":1173},{"href":669,"dataGaName":1174,"dataGaLocation":1041},"continuous integration & delivery",{"text":1176,"config":1177},"Value stream management",{"href":719,"dataGaName":1178,"dataGaLocation":1041},"value stream management",{"text":1124,"config":1180},{"href":1181,"dataGaName":1127,"dataGaLocation":1041},"/solutions/gitops/",{"text":729,"config":1183},{"href":732,"dataGaName":733,"dataGaLocation":1041},{"text":1185,"config":1186},"Small business",{"href":738,"dataGaName":739,"dataGaLocation":1041},{"text":1188,"config":1189},"Public sector",{"href":744,"dataGaName":745,"dataGaLocation":1041},{"text":1191,"config":1192},"Education",{"href":1193,"dataGaName":1194,"dataGaLocation":1041},"/solutions/education/","education",{"text":1196,"config":1197},"Financial services",{"href":1198,"dataGaName":1199,"dataGaLocation":1041},"/solutions/finance/","financial services",{"title":752,"links":1201},[1202,1204,1206,1208,1211,1213,1216,1218,1220,1222,1224,1226,1228,1230],{"text":765,"config":1203},{"href":767,"dataGaName":768,"dataGaLocation":1041},{"text":770,"config":1205},{"href":772,"dataGaName":773,"dataGaLocation":1041},{"text":775,"config":1207},{"href":777,"dataGaName":778,"dataGaLocation":1041},{"text":780,"config":1209},{"href":782,"dataGaName":1210,"dataGaLocation":1041},"docs",{"text":803,"config":1212},{"href":805,"dataGaName":806,"dataGaLocation":1041},{"text":1214,"config":1215},"What's new",{"href":863,"dataGaName":864,"dataGaLocation":1041},{"text":798,"config":1217},{"href":800,"dataGaName":801,"dataGaLocation":1041},{"text":817,"config":1219},{"href":819,"dataGaName":820,"dataGaLocation":1041},{"text":825,"config":1221},{"href":827,"dataGaName":828,"dataGaLocation":1041},{"text":830,"config":1223},{"href":832,"dataGaName":833,"dataGaLocation":1041},{"text":835,"config":1225},{"href":837,"dataGaName":838,"dataGaLocation":1041},{"text":840,"config":1227},{"href":842,"dataGaName":843,"dataGaLocation":1041},{"text":845,"config":1229},{"href":847,"dataGaName":848,"dataGaLocation":1041},{"text":850,"config":1231},{"href":852,"dataGaName":853,"dataGaLocation":1041},{"title":866,"links":1233},[1234,1236,1238,1240,1242,1244,1248,1253,1255,1257,1259],{"text":874,"config":1235},{"href":876,"dataGaName":868,"dataGaLocation":1041},{"text":879,"config":1237},{"href":881,"dataGaName":882,"dataGaLocation":1041},{"text":887,"config":1239},{"href":889,"dataGaName":890,"dataGaLocation":1041},{"text":892,"config":1241},{"href":894,"dataGaName":895,"dataGaLocation":1041},{"text":897,"config":1243},{"href":899,"dataGaName":900,"dataGaLocation":1041},{"text":1245,"config":1246},"Sustainability",{"href":1247,"dataGaName":1245,"dataGaLocation":1041},"/sustainability/",{"text":1249,"config":1250},"Diversity, inclusion and belonging (DIB)",{"href":1251,"dataGaName":1252,"dataGaLocation":1041},"/diversity-inclusion-belonging/","Diversity, inclusion and belonging",{"text":902,"config":1254},{"href":904,"dataGaName":905,"dataGaLocation":1041},{"text":912,"config":1256},{"href":914,"dataGaName":915,"dataGaLocation":1041},{"text":917,"config":1258},{"href":919,"dataGaName":920,"dataGaLocation":1041},{"text":1260,"config":1261},"Modern Slavery Transparency Statement",{"href":1262,"dataGaName":1263,"dataGaLocation":1041},"https://handbook.gitlab.com/handbook/legal/modern-slavery-act-transparency-statement/","modern slavery transparency statement",{"items":1265},[1266,1269,1272],{"text":1267,"config":1268},"Terms",{"href":1093,"dataGaName":1094,"dataGaLocation":1041},{"text":1270,"config":1271},"Cookies",{"dataGaName":1103,"dataGaLocation":1041,"id":1104,"isOneTrustButton":580},{"text":1273,"config":1274},"Privacy",{"href":1098,"dataGaName":1099,"dataGaLocation":1041},[1276],{"id":1277,"title":7,"body":576,"config":1278,"content":1280,"description":576,"extension":1283,"meta":1284,"navigation":580,"path":1285,"seo":1286,"stem":1287,"__hash__":1288},"blogAuthors/en-us/blog/authors/orit-golowinski.yml",{"template":1279},"BlogAuthor",{"name":7,"config":1281},{"headshot":550,"ctfId":1282},"ogolowinski","yml",{},"/en-us/blog/authors/orit-golowinski",{},"en-us/blog/authors/orit-golowinski","g_opT-rlrAvUJqtvwZi1IMi9eS5RnsdTKwcP21y6bK0",[1290,1299,1307],{"title":1291,"description":1292,"heroImage":1293,"category":572,"date":1294,"authors":1295,"slug":1298,"externalUrl":576},"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",[1296,1297],"Mathias Ewald","Martin Paloncy, Edgeless Systems","confidential-ai-for-gitlab-self-hosted",{"title":1300,"description":1301,"heroImage":1302,"category":572,"date":1303,"authors":1304,"slug":1306,"externalUrl":576},"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",[1305],"Lysanne Pinto","green-devops-carbon-measurement-cicd-pipeline",{"title":1308,"description":1309,"heroImage":1310,"category":572,"date":1311,"authors":1312,"slug":1314,"externalUrl":576},"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",[1313],"Paul Meresanu","how-to-build-ci-cd-observability-at-scale",{"promotions":1316},[1317,1331,1343,1355],{"id":1318,"categories":1319,"header":1321,"text":1322,"button":1323,"image":1328},"ai-modernization",[1320],"ai","Is AI achieving its promise at scale?","Quiz will take 5 minutes or less",{"text":1324,"config":1325},"Get your AI maturity score",{"href":1326,"dataGaName":1327,"dataGaLocation":806},"/assessments/ai-modernization-assessment/","modernization assessment",{"config":1329},{"src":1330},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1772138786/qix0m7kwnd8x2fh1zq49.png",{"id":1332,"categories":1333,"header":1335,"text":1322,"button":1336,"image":1340},"devops-modernization",[1334,1141],"product","Are you just managing tools or shipping innovation?",{"text":1337,"config":1338},"Get your DevOps maturity score",{"href":1339,"dataGaName":1327,"dataGaLocation":806},"/assessments/devops-modernization-assessment/",{"config":1341},{"src":1342},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1772138785/eg818fmakweyuznttgid.png",{"id":1344,"categories":1345,"header":1347,"text":1322,"button":1348,"image":1352},"security-modernization",[1346],"security","Are you trading speed for security?",{"text":1349,"config":1350},"Get your security maturity score",{"href":1351,"dataGaName":1327,"dataGaLocation":806},"/assessments/security-modernization-assessment/",{"config":1353},{"src":1354},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1772138786/p4pbqd9nnjejg5ds6mdk.png",{"id":1356,"paths":1357,"header":1360,"text":1361,"button":1362,"image":1367},"github-azure-migration",[1358,1359],"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":1363,"config":1364},"See how GitLab compares to GitHub",{"href":1365,"dataGaName":1366,"dataGaLocation":806},"/compare/gitlab-vs-github/github-azure-migration/","github azure migration",{"config":1368},{"src":1342},{"header":1370,"blurb":1371,"button":1372,"secondaryButton":1377},"Start building faster today","See what your team can do with the intelligent orchestration platform for DevSecOps.\n",{"text":1373,"config":1374},"Get your free trial",{"href":1375,"dataGaName":605,"dataGaLocation":1376},"https://gitlab.com/-/trial_registrations/new?glm_content=default-saas-trial&glm_source=about.gitlab.com/","feature",{"text":1079,"config":1378},{"href":931,"dataGaName":610,"dataGaLocation":1376},1786803731824]