Skip to content

docs: use coder modules in offline deployments #11788

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 4 commits into from
Jan 25, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Review suggestions
  • Loading branch information
matifali authored Jan 24, 2024
commit d6d4980956be7e5cddf06dcb9506c78ad501cf2d
6 changes: 4 additions & 2 deletions docs/install/offline.md
Original file line number Diff line number Diff line change
Expand Up @@ -261,7 +261,7 @@ to resolve modules via [Artifactory](https://jfrog.com/artifactory/).
exclude = ["registry.terraform.io/*/*"]
}
network_mirror {
url = "https://jfrt.cdr.dev/artifactory/api/terraform/tf/providers/"
url = "https://example.jfrog.io/artifactory/api/terraform/tf/providers/"
}
}
```
Expand All @@ -270,13 +270,15 @@ to resolve modules via [Artifactory](https://jfrog.com/artifactory/).

```hcl
module "module-name" {
source = "https://jfrog.example.com/tf__coder/module-name/coder"
source = "https://example.jfrog.io/tf__coder/module-name/coder"
version = "1.0.0"
agent_id = coder_agent.example.id
...
}
```

> Do not forget to replace example.jgrog.io with uour Artifactory URL

Based on the instructions
[here](https://jfrog.com/blog/tour-terraform-registries-in-artifactory/).

Expand Down