From 88d2dbd994cbb9eabbd3cd7d6a3e51fcb29d9fea Mon Sep 17 00:00:00 2001 From: Muhammad Atif Ali Date: Sat, 20 Jul 2024 07:43:09 +0300 Subject: [PATCH] docs: replace `coder_git_auth` with `coder_external_auth` (#13936) --- docs/templates/open-in-coder.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/templates/open-in-coder.md b/docs/templates/open-in-coder.md index 936c04681a..21cf76717a 100644 --- a/docs/templates/open-in-coder.md +++ b/docs/templates/open-in-coder.md @@ -26,8 +26,8 @@ The id in the template's `coder_external_auth` data source must match the If you want the template to clone a specific git repo: ```hcl -# Require git authentication to use this template -data "coder_git_auth" "github" { +# Require external authentication to use this template +data "coder_external_auth" "github" { id = "primary-github" } @@ -56,8 +56,8 @@ If you want the template to support any repository via [parameters](./parameters.md) ```hcl -# Require git authentication to use this template -data "coder_git_auth" "github" { +# Require external authentication to use this template +data "coder_external_auth" "github" { id = "primary-github" }