mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-01-06 16:00:32 -05:00
Move marked check above null check
This commit is contained in:
@@ -16,6 +16,9 @@ func FormatValue(v cty.Value, indent int) string {
|
||||
if !v.IsKnown() {
|
||||
return "(known after apply)"
|
||||
}
|
||||
if v.IsMarked() {
|
||||
return "(sensitive)"
|
||||
}
|
||||
if v.IsNull() {
|
||||
ty := v.Type()
|
||||
switch {
|
||||
@@ -37,9 +40,6 @@ func FormatValue(v cty.Value, indent int) string {
|
||||
return fmt.Sprintf("null /* %s */", ty.FriendlyName())
|
||||
}
|
||||
}
|
||||
if v.IsMarked() {
|
||||
return "(sensitive)"
|
||||
}
|
||||
|
||||
ty := v.Type()
|
||||
switch {
|
||||
|
||||
Reference in New Issue
Block a user