Skip to content

Commit a8f9de2

Browse files
committed
Fix test by setting correct default value
1 parent 72ab732 commit a8f9de2

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

docs/data-sources/parameter.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ data "coder_parameter" "example" {
2020
description = "Specify a region to place your workspace."
2121
mutable = false
2222
type = "string"
23-
default = "asia-central1-a"
23+
default = "us-central1-a"
2424
option {
2525
value = "us-central1-a"
2626
name = "US Central"

examples/data-sources/coder_parameter/data-source.tf

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ data "coder_parameter" "example" {
55
description = "Specify a region to place your workspace."
66
mutable = false
77
type = "string"
8-
default = "asia-central1-a"
8+
default = "us-central1-a"
99
option {
1010
value = "us-central1-a"
1111
name = "US Central"

0 commit comments

Comments
 (0)