@@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 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.
🔴 - To support my channel, I’d like to offer Mentorship/On-the-Job Support/Consulting - me@antonputra.com
Man, I watched first 2 mins and had to say thanks. This is what I need
Thanks, Toàn!
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. 👌🏼😃
You're very welcome!
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!!
You're welcome!
@@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.
@@pssharma9600 what’s the issue?
@@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.
Nice tutorial Anton! thanks for making it.
My pleasure!
👉 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
Thank you! You are a legend!
Thank you Kiran! :)
very informative stuff. thank you!
Very welcome!
Excelent video.
Thank you!
Thanks Anton.
Thank you David!!
awesome content i loved it ...can you help me automate the approval process like (ServiceNow , Jira etc...)with cd pipeline with Jenkins
cool thanks!
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
thanks for feedback
Great video thank you
thanks
can you please do video with Azure ? Please help
At some point in the future
Been trying to follow your tutorial, error error and error.
try github actions