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

We spend hours scrolling social media and waste money on things we forget, but won’t spend 30 minutes a day earning certifications that can change our lives.
Master in DevOps, SRE, DevSecOps & MLOps by DevOpsSchool!

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"
}

Code language: PHP (php)

Write Resources-github.tf

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

  visibility = "public"
}
Code language: JavaScript (javascript)

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)

Certification Courses

DevOpsSchool has introduced a series of professional certification courses designed to enhance your skills and expertise in cutting-edge technologies and methodologies. Whether you are aiming to excel in development, security, or operations, these certifications provide a comprehensive learning experience. Explore the following programs:

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.