8000 GitHub - vitaly-zverev/Terraform-Blog
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

vitaly-zverev/Terraform-Blog

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Automated Infrastructure (Yandex Cloud) Setup Using Terraform and Jenkins (Launch DataProc)

Inspired by:

  1. Applying Graph Theory to Infrastructure as Code
  2. Automated Infrastructure (AWS) Setup Using Terraform and Jenkins (Launch EC2 and VPC)
  3. Terraform and Jenkins: IaC from Your Build
  4. Blast Radius
terraform plan
terraform apply
terraform destroy

instead of:

yc dataproc cluster create dataproc \
   --profile dataproc \
   --bucket=dataproc-bucket \
   --zone=ru-central1-a \
   --service-account-name=dataproc-srv-acc \
   --version=2.0 \
   --services=hdfs,yarn,spark \
   --ssh-public-keys-file=.ssh/id_ed25519.pub \
   --subcluster name=ctrl-subcluster,role=masternode,subnet-name=main-control-plan,assign-public-ip=false \
   --subcluster name=data-subcluster,role=datanode,subnet-name=main-control-plan,hosts-count=3,assign-public-ip=false \
   --deletion-protection=false \
   --ui-proxy=true 

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • HCL 100.0%
0