Upgrade & Secure Your Future with DevOps, SRE, DevSecOps, MLOps!

We spend hours on Instagram and YouTube and waste money on coffee and fast food, but won’t spend 30 minutes a day learning skills to boost our careers.
Master in DevOps, SRE, DevSecOps & MLOps!

Learn from Guru Rajesh Kumar and double your salary in just one year.


Get Started Now!

Example Terraform code to Create Github Repository

Generate GITHUB ACCESS Token

Write Providers.tf

terraform {
  required_providers {
    github = {
      source  = "integrations/github"
      version = "~> 4.0"
    }
  }
}

# Configure the GitHub Provider

provider "github" {
  token = "XXXXXXXXXXX"
  owner = "devopsschool-demo-temporary"
}

Write Resources-github.tf

resource "github_repository" "github-repo-1" {
  name        = "terraform-demo-1"
  description = "My awesome codebase"

  visibility = "public"
}

Run Following Commands

$ terraform init
	- Download Providers & Modules
$ terraform validate
	- Validate .tf profile
$ terraform plan
	- DRY RUN
$ terraform apply
	- Create a resources &&& store a resonse IN STATE file(json)
$ terraform destroy
	- Destroy a resources using STATE file(json)
DevOps Certification, SRE Certification, and DevSecOps Certification by DevOpsSchool

Explore our DevOps Certification, SRE Certification, and DevSecOps Certification programs at DevOpsSchool. Gain the expertise needed to excel in your career with hands-on training and globally recognized certifications.