diff --git a/docs/data-sources/parameter.md b/docs/data-sources/parameter.md
index f40a9c83..4da9dac2 100644
--- a/docs/data-sources/parameter.md
+++ b/docs/data-sources/parameter.md
@@ -20,16 +20,16 @@ data "coder_parameter" "example" {
   description = "Specify a region to place your workspace."
   mutable     = false
   type        = "string"
-  default     = "asia-central1-a"
+  default     = "us-central1-a"
   option {
     value = "us-central1-a"
     name  = "US Central"
-    icon  = "/icon/usa.svg"
+    icon  = "/icons/1f1fa-1f1f8.png"
   }
   option {
-    value = "asia-central1-a"
-    name  = "Asia"
-    icon  = "/icon/asia.svg"
+    value = "asia-southeast1-a"
+    name  = "Singapore"
+    icon  = "/icons/1f1f8-1f1ec.png"
   }
 }
 
diff --git a/examples/data-sources/coder_parameter/data-source.tf b/examples/data-sources/coder_parameter/data-source.tf
index 4efc3320..ac0de7cb 100644
--- a/examples/data-sources/coder_parameter/data-source.tf
+++ b/examples/data-sources/coder_parameter/data-source.tf
@@ -5,16 +5,16 @@ data "coder_parameter" "example" {
   description = "Specify a region to place your workspace."
   mutable     = false
   type        = "string"
-  default     = "asia-central1-a"
+  default     = "us-central1-a"
   option {
     value = "us-central1-a"
     name  = "US Central"
-    icon  = "/icon/usa.svg"
+    icon  = "/icons/1f1fa-1f1f8.png"
   }
   option {
-    value = "asia-central1-a"
-    name  = "Asia"
-    icon  = "/icon/asia.svg"
+    value = "asia-southeast1-a"
+    name  = "Singapore"
+    icon  = "/icons/1f1f8-1f1ec.png"
   }
 }