mereg main

This commit is contained in:
Muhammad Atif Ali
2023-09-20 22:59:27 +03:00
parent 085be2dc28
commit d5e2d2361c
4 changed files with 14 additions and 30 deletions

View File

@@ -1,16 +1,23 @@
---
display_name: Google Cloud Region
description: A parameter with human region names and icons
display_name: GCP Regions
description: Add Google Cloud Platform regions to your Coder template.
icon: ../.icons/gcp.svg
maintainer_github: coder
verified: true
tags: [helper, parameter, azure]
tags: [gcp, regions, zones]
---
# Google Cloud Platform Regions
# Google Cloud Region
This module adds Google Cloud Platform regions to your Coder template.
A parameter with all Google Cloud regions. This allows developers to select the region closest to them.
## How to use this module
## Examples
To use this module, add the following snippet to your template manifest:
TODO
```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
}
```

View File

@@ -1,23 +0,0 @@
---
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
}
```