Skip to content

Commit 10165f1

Browse files
committed
replace hard-coded organization_id
1 parent fbb1271 commit 10165f1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

dogfood/main.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ resource "coderd_template" "dogfood" {
3838
display_name = "Write Coder on Coder"
3939
description = "The template to use when developing Coder on Coder!"
4040
icon = "/emojis/1f3c5.png"
41-
organization_id = "703f72a1-76f6-4f89-9de6-8a3989693fe5"
41+
organization_id = data.coderd_organization.default.id
4242
versions = [
4343
{
4444
name = var.CODER_TEMPLATE_VERSION
@@ -80,7 +80,7 @@ resource "coderd_template" "envbuilder_dogfood" {
8080
display_name = "Write Coder on Coder using Envbuilder"
8181
description = "Write Coder on Coder using a workspace built by Envbuilder."
8282
icon = "/emojis/1f3d7.png" # 🏗️
83-
organization_id = "703f72a1-76f6-4f89-9de6-8a3989693fe5"
83+
organization_id = data.coderd_organization.default.id
8484
versions = [
8585
{
8686
name = var.CODER_TEMPLATE_VERSION

0 commit comments

Comments
 (0)