Coder powers secure, scalable development across key industries — automotive, finance, government, and technology — enabling faster builds, tighter compliance, and seamless AI adoption in enterprise-grade cloud environments.
Template administrators can leverage static template tags to limit workspace
provisioning to designated provisioner groups that have locally deployed
credentials for creating workspace resources. While this method ensures
controlled access, it offers limited flexibility and does not permit users to
select the nodes for their workspace creation.
By using coder_workspace_tags and coder_parameters, template administrators
can enable dynamic tag selection and modify static template tags.
Dynamic tag selection
Here is a sample coder_workspace_tags data resource with a few workspace tags
specified:
In order to correctly import a template that defines tags in
coder_workspace_tags, Coder needs to know the tags to assign the template
import job ahead of time. To work around this chicken-and-egg problem, Coder
performs static analysis of the Terraform to determine a reasonable set of tags
to assign to the template import job. This happens before the job is started.
When the template is imported, Coder will then store the raw Terraform
expressions for the values of the workspace tags for that template version. The
next time a workspace is created from that template, Coder retrieves the stored
raw values from the database and evaluates them using provided template
variables and parameters. This is illustrated in the table below:
Value Type
Template Import
Workspace Creation
Static
{"region": "us"}
{"region": "us"}
Variable
{"az": var.az}
{"region": "us-east"}
Parameter
{"cluster": data.coder_parameter.cluster.value }
{"cluster": "dev"}
Constraints
Tagged provisioners
It is possible to choose tag combinations that no provisioner can handle. This
will cause the provisioner job to get stuck in the queue until a provisioner is
added that can handle its combination of tags.
Before releasing the template version with configurable workspace tags, ensure
that every tag set is associated with at least one healthy provisioner.
Note
It may be useful to run at least one provisioner with no additional
tag restrictions that is able to take on any job.
coder_workspace_tags are cumulative.
Jobs will only match provisioners that have all tags defined in both your template configuration and coder_workspace_tags.
Parameters types
Provisioners require job tags to be defined in plain string format. When a
workspace tag refers to a coder_parameter without involving the string
formatter, for example,
("runtime" = data.coder_parameter.runtime_selector.value), the Coder
provisioner server can transform only the following parameter types to strings:
string, number, and bool.
Mutability
A mutable coder_parameter can be dangerous for a workspace tag as it allows
the workspace owner to change a provisioner group (due to different tags). In
most cases, coder_parameters backing coder_workspace_tags should be marked
as immutable and set only once, during workspace creation.
You may only specify the following as inputs for coder_workspace_tags:
Example
Static values
"developers"
Template variables
var.az
Coder parameters
data.coder_parameter.runtime_selector.value
Passing template tags in from other data sources or resources is not permitted.
HCL syntax
When importing the template version with coder_workspace_tags, the Coder provisioner server extracts raw partial queries for each workspace tag and stores them in the database.
During workspace build time, the Coder server uses the HashiCorp HCL library to evaluate these raw queries on-the-fly without processing the entire Terraform template.
This evaluation is simpler but also limited in terms of available functions, variables, and references to other resources.