File tree 2 files changed +4
-4
lines changed
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -37,6 +37,6 @@ resource "coder_agent" "main" {
37
37
38
38
### Read-Only
39
39
40
- - ` arch ` (String) The architecture of the host. This exposes ` runtime.GOARCH ` (see https://pkg.go.dev/runtime#pkg-constants ).
40
+ - ` arch ` (String) The architecture of the host. This exposes ` runtime.GOARCH ` (see [ Go constants ] ( https://pkg.go.dev/runtime#pkg-constants ) ).
41
41
- ` id ` (String) The ID of this resource.
42
- - ` os ` (String) The operating system of the host. This exposes ` runtime.GOOS ` (see https://pkg.go.dev/runtime#pkg-constants ).
42
+ - ` os ` (String) The operating system of the host. This exposes ` runtime.GOOS ` (see [ Go constants ] ( https://pkg.go.dev/runtime#pkg-constants ) ).
Original file line number Diff line number Diff line change @@ -29,12 +29,12 @@ func provisionerDataSource() *schema.Resource {
29
29
"os" : {
30
30
Type : schema .TypeString ,
31
31
Computed : true ,
32
- Description : "The operating system of the host. This exposes `runtime.GOOS` (see https://pkg.go.dev/runtime#pkg-constants)." ,
32
+ Description : "The operating system of the host. This exposes `runtime.GOOS` (see [Go constants]( https://pkg.go.dev/runtime#pkg-constants) )." ,
33
33
},
34
34
"arch" : {
35
35
Type : schema .TypeString ,
36
36
Computed : true ,
37
- Description : "The architecture of the host. This exposes `runtime.GOARCH` (see https://pkg.go.dev/runtime#pkg-constants)." ,
37
+ Description : "The architecture of the host. This exposes `runtime.GOARCH` (see [Go constants]( https://pkg.go.dev/runtime#pkg-constants) )." ,
38
38
},
39
39
},
40
40
}
You can’t perform that action at this time.
0 commit comments