How to Run Terraform from CircleCI? (GitOps | Infrastructure as Code | Terraform CircleCI ORB | AWS)

Поделиться
HTML-код
  • Опубликовано: 8 ноя 2024

Комментарии • 31

  • @AntonPutra
    @AntonPutra  Год назад

    🔴 - To support my channel, I’d like to offer Mentorship/On-the-Job Support/Consulting - me@antonputra.com

  • @toanhuynh8132
    @toanhuynh8132 11 месяцев назад +1

    Man, I watched first 2 mins and had to say thanks. This is what I need

  • @saishsankhe
    @saishsankhe 3 года назад +1

    Thank you so much for this video, Anton. Everything was beautifully explained and it was very easy to understand for an absolute beginner like me. 👌🏼😃

  • @pssharma9600
    @pssharma9600 2 года назад +1

    Hi Anton. Thank you for the video. I couldn't figure how to add my access and secret access key but this helped me. Cheers!!

    • @AntonPutra
      @AntonPutra  2 года назад

      You're welcome!

    • @pssharma9600
      @pssharma9600 2 года назад

      @@AntonPutra A quick question i have, do you know how to destroy the infrastructure using the pipeline? Seems like it's not as straightforward as the apply step. Thank you.

    • @AntonPutra
      @AntonPutra  2 года назад

      @@pssharma9600 what’s the issue?

    • @pssharma9600
      @pssharma9600 2 года назад

      @@AntonPutra I keep runnimg into Error:
      Module not installed

      │ on main.tf line 1:
      │ 1: module "vpc" {

      │ This module is not yet installed. Run "terraform init" to install all modules required by this configuration.

  • @AngelRivera13
    @AngelRivera13 2 года назад +1

    Nice tutorial Anton! thanks for making it.

  • @AntonPutra
    @AntonPutra  Год назад

    👉 How to Manage Secrets in Terraform - ruclips.net/video/3N0tGKwvBdA/видео.html
    👉 Terraform Tips & Tricks - ruclips.net/video/7S94oUTy2z4/видео.html
    👉 ArgoCD Tutorial - ruclips.net/video/zGndgdGa1Tc/видео.html

  • @kiraniyer2829
    @kiraniyer2829 3 года назад +1

    Thank you! You are a legend!

  • @ilyakrikun2388
    @ilyakrikun2388 3 года назад +1

    very informative stuff. thank you!

  • @Vidaric1
    @Vidaric1 3 года назад +1

    Excelent video.

  • @DavidBwire
    @DavidBwire 2 года назад

    Thanks Anton.

  • @kumarcc1
    @kumarcc1 9 месяцев назад

    awesome content i loved it ...can you help me automate the approval process like (ServiceNow , Jira etc...)with cd pipeline with Jenkins

  • @pssharma9600
    @pssharma9600 2 года назад

    Just an alternative pipeline which can apply and destroy your terraform code. P.S. Your channel is awesome!! lots to learn.
    version: '2.1'
    jobs:
    init:
    docker:
    - image: hashicorp/terraform
    steps:
    - checkout
    - run: terraform init
    - run: terraform plan
    - run: terraform apply -auto-approve
    - persist_to_workspace:
    root: .
    paths:
    - .
    hold:
    docker:
    - image: hashicorp/terraform
    steps:
    - run: echo "Placeholder"
    destroy:
    docker:
    - image: hashicorp/terraform
    steps:
    - attach_workspace:
    at: .
    - run: terraform destroy -auto-approve
    workflows:
    test:
    jobs:
    - init:
    context: terraform
    - hold:
    type: approval
    context: terraform
    requires:
    - init
    - destroy:
    context: terraform
    requires:
    - hold

  • @kienphan6436
    @kienphan6436 2 года назад

    Great video thank you

  • @abcdanybodycando--coding
    @abcdanybodycando--coding 2 года назад

    can you please do video with Azure ? Please help

    • @AntonPutra
      @AntonPutra  2 года назад

      At some point in the future

  • @minhaj6211
    @minhaj6211 2 года назад +1

    Been trying to follow your tutorial, error error and error.