/gcp-terraform

For practicing gcp typical solutions

Primary LanguageHTMLOtherNOASSERTION

GCP Infrastructure Setup with Terraform

This repository contains various solutions for setting up infrastructure on Google Cloud Platform (GCP) using Terraform. Each solution is encapsulated in its own directory under the solutions folder, providing a modular and organized structure.

Solutions

Solution Name Description Link
Basic Web Site (Single VM) A basic setup for a web site hosted on a single VM instance in GCP. Go to Solution

Basic Flow of Terraform

  1. Initialize: Initialize your Terraform working directory.
    terraform init
  2. plan: Preview the changes to be made.
    terraform plan
  3. apply: Apply the desired changes.
    terraform apply
  4. destroy: (Optional) Destroy the resources.
    terraform destroy
    

For detailed documentation and advanced use-cases, please refer to the official Terraform documentation.