You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
terraform/internal/configs/testdata/warning-files/ephemeral_inputs_outputs.tf

22 lines
570 B

# ALLOW-LANGUAGE-EXPERIMENTS
# If the ephemeral_values features get stabilized, this test input will fail
# due to the experiment being concluded, in which case it might make sense to
# move this file to valid-files and remove the experiment opt-in
#
# If this experiment is removed without stabilizing it then this will fail
# and should be removed altogether.
terraform {
experiments = [ephemeral_values] # WARNING: Experimental feature "ephemeral_values" is active
}
variable "in" {
ephemeral = true
}
output "out" {
ephemeral = true
value = var.in
}