github.com/terramate-io/tf@v0.0.0-20230830114523-fce866b4dfcd/legacy/helper/schema/field_writer.go (about) 1 // Copyright (c) HashiCorp, Inc. 2 // SPDX-License-Identifier: MPL-2.0 3 4 package schema 5 6 // FieldWriters are responsible for writing fields by address into 7 // a proper typed representation. ResourceData uses this to write new data 8 // into existing sources. 9 type FieldWriter interface { 10 WriteField([]string, interface{}) error 11 }