[{"data":1,"prerenderedAt":752},["ShallowReactive",2],{"/pt-br/topics/gitops/gitlab-enables-infrastructure-as-code/":3,"navigation-pt-br":99,"banner-pt-br":518,"footer-pt-br":531,"next-steps-pt-br":737},{"_path":4,"_dir":5,"_draft":6,"_partial":6,"_locale":7,"seo":8,"content":13,"_id":93,"_type":94,"title":7,"_source":95,"_file":96,"_stem":97,"_extension":98},"/pt-br/topics/gitops/gitlab-enables-infrastructure-as-code","gitops",false,"",{"title":9,"description":10,"config":11},"Como as equipes usam o GitLab e o Terraform para implantar infraestrutura como código: uma demonstração","GitLab Topics | How teams use GitLab and Terraform for infrastructure as code: A demo",{"ignoreTitleCharLimit":12},true,[14,28,34,91],{"type":15,"componentName":15,"componentContent":16},"CommonBreadcrumbs",{"crumbs":17},[18,22,26],{"title":19,"config":20},"Industry topics",{"href":21},"/topics/",{"title":23,"config":24},"GitOps",{"href":25},"/pt-br/topics/gitops/",{"title":27},"Gitlab enables infrastructure as code",{"type":29,"componentName":29,"componentContent":30},"CommonArticleHero",{"title":9,"text":31,"config":32},"Esta demonstração apresenta as boas práticas de GitOps para implantar infraestrutura como código, usando o Terraform para automação e o GitLab como a fonte única de verdade.\n",{"id":33,"twoColumns":6},"como-as-equipes-usam-o-gitlab-e-o-terraform-para-implantar-infraestrutura-como-código:-uma-demonstração",{"type":35,"componentName":35,"componentContent":36},"CommonSideNavigationWithTree",{"anchors":37,"components":60},{"text":38,"data":39},"Mais informações sobre este tópico",[40,44,48,52,56],{"text":41,"config":42},"Saiba como o GitLab permite implantar a infraestrutura como código",{"href":43},"#learn-how-git-lab-enables-infrastructure-as-code",{"text":45,"config":46},"Criação da infraestrutura como código no GitLab",{"href":47},"#building-your-infrastructure-as-code-in-git-lab",{"text":49,"config":50},"Dentro do subgrupo de infraestrutura",{"href":51},"#inside-the-infrastructure-subgroup",{"text":53,"config":54},"Implantação do código usando o GitLab CI",{"href":55},"#deploying-code-using-git-lab-ci",{"text":57,"config":58},"Quer saber mais sobre o GitOps?",{"href":59},"#ready-to-learn-more-about-git-ops",[61,66,71,76,81,86],{"type":62,"componentName":62,"componentContent":63},"TopicsCopy",{"text":64,"config":65},"Usar um repositório Git como a fonte única de verdade para todo o código de [infraestrutura](/blog/using-ansible-and-gitlab-as-infrastructure-for-code/){data-ga-name=\"infrastructure\" data-ga-location=\"body\"} e implantação de aplicações, com várias equipes trabalhando juntas, é uma boa prática de GitOps. As equipes de infraestrutura podem colaborar e implantar código em vários serviços de nuvem usando o Terraform para automação. Este artigo demonstra como as equipes podem criar um cluster do Kubernetes colaborando com colegas de equipe no GitLab.\n",{"id":7},{"type":62,"componentName":62,"componentContent":67},{"header":41,"text":68,"config":69},"Confira nesta demonstração como seguir boas práticas de GitOps para implantar infraestrutura como código, usando o Terraform para automação e o GitLab como a fonte única de verdade, bem como para CI.\n",{"id":70},"learn-how-git-lab-enables-infrastructure-as-code",{"type":62,"componentName":62,"componentContent":72},{"header":45,"text":73,"config":74},"### Primeiros passos\n\n_Este [grupo gitops-demo](https://gitlab.com/gitops-demo) ilustra as etapas que as equipes de infraestrutura podem seguir._\n\nComece fazendo login no grupo que hospeda o projeto no GitLab. A próxima etapa é abrir o arquivo [README.md](https://gitlab.com/gitops-demo/readme/blob/master/README.md), que mostra a estrutura subjacente do grupo gitops-demo. Existem alguns projetos individuais e dois subgrupos: **[infraestrutura](https://gitlab.com/gitops-demo/infra)** e **[aplicações](https://gitlab.com/gitops-demo/apps)**.\n",{"id":75},"building-your-infrastructure-as-code-in-git-lab",{"type":62,"componentName":62,"componentContent":77},{"header":49,"text":78,"config":79},"Há um repositório separado para cada nuvem: Azure, GCP e AWS, além de um repositório para modelos.\nArquivos semelhantes podem ser encontrados em todos os três repositórios de [nuvem](/blog/gitlab-ci-cd-is-for-multi-cloud/){data-ga-name=\"cloud\" data-ga-location=\"body\"}. Todos os arquivos são escritos no Terraform para automatizar o processo de implantação, enquanto um arquivo `gitlab-ci.yml` também é armazenado no repositório para definir as instruções de automação.\n\n### O arquivo de back-end\n\nUsar o [Terraform Cloud Service] da HashiCorp (https://www.hashicorp.com/blog/announcing-terraform-cloud) como local remoto para o arquivo de estado mantém o arquivo seguro e centralizado, permitindo que ele seja acessado por qualquer processo. Uma vantagem de usar o Terraform Cloud é que ele possibilita bloquear o estado para garantir que apenas um job possa ser executado por vez e evitar que vários jobs façam alterações conflitantes. O código armazena os arquivos de estado no [Terraform Cloud](https://app.terraform.io) em uma organização chamada `gitops-demo`, em um espaço de trabalho chamado `aws`. Isso mantém o estado de execução no provedor de nuvem para que qualquer membro da equipe tenha acesso a qualquer momento.\n\n```\nterraform {\n  backend \"remote\" {\n    hostname     = \"app.terraform.io\"\n    organization = \"gitops-demo\"\n    workspaces {\n      name = \"aws\"\n    }\n  }\n}\n\n```\n{: .language-ruby}\n\n### EKS.tf file\n\nO EKS é outro arquivo Terraform que usa o módulo EKS para o cluster Terraform. As equipes podem definir parâmetros, como o tipo de sub-rede e o número de nós, no arquivo EKS do Terraform.\n\n```\nmodule \"eks\" {\n  source           = \"terraform-aws-modules/eks/aws\"\n  cluster_name     = \"gitops-demo-eks\"\n  subnets          = \"${module.vpc.public_subnets}\"\n  write_kubeconfig = \"false\"\n  tags = {\n    Terraform   = \"true\"\n    Environment = \"dev\"\n  }\n  vpc_id = \"${module.vpc.vpc_id}\"\n  worker_groups = [\n    {\n      instance_type = \"m4.large\"\n      asg_max_size  = 5\n      tags = [{\n        key                 = \"Terraform\"\n        value               = \"true\"\n        propagate_at_launch = true\n      }]\n    }\n  ]\n}\n```\n{: .language-ruby}\n\n### Definir o administrador do GitLab\n\nO provedor do Kubernetes pode ser usado para criar um usuário administrador do GitLab e configurar tudo [automaticamente como código, gerenciado pelo Terraform](https://gitlab.com/gitops-demo/infra/aws/blob/master/gitlab-admin.tf).\n\n### Registrar o cluster com o GitLab\n\nAgora que um cluster do Kubernetes foi criado, é hora de registrá-lo no GitLab para implantar mais código no cluster no futuro. A primeira etapa é usar o provedor do GitLab para criar um cluster de grupos chamado AWS cluster.\n\n```\ndata \"gitlab_group\" \"gitops-demo-apps\" {\n  full_path = \"gitops-demo/apps\"\n}\nprovider \"gitlab\" {\n  alias   = \"use-pre-release-plugin\"\n  version = \"v2.99.0\"\n}\nresource \"gitlab_group_cluster\" \"aws_cluster\" {\n  provider           = \"gitlab.use-pre-release-plugin\"\n  group              = \"${data.gitlab_group.gitops-demo-apps.id}\"\n  name               = \"${module.eks.cluster_id}\"\n  domain             = \"eks.gitops-demo.com\"\n  environment_scope  = \"eks/*\"\n  kubernetes_api_url = \"${module.eks.cluster_endpoint}\"\n  kubernetes_token   = \"${data.kubernetes_secret.gitlab-admin-token.data.token}\"\n  kubernetes_ca_cert = \"${trimspace(base64decode(module.eks.cluster_certificate_authority_data))}\"\n}\n```\n{: .language-ruby}\n\nO código contém o nome do domínio, escopo do ambiente, e credenciais Kubernetes.\n\nDepois que isso for executado, o cluster será criado na AWS e registrado automaticamente no grupo [gitops-demo/apps](https://gitlab.com/gitops-demo/apps).\n",{"id":80},"inside-the-infrastructure-subgroup",{"type":62,"componentName":62,"componentContent":82},{"header":53,"text":83,"config":84},"### Modelo do Terraform\n\nRetorne ao grupo de infraestrutura e abra a pasta Modelos. Ao analisar o [arquivo terraform.gitlab-ci.yml](https://gitlab.com/gitops-demo/infra/templates/blob/master/terraform.gitlab-ci.yml), é possível conferir como a CI funciona para implantar o código da infraestrutura na nuvem usando o Terraform.\n\nDentro do arquivo de CI, as equipes podem conferir algumas etapas diferentes: validar, planejar, aplicar e destruir. Ao utilizar a imagem base do Terraform da Hashicorp, os usuários podem executar diferentes tarefas.\n\nA primeira etapa é inicializar o Terraform.\n\n```\nbefore_script:\n  - terraform --version\n  - terraform init\n  - apk add --update curl\n  - curl -o kubectl https://amazon-eks.s3-us-west-2.amazonaws.com/1.13.7/2019-06-11/bin/linux/amd64/kubectl\n  - install kubectl /usr/local/bin/ && rm kubectl\n  - curl -o aws-iam-authenticator https://amazon-eks.s3-us-west-2.amazonaws.com/1.13.7/2019-06-11/bin/linux/amd64/aws-iam-authenticator\n  - install aws-iam-authenticator /usr/local/bin/ && rm aws-iam-authenticator\n```\n{: .language-ruby}\n\nA próxima etapa é validar se tudo está correto.\n\n```\nvalidate:\n  stage: validate\n  script:\n    - terraform validate\n    - terraform fmt -check=true\n  only:\n    - branches\n```\n{: .language-ruby}\n\nÉ importante lembrar que bons fluxos de trabalho do GitOps incorporam a criação de uma [solicitação de merge](/blog/mr-reviews-with-vs-code/){data-ga-name=\"merge request\" data-ga-location=\"body\"} para as alterações.\n\n```\nmerge review:\n  stage: plan\n  script:\n    - terraform plan -out=$PLAN\n    - echo \\`\\`\\`diff > plan.txt\n    - terraform show -no-color ${PLAN} | tee -a plan.txt\n    - echo \\`\\`\\` >> plan.txt\n    - sed -i -e 's/  +/+/g' plan.txt\n    - sed -i -e 's/  ~/~/g' plan.txt\n    - sed -i -e 's/  -/-/g' plan.txt\n    - MESSAGE=$(cat plan.txt)\n    - >-\n      curl -X POST -g -H \"PRIVATE-TOKEN: ${GITLAB_TOKEN}\"\n      --data-urlencode \"body=${MESSAGE}\"\n      \"${CI_API_V4_URL}/projects/${CI_PROJECT_ID}/merge_requests/${CI_MERGE_REQUEST_IID}/discussions\"\n  artifacts:\n    name: plan\n    paths:\n      - $PLAN\n  only:\n    - merge_requests\n```\n{: .language-ruby}\n\n### A solicitação de merge\n\nA [solicitação de merge (MR)](https://gitlab.com/gitops-demo/infra/aws/merge_requests/6){data-ga-name=\"MR\" data-ga-location=\"body\"} é a etapa mais importante no GitOps. Este processo consiste em revisar todas as alterações e verificar o impacto delas. A MR também é uma [ferramenta de colaboração](/blog/merge-request-reviewers/){data-ga-name =\"collaboration tool\" data-ga-location = \"body\"} na qual os membros da equipe podem discutir as alterações e os stakeholders podem aprová-las antes de fazer o merge final no branch principal.\n\nA solicitação de merge define o que acontecerá ao executar a infraestrutura como código. Depois que a MR é criada, o plano Terraform é enviado por upload para ela. Após a revisão e aprovação de todas as alterações, o código poderá ser mesclado no branch principal. Depois que as alterações de código forem mescladas, todas elas serão implantadas no ambiente de produção.\n",{"id":85},"deploying-code-using-git-lab-ci",{"type":62,"componentName":62,"componentContent":87},{"header":57,"text":88,"config":89},"* [O que significa infraestrutura como código?](/topics/gitops/infrastructure-as-code/){data-ga-name=\"infrastructure as code\" data-ga-location=\"body\"}\n* [O que é GitOps](/topics/gitops/){data-ga-name=\"what is gitops\" data-ga-location=\"body\"}\n* [Saiba como o GitLab simplifica os fluxos de trabalho do GitOps](/solutions/gitops/){data-ga-name=\"streamlines workflows\" data-ga-location=\"body\"}\n* [Descubra como será o futuro do GitOps com líderes do setor](/why/gitops-infrastructure-automation/){data-ga-name=\"industry leaders\" data-ga-location=\"body\"}\n* [Leia o guia para iniciantes do GitOps](https://page.gitlab.com/resources-ebook-beginner-guide-gitops.html)\n",{"id":90},"ready-to-learn-more-about-git-ops",{"type":92,"componentName":92},"CommonNextSteps","content:pt-br:topics:gitops:gitlab-enables-infrastructure-as-code:index.yml","yaml","content","pt-br/topics/gitops/gitlab-enables-infrastructure-as-code/index.yml","pt-br/topics/gitops/gitlab-enables-infrastructure-as-code/index","yml",{"_path":100,"_dir":101,"_draft":6,"_partial":6,"_locale":7,"data":102,"_id":514,"_type":94,"title":515,"_source":95,"_file":516,"_stem":517,"_extension":98},"/shared/pt-br/main-navigation","pt-br",{"logo":103,"freeTrial":108,"sales":113,"login":118,"items":123,"search":455,"minimal":491,"duo":505},{"config":104},{"href":105,"dataGaName":106,"dataGaLocation":107},"/pt-br/","gitlab logo","header",{"text":109,"config":110},"Faça uma avaliação gratuita",{"href":111,"dataGaName":112,"dataGaLocation":107},"https://gitlab.com/-/trial_registrations/new?glm_source=about.gitlab.com&glm_content=default-saas-trial/","free trial",{"text":114,"config":115},"Fale com a equipe de vendas",{"href":116,"dataGaName":117,"dataGaLocation":107},"/pt-br/sales/","sales",{"text":119,"config":120},"Fazer login",{"href":121,"dataGaName":122,"dataGaLocation":107},"https://gitlab.com/users/sign_in/","sign in",[124,168,266,271,376,436],{"text":125,"config":126,"cards":128,"footer":151},"Plataforma",{"dataNavLevelOne":127},"platform",[129,135,143],{"title":125,"description":130,"link":131},"A plataforma DevSecOps mais abrangente com tecnologia de IA",{"text":132,"config":133},"Explore a nossa plataforma",{"href":134,"dataGaName":127,"dataGaLocation":107},"/pt-br/platform/",{"title":136,"description":137,"link":138},"GitLab Duo (IA)","Crie software mais rapidamente com a IA em todas as etapas de desenvolvimento",{"text":139,"config":140},"Conheça o GitLab Duo",{"href":141,"dataGaName":142,"dataGaLocation":107},"/pt-br/gitlab-duo/","gitlab duo ai",{"title":144,"description":145,"link":146},"Por que usar o GitLab","Dez razões pelas quais as empresas escolhem o GitLab",{"text":147,"config":148},"Saiba mais",{"href":149,"dataGaName":150,"dataGaLocation":107},"/pt-br/why-gitlab/","why gitlab",{"title":152,"items":153},"Comece a usar",[154,159,164],{"text":155,"config":156},"Engenharia de plataforma",{"href":157,"dataGaName":158,"dataGaLocation":107},"/pt-br/solutions/platform-engineering/","platform engineering",{"text":160,"config":161},"Experiência do desenvolvedor",{"href":162,"dataGaName":163,"dataGaLocation":107},"/pt-br/developer-experience/","Developer experience",{"text":165,"config":166},"MLOps",{"href":167,"dataGaName":165,"dataGaLocation":107},"/pt-br/topics/devops/the-role-of-ai-in-devops/",{"text":169,"left":12,"config":170,"link":172,"lists":176,"footer":248},"Produtos",{"dataNavLevelOne":171},"solutions",{"text":173,"config":174},"Confira todas as soluções",{"href":175,"dataGaName":171,"dataGaLocation":107},"/pt-br/solutions/",[177,203,226],{"title":178,"description":179,"link":180,"items":185},"Automação","CI/CD e automação para acelerar a implantação",{"config":181},{"icon":182,"href":183,"dataGaName":184,"dataGaLocation":107},"AutomatedCodeAlt","/pt-br/solutions/delivery-automation/","automated software delivery",[186,190,194,199],{"text":187,"config":188},"CI/CD",{"href":189,"dataGaLocation":107,"dataGaName":187},"/pt-br/solutions/continuous-integration/",{"text":191,"config":192},"Desenvolvimento auxiliado por IA",{"href":141,"dataGaLocation":107,"dataGaName":193},"AI assisted development",{"text":195,"config":196},"Gerenciamento de código-fonte",{"href":197,"dataGaLocation":107,"dataGaName":198},"/pt-br/solutions/source-code-management/","Source Code Management",{"text":200,"config":201},"Entrega de software automatizada",{"href":183,"dataGaLocation":107,"dataGaName":202},"Automated software delivery",{"title":204,"description":205,"link":206,"items":211},"Segurança","Acelere a entrega de código sem comprometer a segurança",{"config":207},{"href":208,"dataGaName":209,"dataGaLocation":107,"icon":210},"/pt-br/solutions/security-compliance/","security and compliance","ShieldCheckLight",[212,217,222],{"text":213,"config":214},"Application Security Testing",{"href":215,"dataGaName":216,"dataGaLocation":107},"/solutions/application-security-testing/","Application security testing",{"text":218,"config":219},"Segurança da cadeia de suprimentos de software",{"href":220,"dataGaLocation":107,"dataGaName":221},"/pt-br/solutions/supply-chain/","Software supply chain security",{"text":223,"config":224},"Software Compliance",{"href":225,"dataGaName":223,"dataGaLocation":107},"/solutions/software-compliance/",{"title":227,"link":228,"items":233},"Medição",{"config":229},{"icon":230,"href":231,"dataGaName":232,"dataGaLocation":107},"DigitalTransformation","/pt-br/solutions/visibility-measurement/","visibility and measurement",[234,238,243],{"text":235,"config":236},"Visibilidade e medição",{"href":231,"dataGaLocation":107,"dataGaName":237},"Visibility and Measurement",{"text":239,"config":240},"Gestão de fluxo de valor",{"href":241,"dataGaLocation":107,"dataGaName":242},"/pt-br/solutions/value-stream-management/","Value Stream Management",{"text":244,"config":245},"Análises e insights",{"href":246,"dataGaLocation":107,"dataGaName":247},"/pt-br/solutions/analytics-and-insights/","Analytics and insights",{"title":249,"items":250},"GitLab para",[251,256,261],{"text":252,"config":253},"Grandes empresas",{"href":254,"dataGaLocation":107,"dataGaName":255},"/pt-br/enterprise/","enterprise",{"text":257,"config":258},"Pequenas empresas",{"href":259,"dataGaLocation":107,"dataGaName":260},"/pt-br/small-business/","small business",{"text":262,"config":263},"Setor público",{"href":264,"dataGaLocation":107,"dataGaName":265},"/pt-br/solutions/public-sector/","public sector",{"text":267,"config":268},"Preços",{"href":269,"dataGaName":270,"dataGaLocation":107,"dataNavLevelOne":270},"/pt-br/pricing/","pricing",{"text":272,"config":273,"link":275,"lists":279,"feature":363},"Recursos",{"dataNavLevelOne":274},"resources",{"text":276,"config":277},"Confira todos os recursos",{"href":278,"dataGaName":274,"dataGaLocation":107},"/pt-br/resources/",[280,312,335],{"title":281,"items":282},"Primeiros passos",[283,288,293,297,302,307],{"text":284,"config":285},"Instalação",{"href":286,"dataGaName":287,"dataGaLocation":107},"/pt-br/install/","install",{"text":289,"config":290},"Guias de início rápido",{"href":291,"dataGaName":292,"dataGaLocation":107},"/pt-br/get-started/","quick setup checklists",{"text":147,"config":294},{"href":295,"dataGaLocation":107,"dataGaName":296},"https://university.gitlab.com/","learn",{"text":298,"config":299},"Documentação do produto",{"href":300,"dataGaName":301,"dataGaLocation":107},"https://docs.gitlab.com/","product documentation",{"text":303,"config":304},"Vídeos de melhores práticas",{"href":305,"dataGaName":306,"dataGaLocation":107},"/pt-br/getting-started-videos/","best practice videos",{"text":308,"config":309},"Integrações",{"href":310,"dataGaName":311,"dataGaLocation":107},"/pt-br/integrations/","integrations",{"title":313,"items":314},"Descubra",[315,320,325,330],{"text":316,"config":317},"Histórias de sucesso de clientes",{"href":318,"dataGaName":319,"dataGaLocation":107},"/pt-br/customers/","customer success stories",{"text":321,"config":322},"Blog",{"href":323,"dataGaName":324,"dataGaLocation":107},"/blog/","blog",{"text":326,"config":327},"Trabalho remoto",{"href":328,"dataGaName":329,"dataGaLocation":107},"https://handbook.gitlab.com/handbook/company/culture/all-remote/","remote",{"text":331,"config":332},"TeamOps",{"href":333,"dataGaName":334,"dataGaLocation":107},"/pt-br/teamops/","teamops",{"title":336,"items":337},"Conecte-se",[338,343,348,353,358],{"text":339,"config":340},"Serviços do GitLab",{"href":341,"dataGaName":342,"dataGaLocation":107},"/pt-br/services/","services",{"text":344,"config":345},"Comunidade",{"href":346,"dataGaName":347,"dataGaLocation":107},"/community/","community",{"text":349,"config":350},"Fórum",{"href":351,"dataGaName":352,"dataGaLocation":107},"https://forum.gitlab.com/","forum",{"text":354,"config":355},"Eventos",{"href":356,"dataGaName":357,"dataGaLocation":107},"/events/","events",{"text":359,"config":360},"Parceiros",{"href":361,"dataGaName":362,"dataGaLocation":107},"/pt-br/partners/","partners",{"backgroundColor":364,"textColor":365,"text":366,"image":367,"link":371},"#2f2a6b","#fff","Insights para o futuro do desenvolvimento de software",{"altText":368,"config":369},"cartão promocional do The Source",{"src":370},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1758208064/dzl0dbift9xdizyelkk4.svg",{"text":372,"config":373},"Confira as novidades",{"href":374,"dataGaName":375,"dataGaLocation":107},"/pt-br/the-source/","the source",{"text":377,"config":378,"lists":380},"Empresa",{"dataNavLevelOne":379},"company",[381],{"items":382},[383,388,394,396,401,406,411,416,421,426,431],{"text":384,"config":385},"Sobre",{"href":386,"dataGaName":387,"dataGaLocation":107},"/pt-br/company/","about",{"text":389,"config":390,"footerGa":393},"Vagas",{"href":391,"dataGaName":392,"dataGaLocation":107},"/jobs/","jobs",{"dataGaName":392},{"text":354,"config":395},{"href":356,"dataGaName":357,"dataGaLocation":107},{"text":397,"config":398},"Liderança",{"href":399,"dataGaName":400,"dataGaLocation":107},"/company/team/e-group/","leadership",{"text":402,"config":403},"Equipe",{"href":404,"dataGaName":405,"dataGaLocation":107},"/company/team/","team",{"text":407,"config":408},"Manual",{"href":409,"dataGaName":410,"dataGaLocation":107},"https://handbook.gitlab.com/","handbook",{"text":412,"config":413},"Relacionamento com investidores",{"href":414,"dataGaName":415,"dataGaLocation":107},"https://ir.gitlab.com/","investor relations",{"text":417,"config":418},"Trust Center",{"href":419,"dataGaName":420,"dataGaLocation":107},"/pt-br/security/","trust center",{"text":422,"config":423},"AI Transparency Center",{"href":424,"dataGaName":425,"dataGaLocation":107},"/pt-br/ai-transparency-center/","ai transparency center",{"text":427,"config":428},"Boletim informativo",{"href":429,"dataGaName":430,"dataGaLocation":107},"/company/contact/","newsletter",{"text":432,"config":433},"Imprensa",{"href":434,"dataGaName":435,"dataGaLocation":107},"/press/","press",{"text":437,"config":438,"lists":439},"Fale com a gente",{"dataNavLevelOne":379},[440],{"items":441},[442,445,450],{"text":114,"config":443},{"href":116,"dataGaName":444,"dataGaLocation":107},"talk to sales",{"text":446,"config":447},"Ajuda",{"href":448,"dataGaName":449,"dataGaLocation":107},"/support/","get help",{"text":451,"config":452},"Portal de clientes",{"href":453,"dataGaName":454,"dataGaLocation":107},"https://customers.gitlab.com/customers/sign_in/","customer portal",{"close":456,"login":457,"suggestions":464},"Fechar",{"text":458,"link":459},"Para pesquisar repositórios e projetos, faça login em",{"text":460,"config":461},"gitlab.com",{"href":121,"dataGaName":462,"dataGaLocation":463},"search login","search",{"text":465,"default":466},"Sugestões",[467,470,475,477,482,487],{"text":136,"config":468},{"href":141,"dataGaName":469,"dataGaLocation":463},"GitLab Duo (AI)",{"text":471,"config":472},"Sugestões de Código (IA)",{"href":473,"dataGaName":474,"dataGaLocation":463},"/pt-br/solutions/code-suggestions/","Code Suggestions (AI)",{"text":187,"config":476},{"href":189,"dataGaName":187,"dataGaLocation":463},{"text":478,"config":479},"GitLab na AWS",{"href":480,"dataGaName":481,"dataGaLocation":463},"/pt-br/partners/technology-partners/aws/","GitLab on AWS",{"text":483,"config":484},"GitLab no Google Cloud",{"href":485,"dataGaName":486,"dataGaLocation":463},"/pt-br/partners/technology-partners/google-cloud-platform/","GitLab on Google Cloud",{"text":488,"config":489},"Por que escolher o GitLab?",{"href":149,"dataGaName":490,"dataGaLocation":463},"Why GitLab?",{"freeTrial":492,"mobileIcon":497,"desktopIcon":502},{"text":493,"config":494},"Iniciar avaliação gratuita",{"href":495,"dataGaName":112,"dataGaLocation":496},"https://gitlab.com/-/trials/new/","nav",{"altText":498,"config":499},"Ícone do GitLab",{"src":500,"dataGaName":501,"dataGaLocation":496},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1758203874/jypbw1jx72aexsoohd7x.svg","gitlab icon",{"altText":498,"config":503},{"src":504,"dataGaName":501,"dataGaLocation":496},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1758203875/gs4c8p8opsgvflgkswz9.svg",{"freeTrial":506,"mobileIcon":510,"desktopIcon":512},{"text":507,"config":508},"Saiba mais sobre o GitLab Duo",{"href":141,"dataGaName":509,"dataGaLocation":496},"gitlab duo",{"altText":498,"config":511},{"src":500,"dataGaName":501,"dataGaLocation":496},{"altText":498,"config":513},{"src":504,"dataGaName":501,"dataGaLocation":496},"content:shared:pt-br:main-navigation.yml","Main Navigation","shared/pt-br/main-navigation.yml","shared/pt-br/main-navigation",{"_path":519,"_dir":101,"_draft":6,"_partial":6,"_locale":7,"title":520,"button":521,"config":526,"_id":528,"_type":94,"_source":95,"_file":529,"_stem":530,"_extension":98},"/shared/pt-br/banner","A GitLab Duo Agent Platform está agora em beta público!",{"text":522,"config":523},"Experimente o Beta",{"href":524,"dataGaName":525,"dataGaLocation":107},"/pt-br/gitlab-duo/agent-platform/","duo banner",{"layout":527},"release","content:shared:pt-br:banner.yml","shared/pt-br/banner.yml","shared/pt-br/banner",{"_path":532,"_dir":101,"_draft":6,"_partial":6,"_locale":7,"data":533,"_id":733,"_type":94,"title":734,"_source":95,"_file":735,"_stem":736,"_extension":98},"/shared/pt-br/main-footer",{"text":534,"source":535,"edit":541,"contribute":546,"config":551,"items":556,"minimal":725},"Git é uma marca comercial da Software Freedom Conservancy e nosso uso do nome \"GitLab\" está sob licença",{"text":536,"config":537},"Acessar a origem da página",{"href":538,"dataGaName":539,"dataGaLocation":540},"https://gitlab.com/gitlab-com/marketing/digital-experience/about-gitlab-com/","page source","footer",{"text":542,"config":543},"Editar esta página",{"href":544,"dataGaName":545,"dataGaLocation":540},"https://gitlab.com/gitlab-com/marketing/digital-experience/about-gitlab-com/-/blob/main/content/","web ide",{"text":547,"config":548},"Contribua",{"href":549,"dataGaName":550,"dataGaLocation":540},"https://gitlab.com/gitlab-com/marketing/digital-experience/about-gitlab-com/-/blob/main/CONTRIBUTING.md/","please contribute",{"twitter":552,"facebook":553,"youtube":554,"linkedin":555},"https://twitter.com/gitlab","https://www.facebook.com/gitlab","https://www.youtube.com/channel/UCnMGQ8QHMAnVIsI3xJrihhg","https://www.linkedin.com/company/gitlab-com",[557,580,632,662,696],{"title":125,"links":558,"subMenu":563},[559],{"text":560,"config":561},"Plataforma DevSecOps",{"href":134,"dataGaName":562,"dataGaLocation":540},"devsecops platform",[564],{"title":267,"links":565},[566,570,575],{"text":567,"config":568},"Confira os planos",{"href":269,"dataGaName":569,"dataGaLocation":540},"view plans",{"text":571,"config":572},"Por que escolher o GitLab Premium?",{"href":573,"dataGaName":574,"dataGaLocation":540},"/pt-br/pricing/premium/","why premium",{"text":576,"config":577},"Por que escolher o GitLab Ultimate?",{"href":578,"dataGaName":579,"dataGaLocation":540},"/pt-br/pricing/ultimate/","why ultimate",{"title":581,"links":582},"Soluções",[583,588,591,593,598,603,607,610,613,616,618,620,622,627],{"text":584,"config":585},"Transformação digital",{"href":586,"dataGaName":587,"dataGaLocation":540},"/pt-br/topics/digital-transformation/","digital transformation",{"text":589,"config":590},"Segurança e conformidade",{"href":215,"dataGaName":216,"dataGaLocation":540},{"text":200,"config":592},{"href":183,"dataGaName":184,"dataGaLocation":540},{"text":594,"config":595},"Desenvolvimento ágil",{"href":596,"dataGaName":597,"dataGaLocation":540},"/pt-br/solutions/agile-delivery/","agile delivery",{"text":599,"config":600},"Migração para a nuvem",{"href":601,"dataGaName":602,"dataGaLocation":540},"/pt-br/topics/cloud-native/","cloud transformation",{"text":604,"config":605},"SCM",{"href":197,"dataGaName":606,"dataGaLocation":540},"source code management",{"text":187,"config":608},{"href":189,"dataGaName":609,"dataGaLocation":540},"continuous integration & delivery",{"text":239,"config":611},{"href":241,"dataGaName":612,"dataGaLocation":540},"value stream management",{"text":23,"config":614},{"href":615,"dataGaName":5,"dataGaLocation":540},"/pt-br/solutions/gitops/",{"text":252,"config":617},{"href":254,"dataGaName":255,"dataGaLocation":540},{"text":257,"config":619},{"href":259,"dataGaName":260,"dataGaLocation":540},{"text":262,"config":621},{"href":264,"dataGaName":265,"dataGaLocation":540},{"text":623,"config":624},"Educação",{"href":625,"dataGaName":626,"dataGaLocation":540},"/pt-br/solutions/education/","education",{"text":628,"config":629},"Serviços financeiros",{"href":630,"dataGaName":631,"dataGaLocation":540},"/pt-br/solutions/finance/","financial services",{"title":272,"links":633},[634,636,638,640,643,645,648,650,652,654,656,658,660],{"text":284,"config":635},{"href":286,"dataGaName":287,"dataGaLocation":540},{"text":289,"config":637},{"href":291,"dataGaName":292,"dataGaLocation":540},{"text":147,"config":639},{"href":295,"dataGaName":296,"dataGaLocation":540},{"text":298,"config":641},{"href":300,"dataGaName":642,"dataGaLocation":540},"docs",{"text":321,"config":644},{"href":323,"dataGaName":324,"dataGaLocation":540},{"text":316,"config":646},{"href":647,"dataGaName":319,"dataGaLocation":540},"/customers/",{"text":326,"config":649},{"href":328,"dataGaName":329,"dataGaLocation":540},{"text":339,"config":651},{"href":341,"dataGaName":342,"dataGaLocation":540},{"text":331,"config":653},{"href":333,"dataGaName":334,"dataGaLocation":540},{"text":344,"config":655},{"href":346,"dataGaName":347,"dataGaLocation":540},{"text":349,"config":657},{"href":351,"dataGaName":352,"dataGaLocation":540},{"text":354,"config":659},{"href":356,"dataGaName":357,"dataGaLocation":540},{"text":359,"config":661},{"href":361,"dataGaName":362,"dataGaLocation":540},{"title":377,"links":663},[664,666,668,670,672,674,676,680,685,687,689,691],{"text":384,"config":665},{"href":386,"dataGaName":379,"dataGaLocation":540},{"text":389,"config":667},{"href":391,"dataGaName":392,"dataGaLocation":540},{"text":397,"config":669},{"href":399,"dataGaName":400,"dataGaLocation":540},{"text":402,"config":671},{"href":404,"dataGaName":405,"dataGaLocation":540},{"text":407,"config":673},{"href":409,"dataGaName":410,"dataGaLocation":540},{"text":412,"config":675},{"href":414,"dataGaName":415,"dataGaLocation":540},{"text":677,"config":678},"Sustainability",{"href":679,"dataGaName":677,"dataGaLocation":540},"/sustainability/",{"text":681,"config":682},"Diversidade, inclusão e pertencimento (DIB)",{"href":683,"dataGaName":684,"dataGaLocation":540},"/diversity-inclusion-belonging/","Diversity, inclusion and belonging",{"text":417,"config":686},{"href":419,"dataGaName":420,"dataGaLocation":540},{"text":427,"config":688},{"href":429,"dataGaName":430,"dataGaLocation":540},{"text":432,"config":690},{"href":434,"dataGaName":435,"dataGaLocation":540},{"text":692,"config":693},"Declaração de Transparência da Lei da Escravidão Moderna",{"href":694,"dataGaName":695,"dataGaLocation":540},"https://handbook.gitlab.com/handbook/legal/modern-slavery-act-transparency-statement/","modern slavery transparency statement",{"title":437,"links":697},[698,701,703,705,710,715,720],{"text":699,"config":700},"Fale com um especialista",{"href":116,"dataGaName":117,"dataGaLocation":540},{"text":446,"config":702},{"href":448,"dataGaName":449,"dataGaLocation":540},{"text":451,"config":704},{"href":453,"dataGaName":454,"dataGaLocation":540},{"text":706,"config":707},"Status",{"href":708,"dataGaName":709,"dataGaLocation":540},"https://status.gitlab.com/","status",{"text":711,"config":712},"Termos de uso",{"href":713,"dataGaName":714,"dataGaLocation":540},"/terms/","terms of use",{"text":716,"config":717},"Aviso de Privacidade",{"href":718,"dataGaName":719,"dataGaLocation":540},"/pt-br/privacy/","privacy statement",{"text":721,"config":722},"Preferências de cookies",{"dataGaName":723,"dataGaLocation":540,"id":724,"isOneTrustButton":12},"cookie preferences","ot-sdk-btn",{"items":726},[727,729,731],{"text":711,"config":728},{"href":713,"dataGaName":714,"dataGaLocation":540},{"text":716,"config":730},{"href":718,"dataGaName":719,"dataGaLocation":540},{"text":721,"config":732},{"dataGaName":723,"dataGaLocation":540,"id":724,"isOneTrustButton":12},"content:shared:pt-br:main-footer.yml","Main Footer","shared/pt-br/main-footer.yml","shared/pt-br/main-footer",{"_path":738,"_dir":101,"_draft":6,"_partial":6,"_locale":7,"header":739,"eyebrow":740,"blurb":741,"button":742,"secondaryButton":746,"_id":748,"_type":94,"title":749,"_source":95,"_file":750,"_stem":751,"_extension":98},"/shared/pt-br/next-steps","Comece a entregar software melhor, mais rapidamente","Mais de 50% das empresas Fortune 100 confiam no GitLab","Descubra o que sua equipe pode fazer com a\n\n\nplataforma DevSecOps inteligente.\n",{"text":109,"config":743},{"href":744,"dataGaName":112,"dataGaLocation":745},"https://gitlab.com/-/trial_registrations/new?glm_content=default-saas-trial&glm_source=about.gitlab.com/","feature",{"text":114,"config":747},{"href":116,"dataGaName":117,"dataGaLocation":745},"content:shared:pt-br:next-steps.yml","Next Steps","shared/pt-br/next-steps.yml","shared/pt-br/next-steps",1758326312615]