Skip to content

Commit 7e2a01c

Browse files
committed
make better
1 parent aea7b50 commit 7e2a01c

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

docs/data-sources/git_auth.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@
33
page_title: "coder_git_auth Data Source - terraform-provider-coder"
44
subcategory: ""
55
description: |-
6-
Deprecated: use the coder_external_auth data source instead. Use this data source to require users to authenticate with a Git provider prior to workspace creation. This can be used to perform an authenticated git clone in startup scripts.
6+
(Deprecated: use the coder_external_auth data source instead). Use this data source to require users to authenticate with a Git provider prior to workspace creation. This can be used to perform an authenticated git clone in startup scripts.
77
---
88

99
# coder_git_auth (Data Source)
1010

11-
**Deprecated**: use the `coder_external_auth` data source instead. Use this data source to require users to authenticate with a Git provider prior to workspace creation. This can be used to perform an authenticated `git clone` in startup scripts.
11+
(**Deprecated**: use the `coder_external_auth` data source instead). Use this data source to require users to authenticate with a Git provider prior to workspace creation. This can be used to perform an authenticated `git clone` in startup scripts.
1212

1313
## Example Usage
1414

provider/gitauth.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ func gitAuthDataSource() *schema.Resource {
1616
SchemaVersion: 1,
1717

1818
DeprecationMessage: "Use the `coder_external_auth` data source instead.",
19-
Description: "**Deprecated**: use the `coder_external_auth` data source instead. Use this data source to require users to authenticate with a Git provider prior to workspace creation. This can be used to perform an authenticated `git clone` in startup scripts.",
19+
Description: "(**Deprecated**: use the `coder_external_auth` data source instead). Use this data source to require users to authenticate with a Git provider prior to workspace creation. This can be used to perform an authenticated `git clone` in startup scripts.",
2020
ReadContext: func(ctx context.Context, rd *schema.ResourceData, i interface{}) diag.Diagnostics {
2121
rawID, ok := rd.GetOk("id")
2222
if !ok {

0 commit comments

Comments
 (0)