GithubHelp home page GithubHelp logo

academy-terraform-gcp-workshop's Introduction

Terraform on GCP

Welcome to the Terraform on GCP workshop. This repository provides example files for the tasks in this workshop.

Prerequisites

  • Get access to a Google Cloud project
  • Check that the Compute Engine API is enabled

Your first Terraform configuration

Start by creating a main.tf with the following resources defined:

Network

resource "google_compute_network" "vpc_network" {
  name                    = "workshop-network"
  auto_create_subnetworks = false
}

Subnetwork

resource "google_compute_subnetwork" "default" {
  name          = "workshop-subnet"
  ip_cidr_range = "10.0.1.0/24"
  region        = "us-west1"
  network       = google_compute_network.vpc_network.id
}

Google Compute Engine instance (virtual machine)

resource "google_compute_instance" "default" {
  name         = "vm"
  machine_type = "f1-micro"
  zone         = "us-west1-a"
  tags         = ["ssh"]

  boot_disk {
    initialize_params {
      image = "debian-cloud/debian-11"
    }
  }

  # Install nginx
  metadata_startup_script = "sudo apt-get update; sudo apt-get install -yq nginx"

  network_interface {
    subnetwork = google_compute_subnetwork.default.id

    access_config {
      # Include this section to get an external IP address for this VM
    }
  }

}

Firewall rule to open port 80 to the world

resource "google_compute_firewall" "vm" {
  name    = "vm-firewall"
  network = google_compute_network.vpc_network.id

  allow {
    protocol = "tcp"
    ports    = ["80"]
  }
  source_ranges = ["0.0.0.0/0"]
}

Command cheatsheet

  • Initialize Terraform: terraform init
  • Create a Terraform plan: terraform plan -out plan.out
  • Apply the plan: terraform apply plan.out
  • Validate Terraform configuration: terraform validate
  • Format Terraform configuration: terraform fmt -recursive or terraform fmt -recursive -check for a pipeline

academy-terraform-gcp-workshop's People

Contributors

mjuuso avatar

Watchers

 avatar  avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.