56 lines
1.2 KiB
Go
56 lines
1.2 KiB
Go
|
package json
|
||
|
|
||
|
import (
|
||
|
"encoding/json"
|
||
|
"fmt"
|
||
|
|
||
|
ctyjson "github.com/zclconf/go-cty/cty/json"
|
||
|
|
||
|
"github.com/hashicorp/terraform/states"
|
||
|
"github.com/hashicorp/terraform/tfdiags"
|
||
|
)
|
||
|
|
||
|
type Output struct {
|
||
|
Sensitive bool `json:"sensitive"`
|
||
|
Type json.RawMessage `json:"type"`
|
||
|
Value json.RawMessage `json:"value"`
|
||
|
}
|
||
|
|
||
|
type Outputs map[string]Output
|
||
|
|
||
|
func OutputsFromMap(outputValues map[string]*states.OutputValue) (Outputs, tfdiags.Diagnostics) {
|
||
|
var diags tfdiags.Diagnostics
|
||
|
|
||
|
outputs := make(map[string]Output, len(outputValues))
|
||
|
|
||
|
for name, ov := range outputValues {
|
||
|
unmarked, _ := ov.Value.UnmarkDeep()
|
||
|
value, err := ctyjson.Marshal(unmarked, unmarked.Type())
|
||
|
if err != nil {
|
||
|
diags = diags.Append(tfdiags.Sourceless(
|
||
|
tfdiags.Error,
|
||
|
fmt.Sprintf("Error serializing output %q", name),
|
||
|
fmt.Sprintf("Error: %s", err),
|
||
|
))
|
||
|
return nil, diags
|
||
|
}
|
||
|
valueType, err := ctyjson.MarshalType(unmarked.Type())
|
||
|
if err != nil {
|
||
|
diags = diags.Append(err)
|
||
|
return nil, diags
|
||
|
}
|
||
|
|
||
|
outputs[name] = Output{
|
||
|
Sensitive: ov.Sensitive,
|
||
|
Type: json.RawMessage(valueType),
|
||
|
Value: json.RawMessage(value),
|
||
|
}
|
||
|
}
|
||
|
|
||
|
return outputs, nil
|
||
|
}
|
||
|
|
||
|
func (o Outputs) String() string {
|
||
|
return fmt.Sprintf("Outputs: %d", len(o))
|
||
|
}
|