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.
24 lines
633 B
Markdown
24 lines
633 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, helper]
|
|
---
|
|
# Google Cloud Platform Regions
|
|
|
|
This module adds Google Cloud Platform regions to your Coder template.
|
|
|
|
## Examples
|
|
|
|
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
|
|
}
|
|
```
|