@@ -14,7 +14,7 @@ This module allows you to automatically clone a repository by URL and skip if it
14
14
``` tf
15
15
module "git-clone" {
16
16
source = "registry.coder.com/modules/git-clone/coder"
17
- version = "1.0.2 "
17
+ version = "1.0.12 "
18
18
agent_id = coder_agent.example.id
19
19
url = "https://github.com/coder/coder"
20
20
}
@@ -27,7 +27,7 @@ module "git-clone" {
27
27
``` tf
28
28
module "git-clone" {
29
29
source = "registry.coder.com/modules/git-clone/coder"
30
- version = "1.0.2 "
30
+ version = "1.0.12 "
31
31
agent_id = coder_agent.example.id
32
32
url = "https://github.com/coder/coder"
33
33
base_dir = "~/projects/coder"
@@ -41,7 +41,7 @@ To use with [Git Authentication](https://coder.com/docs/v2/latest/admin/git-prov
41
41
``` tf
42
42
module "git-clone" {
43
43
source = "registry.coder.com/modules/git-clone/coder"
44
- version = "1.0.2 "
44
+ version = "1.0.12 "
45
45
agent_id = coder_agent.example.id
46
46
url = "https://github.com/coder/coder"
47
47
}
@@ -66,15 +66,15 @@ data "coder_parameter" "git_repo" {
66
66
# Clone the repository for branch `feat/example`
67
67
module "git_clone" {
68
68
source = "registry.coder.com/modules/git-clone/coder"
69
- version = "1.0.11 "
69
+ version = "1.0.12 "
70
70
agent_id = coder_agent.example.id
71
71
url = data.coder_parameter.git_repo.value
72
72
}
73
73
74
74
# Create a code-server instance for the cloned repository
75
75
module "code-server" {
76
76
source = "registry.coder.com/modules/code-server/coder"
77
- version = "1.0.11 "
77
+ version = "1.0.12 "
78
78
agent_id = coder_agent.example.id
79
79
order = 1
80
80
folder = "/home/${local.username}/${module.git_clone.folder_name}"
@@ -98,7 +98,7 @@ Configuring `git-clone` for a self-hosted GitHub Enterprise Server running at `g
98
98
``` tf
99
99
module "git-clone" {
100
100
source = "registry.coder.com/modules/git-clone/coder"
101
- version = "1.0.11 "
101
+ version = "1.0.12 "
102
102
agent_id = coder_agent.example.id
103
103
url = "https://github.example.com/coder/coder/tree/feat/example"
104
104
git_providers = {
@@ -116,7 +116,7 @@ To GitLab clone with a specific branch like `feat/example`
116
116
``` tf
117
117
module "git-clone" {
118
118
source = "registry.coder.com/modules/git-clone/coder"
119
- version = "1.0.11 "
119
+ version = "1.0.12 "
120
120
agent_id = coder_agent.example.id
121
121
url = "https://gitlab.com/coder/coder/-/tree/feat/example"
122
122
}
@@ -127,7 +127,7 @@ Configuring `git-clone` for a self-hosted GitLab running at `gitlab.example.com`
127
127
``` tf
128
128
module "git-clone" {
129
129
source = "registry.coder.com/modules/git-clone/coder"
130
- version = "1.0.11 "
130
+ version = "1.0.12 "
131
131
agent_id = coder_agent.example.id
132
132
url = "https://gitlab.example.com/coder/coder/-/tree/feat/example"
133
133
git_providers = {
@@ -147,7 +147,7 @@ For example, to clone the `feat/example` branch:
147
147
``` tf
148
148
module "git-clone" {
149
149
source = "registry.coder.com/modules/git-clone/coder"
150
- version = "1.0.11 "
150
+ version = "1.0.12 "
151
151
agent_id = coder_agent.example.id
152
152
url = "https://github.com/coder/coder"
153
153
branch_name = "feat/example"
0 commit comments