kubeform.dev/terraform-backend-sdk@v0.0.0-20220310143633-45f07fe731c5/states/output_value.go (about) 1 package states 2 3 import ( 4 "kubeform.dev/terraform-backend-sdk/addrs" 5 "github.com/zclconf/go-cty/cty" 6 ) 7 8 // OutputValue represents the state of a particular output value. 9 // 10 // It is not valid to mutate an OutputValue object once it has been created. 11 // Instead, create an entirely new OutputValue to replace the previous one. 12 type OutputValue struct { 13 Addr addrs.AbsOutputValue 14 Value cty.Value 15 Sensitive bool 16 }