mirror of
https://github.com/opentofu/opentofu.git
synced 2025-01-15 11:13:09 -06:00
06b31cd26f
Signed-off-by: Christian Mesh <christianmesh1@gmail.com> Co-authored-by: James Humphries <jamesh@spacelift.io>
13 lines
603 B
Go
13 lines
603 B
Go
// Copyright (c) HashiCorp, Inc.
|
|
// SPDX-License-Identifier: MPL-2.0
|
|
|
|
// Package experiments contains the models and logic for opt-in experiments
|
|
// that can be activated for a particular OpenTofu 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
|