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.
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 |
- Initialize: Initialize your Terraform working directory.
terraform init
- plan: Preview the changes to be made.
terraform plan
- apply: Apply the desired changes.
terraform apply
- destroy: (Optional) Destroy the resources.
terraform destroy
For detailed documentation and advanced use-cases, please refer to the official Terraform documentation.