|
|
|
@ -29,5 +29,17 @@ This module adds Google Cloud Platform regions to your Coder template.
|
|
|
|
|
module "regions" {
|
|
|
|
|
source = "https://registry.coder.com/modules/gcp-regions"
|
|
|
|
|
regions = ["europe-west"]
|
|
|
|
|
single_zone_per_region = false
|
|
|
|
|
}
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
3. Add a single zone from each region in US and Europe that laos has GPUs
|
|
|
|
|
|
|
|
|
|
```hcl
|
|
|
|
|
module "regions" {
|
|
|
|
|
source = "https://registry.coder.com/modules/gcp-regions"
|
|
|
|
|
regions = ["us"]
|
|
|
|
|
gpu_only = true
|
|
|
|
|
single_zone_per_region = true
|
|
|
|
|
}
|
|
|
|
|
```
|
|
|
|
|