github.com/muratcelep/terraform@v1.1.0-beta2-not-internal-4/not-internal/states/output_value.go (about) 1 package states 2 3 import ( 4 "github.com/muratcelep/terraform/not-internal/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 }