Skip to content

Commit 5e4c596

Browse files
authored
fix(docs): fix parameter options icons (#339)
1 parent ec48bcb commit 5e4c596

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

Diff for: docs/data-sources/parameter.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -20,16 +20,16 @@ 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"
27-
icon = "/icon/usa.svg"
27+
icon = "/icons/1f1fa-1f1f8.png"
2828
}
2929
option {
30-
value = "asia-central1-a"
31-
name = "Asia"
32-
icon = "/icon/asia.svg"
30+
value = "asia-southeast1-a"
31+
name = "Singapore"
32+
icon = "/icons/1f1f8-1f1ec.png"
3333
}
3434
}
3535

Diff for: examples/data-sources/coder_parameter/data-source.tf

+5-5
Original file line numberDiff line numberDiff line change
@@ -5,16 +5,16 @@ 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"
12-
icon = "/icon/usa.svg"
12+
icon = "/icons/1f1fa-1f1f8.png"
1313
}
1414
option {
15-
value = "asia-central1-a"
16-
name = "Asia"
17-
icon = "/icon/asia.svg"
15+
value = "asia-southeast1-a"
16+
name = "Singapore"
17+
icon = "/icons/1f1f8-1f1ec.png"
1818
}
1919
}
2020

0 commit comments

Comments
 (0)