From 979e35882af5bec976006f48a87af0c9569c1206 Mon Sep 17 00:00:00 2001 From: Muhammad Atif Ali Date: Thu, 18 Jul 2024 22:01:20 +0300 Subject: [PATCH] docs: replace coder_git_auth with coder_external_auth coder_git_auth is deprecated and is planned to be removed in provider version 2.0. --- 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 936c04681a446..21cf76717ac1a 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" }