mirror of
https://github.com/opentofu/opentofu.git
synced 2024-12-30 10:47:14 -06:00
26e5320a78
This is part of a general effort to move all of Terraform's non-library package surface under internal in order to reinforce that these are for internal use within Terraform only. If you were previously importing packages under this prefix into an external codebase, you could pin to an earlier release tag as an interim solution until you've make a plan to achieve the same functionality some other way.
10 lines
534 B
Go
10 lines
534 B
Go
// Package experiments contains the models and logic for opt-in experiments
|
|
// that can be activated for a particular Terraform module.
|
|
//
|
|
// We use experiments to get feedback on new configuration language features
|
|
// in a way that permits breaking changes without waiting for a future minor
|
|
// release. Any feature behind an experiment flag is subject to change in any
|
|
// way in even a patch release, until we have enough confidence about the
|
|
// design of the feature to make compatibility commitments about it.
|
|
package experiments
|