docs: replace coder_git_auth with coder_external_auth (#13936)

This commit is contained in:
Muhammad Atif Ali
2024-07-20 07:43:09 +03:00
committed by GitHub
parent 03c5d42233
commit 88d2dbd994
+4 -4
View File
@@ -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"
}