cloud-foundation-toolkit
The Cloud Foundation toolkit provides GCP best practices as code.
Top Related Projects
Terraform enables you to safely and predictably create, change, and improve infrastructure. It is a source-available tool that codifies APIs into declarative configuration files that can be shared amongst team members, treated as code, edited, reviewed, and versioned.
Pulumi - Infrastructure as Code in any programming language 🚀
Azure Quickstart Templates
Terragrunt is a flexible orchestration tool that allows Infrastructure as Code written in OpenTofu/Terraform to scale.
Quick Overview
The Google Cloud Foundation Toolkit (cloud-foundation-toolkit) is a collection of tools and templates designed to help users manage and deploy resources on the Google Cloud Platform (GCP). It provides a set of reusable Terraform modules, Ansible roles, and other utilities to streamline the process of building and maintaining GCP infrastructure.
Pros
- Reusable Modules: The toolkit offers a wide range of pre-built Terraform modules that can be easily integrated into your infrastructure-as-code (IaC) workflows, saving time and effort.
- Consistent Deployment: The toolkit promotes a consistent and standardized approach to deploying GCP resources, reducing the risk of configuration drift and improving maintainability.
- Community Support: The project has a active community of contributors, ensuring ongoing development, bug fixes, and feature enhancements.
- Comprehensive Documentation: The project's documentation is well-written and covers a variety of use cases, making it easier for users to get started and troubleshoot issues.
Cons
- Dependency on Terraform: The toolkit is primarily focused on Terraform, which may not be the preferred IaC tool for all users.
- Limited Support for Other GCP Tools: While the toolkit provides Ansible roles, it does not currently offer extensive support for other GCP management tools, such as Google Cloud Deployment Manager.
- Steep Learning Curve: Effectively using the toolkit may require a good understanding of Terraform and GCP concepts, which can be a barrier for some users.
- Potential Vendor Lock-in: By relying heavily on GCP-specific resources, the toolkit may make it more difficult to migrate to other cloud providers in the future.
Code Examples
The cloud-foundation-toolkit provides a variety of Terraform modules that can be used to deploy GCP resources. Here are a few examples:
Creating a VPC Network
module "vpc" {
source = "GoogleCloudPlatform/cloud-foundation-toolkit/modules/net-vpc"
version = "~> 0.3.0"
project_id = "my-project"
name = "my-vpc"
routing_mode = "GLOBAL"
subnets = [
{
name = "subnet-01"
ip_cidr_range = "10.0.0.0/24"
region = "us-central1"
},
{
name = "subnet-02"
ip_cidr_range = "10.0.1.0/24"
region = "us-west1"
}
]
}
Deploying a Managed Instance Group
module "mig" {
source = "GoogleCloudPlatform/cloud-foundation-toolkit/modules/compute-mig"
version = "~> 0.3.0"
project_id = "my-project"
name = "my-mig"
region = "us-central1"
target_size = 3
instance_template = {
machine_type = "n1-standard-1"
disk {
source_image = "debian-cloud/debian-10"
auto_delete = true
boot = true
}
}
}
Creating a Cloud Storage Bucket
module "bucket" {
source = "GoogleCloudPlatform/cloud-foundation-toolkit/modules/gcs-bucket"
version = "~> 0.3.0"
project_id = "my-project"
name = "my-bucket"
location = "us-central1"
storage_class = "STANDARD"
versioning = {
enabled = true
}
}
Getting Started
To get started with the cloud-foundation-toolkit, follow these steps:
-
Install Terraform on your local machine or in your CI/CD environment.
-
Clone the cloud-foundation-toolkit repository:
git clone https://github.com/GoogleCloudPlatform/cloud-foundation-toolkit.git
-
Navigate to the desired module directory (e.g.,
modules/net-vpc
) and review
Competitor Comparisons
Terraform enables you to safely and predictably create, change, and improve infrastructure. It is a source-available tool that codifies APIs into declarative configuration files that can be shared amongst team members, treated as code, edited, reviewed, and versioned.
Pros of Terraform
- Broader multi-cloud support, not limited to Google Cloud Platform
- More extensive ecosystem with a larger community and wider range of providers
- Mature and battle-tested infrastructure-as-code solution with a longer history
Cons of Terraform
- Steeper learning curve for beginners compared to Cloud Foundation Toolkit
- Less integrated with Google Cloud-specific best practices and patterns
- May require more manual configuration for GCP-specific resources
Code Comparison
Cloud Foundation Toolkit (GCP-specific):
module "vpc" {
source = "terraform-google-modules/network/google"
version = "~> 4.0"
project_id = var.project_id
network_name = "example-vpc"
subnets = [
{
subnet_name = "subnet-01"
subnet_ip = "10.10.10.0/24"
subnet_region = "us-central1"
}
]
}
Terraform (generic):
resource "google_compute_network" "vpc_network" {
name = "example-vpc"
auto_create_subnetworks = false
}
resource "google_compute_subnetwork" "subnet" {
name = "subnet-01"
ip_cidr_range = "10.10.10.0/24"
region = "us-central1"
network = google_compute_network.vpc_network.id
}
Pulumi - Infrastructure as Code in any programming language 🚀
Pros of Pulumi
- Multi-language support (TypeScript, Python, Go, etc.) for infrastructure as code
- Unified platform for managing cloud resources across multiple providers
- Strong typing and IDE support for better developer experience
Cons of Pulumi
- Steeper learning curve for those unfamiliar with programming languages
- Smaller community and ecosystem compared to more established tools
- Potential vendor lock-in with Pulumi's state management
Code Comparison
cloud-foundation-toolkit:
resources:
- name: my-bucket
type: storage.v1.bucket
properties:
location: US
storageClass: STANDARD
Pulumi:
import * as gcp from "@pulumi/gcp";
const bucket = new gcp.storage.Bucket("my-bucket", {
location: "US",
storageClass: "STANDARD",
});
Key Differences
- cloud-foundation-toolkit focuses on Google Cloud Platform, while Pulumi supports multiple cloud providers
- cloud-foundation-toolkit uses YAML or JSON for configuration, Pulumi uses programming languages
- Pulumi offers more flexibility and programmability, while cloud-foundation-toolkit provides a simpler, declarative approach
- cloud-foundation-toolkit is specifically designed for GCP best practices, while Pulumi is more general-purpose
Azure Quickstart Templates
Pros of azure-quickstart-templates
- Larger collection of templates, covering a wide range of Azure services and scenarios
- More community contributions and active development
- Includes templates for complex, multi-resource deployments
Cons of azure-quickstart-templates
- Less standardized structure and naming conventions across templates
- May require more customization for enterprise-grade deployments
- Limited built-in validation and testing tools compared to cloud-foundation-toolkit
Code Comparison
azure-quickstart-templates:
{
"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#",
"contentVersion": "1.0.0.0",
"parameters": {
"storageAccountName": {
"type": "string",
"metadata": {
"description": "Specify the storage account name."
}
}
},
"resources": [
{
"type": "Microsoft.Storage/storageAccounts",
"apiVersion": "2021-04-01",
"name": "[parameters('storageAccountName')]",
"location": "[resourceGroup().location]",
"sku": {
"name": "Standard_LRS"
},
"kind": "StorageV2"
}
]
}
cloud-foundation-toolkit:
resources:
- name: ${storage_account_name}
type: gcp-types/storage-v1:buckets
properties:
project: ${project_id}
name: ${storage_account_name}
location: ${region}
storageClass: STANDARD
The azure-quickstart-templates use JSON for ARM templates, while cloud-foundation-toolkit uses YAML for Deployment Manager templates. Azure templates tend to be more verbose, while GCP templates are more concise.
Terragrunt is a flexible orchestration tool that allows Infrastructure as Code written in OpenTofu/Terraform to scale.
Pros of Terragrunt
- Provides a thin wrapper for Terraform, enhancing its functionality without altering core behavior
- Supports DRY (Don't Repeat Yourself) configurations through inheritance and composition
- Offers built-in support for remote state management and locking
Cons of Terragrunt
- Requires additional learning curve on top of Terraform
- May introduce complexity for simpler projects or teams new to infrastructure-as-code
- Less integrated with specific cloud providers compared to Cloud Foundation Toolkit
Code Comparison
Terragrunt configuration:
terraform {
source = "git::git@github.com:foo/modules.git//app?ref=v0.0.1"
}
inputs = {
app_name = "my-app"
env = "prod"
}
Cloud Foundation Toolkit (using Terraform):
module "gcp_project" {
source = "terraform-google-modules/project-factory/google"
version = "~> 10.1"
name = "my-project"
project_id = "my-project-id"
org_id = "1234567890"
folder_id = "1234567890"
}
Convert
designs to code with AI
Introducing Visual Copilot: A new AI model to turn Figma designs to high quality code using your components.
Try Visual CopilotREADME
Cloud Foundation Toolkit Project
Overview
The Cloud Foundation toolkit (henceforth, CFT) includes the following parts:
- A comprehensive set of production-ready Terraform blueprints that follow Google's best practices. See https://cloud.google.com/docs/terraform/blueprints/terraform-blueprints for a complete list.
- A command-line interface (henceforth, CLI) that provides developer tooling for creating and managing Terraform blueprints.
- For the latest Config Connector blueprints, refer to https://github.com/GoogleCloudPlatform/blueprints. Older DM and Config Connector templates can be found in previous releases.
You can see a comparison between CFT and Fabric here.
License
Apache 2.0 - See LICENSE for more information.
Top Related Projects
Terraform enables you to safely and predictably create, change, and improve infrastructure. It is a source-available tool that codifies APIs into declarative configuration files that can be shared amongst team members, treated as code, edited, reviewed, and versioned.
Pulumi - Infrastructure as Code in any programming language 🚀
Azure Quickstart Templates
Terragrunt is a flexible orchestration tool that allows Infrastructure as Code written in OpenTofu/Terraform to scale.
Convert
designs to code with AI
Introducing Visual Copilot: A new AI model to turn Figma designs to high quality code using your components.
Try Visual Copilot