You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
modules/gcp-region/README.md

24 lines
639 B
Markdown

---
display_name: GCP Regions
description: Add Google Cloud Platform regions to your Coder template.
icon: ../.icons/gcp.svg
maintainer_github: coder
verified: true
tags: [gcp, regions, zones]
---
# Google Cloud Platform Regions
This module adds Google Cloud Platform regions to your Coder template.
## How to use this module
To use this module, add the following snippet to your template manifest:
```hcl
module "gcp_regions" {
source = "https://registry.coder.com/modules/gcp-regions"
gcp_regions = ["us-west1", "us-west2", "us-west3"] # Add your desired regions here, use ["all"] for all regions
gpu_only = true
}
```