Just what I needed to get a basic pipeline for terraform up and running. Thanks.
@cloudarchitectrahul Жыл бұрын
Glad I could help!
@andrewfielden284 Жыл бұрын
@@cloudarchitectrahul If I want to add a plan phase into this pipeline, so I can review and approve what Terraform will do, before it actually deploys, how would I do that, in one pipeline?
@cloudarchitectrahul Жыл бұрын
I have another video on channel where i have added the approval stage.
@naveenkumarr944311 ай бұрын
Great Job Rahul.. Helpful content actually
@lofikingfor2 ай бұрын
CI/CD Pipeline with Infrastructure as Code (IaC) Challenge: Demonstrate a robust CI/CD pipeline using IaC principles while adhering to AWS Free Tier limitations. Solution: Use AWS CodeCommit for private code repositories. Employ AWS CodeBuild for building and testing the application. Leverage AWS CodePipeline to orchestrate the CI/CD process. Utilize AWS CloudFormation or AWS SAM for IaC. Integrate with AWS CodeDeploy for deployment to EC2 instances (be mindful of instance costs). Optimize build and test times to minimize costs please make video on this
@anmolhanchate87675 ай бұрын
hey rahul I wana try this out can I get the github link for terraform file and buildspec and appspec commands
@Babithkumar-z1s4 ай бұрын
How to the provider.tf will call my variable.tf because we added provider.tf only in code commit
@ZahidKhan-hi1gb Жыл бұрын
Can you please create this whole process using terraform script without using AWS console can you please make video on this
@cloudarchitectrahul Жыл бұрын
Sure.. I will create. Thanks
@cloudarchitectrahul Жыл бұрын
Hi Please check kzbin.info/www/bejne/hn2cg3yVrdyKhrs
@HustleWithRahul987 ай бұрын
like button for all Rahul's
@Amit-of2cq9 ай бұрын
Why is the script downloads and installs terraform everytime it runs? It is very inefficient when running frequent builds.
@komalthecoolk8 ай бұрын
Because it's serverless, it needs to have that. I'm sure there's a way to workaround that.
@SaurabhPandey-ww2uqАй бұрын
This is how I solved this issue - I created a Docker image to install the terraform and pushed this image to my ECR repo. I select this custom image while setting up the container environment for my build project. So my environment is always ready with Terraform installed on it and in the build command I just pass the terraform init then terraform plan/apply/destroy etc. I am new to CI/CD, Docker and containers so feel free to correct me if I am wrong in my approach.