From 4980d1b6e82268ba8c62396aa2bdd9fe99e76cf4 Mon Sep 17 00:00:00 2001 From: Kazuma Watanabe Date: Tue, 31 Dec 2024 11:19:45 +0000 Subject: [PATCH] Introduce ephemeral marks --- terraform/lang/marks/marks.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/terraform/lang/marks/marks.go b/terraform/lang/marks/marks.go index bc25346..feb086b 100644 --- a/terraform/lang/marks/marks.go +++ b/terraform/lang/marks/marks.go @@ -35,3 +35,7 @@ func Contains(val cty.Value, mark valueMark) bool { // Sensitive indicates that this value is marked as sensitive in the context of // Terraform. const Sensitive = valueMark("Sensitive") + +// Ephemeral indicates that this value is marked as ephemeral in the context of +// Terraform. +const Ephemeral = valueMark("Ephemeral")