You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In coder/coder and coder/modules, we reference the coder/coder Terraform provider version in multiple places (coder/coder#16309 (review))
provisioner/terraform/testdata
examples/templates/*
all of our modules in coder/modules
When a new version of the Terraform provider is released, we currently do not have any way of updating references to the provider version we reference in coder/coder. We currently just "handwave" it by:
Not specifying a version at all (most example templates)
Specifying >= 0.x (in our modules)
Specifying provider version ~> 1.0.0 (2 example templates)
This leads to significant version sprawl and makes it difficult to make informed decisions about what version of the provider is actually in use.
Proposed Solution
> A better option would be to set version constraints that we auto-bump when new provider versions are released.
We could possibly couple this to the release workflow of the provider:
After a release, clone the Coder repo at main
Run a script that updates the provider version in the required places
Commit and push a branch, and create a PR on coder/coder
Problem
In
coder/coder
andcoder/modules
, we reference thecoder/coder
Terraform provider version in multiple places (coder/coder#16309 (review))provisioner/terraform/testdata
examples/templates/*
coder/modules
When a new version of the Terraform provider is released, we currently do not have any way of updating references to the provider version we reference in
coder/coder
. We currently just "handwave" it by:>= 0.x
(in our modules)~> 1.0.0
(2 example templates)This leads to significant version sprawl and makes it difficult to make informed decisions about what version of the provider is actually in use.
Proposed Solution
We could possibly couple this to the release workflow of the provider:
Originally posted by @johnstcn in coder/coder#16309 (comment)
The text was updated successfully, but these errors were encountered: