We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 41c1e94 commit f8e77bcCopy full SHA for f8e77bc
examples/templates/gcp-linux/main.tf
@@ -15,10 +15,15 @@ variable "project_id" {
15
description = "Which Google Compute Project should your workspace live in?"
16
}
17
18
+# See https://registry.coder.com/modules/gcp-region
19
module "gcp_region" {
20
source = "registry.coder.com/modules/gcp-region/coder"
- version = "1.0.12"
21
+
22
+ # This ensures that the latest version of the module gets downloaded, you can also pin the module version to prevent breaking changes in production.
23
+ version = ">= 1.0.0"
24
25
regions = ["us", "europe"]
26
+ default = "us-central1-a"
27
28
29
provider "google" {
0 commit comments