@@ -13,7 +13,7 @@ Install the JF CLI and authenticate package managers with Artifactory using Arti
1313``` tf
1414module "jfrog" {
1515 source = "registry.coder.com/coder/jfrog-token/coder"
16- version = "1.0.31 "
16+ version = "1.1.0 "
1717 agent_id = coder_agent.example.id
1818 jfrog_url = "https://XXXX.jfrog.io"
1919 artifactory_access_token = var.artifactory_access_token
@@ -22,6 +22,7 @@ module "jfrog" {
2222 go = ["go", "another-go-repo"]
2323 pypi = ["pypi", "extra-index-pypi"]
2424 docker = ["example-docker-staging.jfrog.io", "example-docker-production.jfrog.io"]
25+ conda = ["conda", "conda-local"]
2526 }
2627}
2728```
@@ -40,30 +41,33 @@ For detailed instructions, please see this [guide](https://coder.com/docs/v2/lat
4041``` tf
4142module "jfrog" {
4243 source = "registry.coder.com/coder/jfrog-token/coder"
43- version = "1.0.31 "
44+ version = "1.1.0 "
4445 agent_id = coder_agent.example.id
4546 jfrog_url = "https://YYYY.jfrog.io"
4647 artifactory_access_token = var.artifactory_access_token # An admin access token
4748 package_managers = {
48- npm = ["npm-local"]
49- go = ["go-local"]
50- pypi = ["pypi-local"]
49+ npm = ["npm-local"]
50+ go = ["go-local"]
51+ pypi = ["pypi-local"]
52+ conda = ["conda-local"]
5153 }
5254}
5355```
5456
55- You should now be able to install packages from Artifactory using both the ` jf npm ` , ` jf go ` , ` jf pip ` and ` npm ` , ` go ` , ` pip ` commands.
57+ You should now be able to install packages from Artifactory using both the ` jf npm ` , ` jf go ` , ` jf pip ` and ` npm ` , ` go ` , ` pip ` , ` conda ` commands.
5658
5759``` shell
5860jf npm install prettier
5961jf go get github.com/golang/example/hello
6062jf pip install requests
63+ conda install numpy
6164```
6265
6366``` shell
6467npm install prettier
6568go get github.com/golang/example/hello
6669pip install requests
70+ conda install numpy
6771```
6872
6973### Configure code-server with JFrog extension
@@ -73,7 +77,7 @@ The [JFrog extension](https://open-vsx.org/extension/JFrog/jfrog-vscode-extensio
7377``` tf
7478module "jfrog" {
7579 source = "registry.coder.com/coder/jfrog-token/coder"
76- version = "1.0.31 "
80+ version = "1.1.0 "
7781 agent_id = coder_agent.example.id
7882 jfrog_url = "https://XXXX.jfrog.io"
7983 artifactory_access_token = var.artifactory_access_token
@@ -93,7 +97,7 @@ data "coder_workspace" "me" {}
9397
9498module "jfrog" {
9599 source = "registry.coder.com/coder/jfrog-token/coder"
96- version = "1.0.31 "
100+ version = "1.1.0 "
97101 agent_id = coder_agent.example.id
98102 jfrog_url = "https://XXXX.jfrog.io"
99103 artifactory_access_token = var.artifactory_access_token
0 commit comments