provisioner
package v2.23.0
Go to latest Published: Jun 3, 2025 License:AGPL-3.0
Opens a new window with list of versions in this module.
Latest LatestThis package is not in the latest version of its module.
Opens a new window with license information.
Imports:1 Opens a new window with list of imports.
Imported by:0 Opens a new window with list of known importers.
Details
Validgo.mod file
The Go module system was introduced in Go 1.11 and is the official dependency management solution for Go.
Redistributable license
Redistributable licenses place minimal restrictions on how software can be used, modified, and redistributed.
Tagged version
Modules with tagged versions give importers more predictable builds.
Stable version
When a project reaches major version v1 it is considered stable.
- Learn more about best practices
Repository
Links
Documentation¶
Index¶
Constants¶
This section is empty.
Variables¶
View Source
var (// AgentNameRegex is the regex used to validate the name of a coder_agent// resource. It must be a valid hostname and cannot contain two consecutive// hyphens or start/end with a hyphen. Uppercase characters ARE permitted,// although duplicate agent names with different casing will be rejected.//// Previously, underscores were permitted, but this was changed in 2025-02.// App URLs never supported underscores, and proxy requests to apps on// agents with underscores in the name always failed.//// Due to terraform limitations, this cannot be validated at the provider// level as resource names cannot be read from the provider API, so this is// not duplicated in the terraform provider code.//// There are test cases for this regex in regexes_test.go.AgentNameRegex =regexp.MustCompile(`(?i)^[a-z0-9](-?[a-z0-9])*$`)// AppSlugRegex is the regex used to validate the slug of a coder_app// resource. It must be a valid hostname and cannot contain two consecutive// hyphens or start/end with a hyphen.//// This regex is duplicated in the terraform provider code, so make sure to// update it there as well.//// There are test cases for this regex in regexes_test.go.AppSlugRegex =regexp.MustCompile(`^[a-z0-9](-?[a-z0-9])*$`))
Functions¶
This section is empty.
Types¶
This section is empty.
Click to show internal directories.
Click to hide internal directories.