Skip to content

Commit

Permalink
add additional logging
Browse files Browse the repository at this point in the history
  • Loading branch information
VenelinMartinov committed Nov 13, 2024
1 parent e0fa71e commit d964b33
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pkg/tfbridge/schema.go
Original file line number Diff line number Diff line change
Expand Up @@ -551,7 +551,8 @@ func (ctx *conversionContext) makeTerraformInput(
// interpolated variables whose inputs are currently unknown.
return makeTerraformUnknown(tfs, ctx.UnknownCollectionsSupported), nil
default:
contract.Failf("Unexpected value marshaled: %v", v)
// TODO
contract.Failf("Unexpected value marshaled: %v (%T)", v, v.V)
return nil, nil
}
}
Expand Down

0 comments on commit d964b33

Please sign in to comment.