terraform/experiments
Martin Atkins ff4ea042c2 config: Allow module authors to specify validation rules for variables
The existing "type" argument allows specifying a type constraint that
allows for some basic validation, but often there are more constraints on
a variable value than just its type.

This new feature (requiring an experiment opt-in for now, while we refine
it) allows specifying arbitrary validation rules for any variable which
can then cause custom error messages to be returned when a caller provides
an inappropriate value.

    variable "example" {
      validation {
        condition = var.example != "nope"
        error_message = "Example value must not be \"nope\"."
      }
    }

The core parts of this are designed to do as little new work as possible
when no validations are specified, and thus the main new checking codepath
here can therefore only run when the experiment is enabled in order to
permit having validations.
2020-01-10 15:23:25 -08:00
..
doc.go experiments: a mechanism for opt-in experimental language features 2019-12-10 09:27:05 -08:00
errors.go experiments: a mechanism for opt-in experimental language features 2019-12-10 09:27:05 -08:00
experiment.go config: Allow module authors to specify validation rules for variables 2020-01-10 15:23:25 -08:00
set.go experiments: a mechanism for opt-in experimental language features 2019-12-10 09:27:05 -08:00
testing.go experiments: a mechanism for opt-in experimental language features 2019-12-10 09:27:05 -08:00