mirror of
https://github.com/opentofu/opentofu.git
synced 2024-12-28 01:41:48 -06:00
715036d209
We're going to start merging breaking functgionality behind feature flags, to reduce the need for long-lived feature branches.
10 lines
154 B
Go
10 lines
154 B
Go
package terraform
|
|
|
|
import (
|
|
"os"
|
|
)
|
|
|
|
// This file holds feature flags for the next release
|
|
|
|
var featureOutputErrors = os.Getenv("TF_OUTPUT_ERRORS") != ""
|