Merge pull request #20339 from hashicorp/td-UnsafeSetFieldRaw-deprecation
helper/schema: Add deprecation to ResourceData.UnsafeSetFieldRaw
This commit is contained in:
commit
58eba8fe9a
|
@ -52,6 +52,8 @@ type getResult struct {
|
||||||
// UnsafeSetFieldRaw allows setting arbitrary values in state to arbitrary
|
// UnsafeSetFieldRaw allows setting arbitrary values in state to arbitrary
|
||||||
// values, bypassing schema. This MUST NOT be used in normal circumstances -
|
// values, bypassing schema. This MUST NOT be used in normal circumstances -
|
||||||
// it exists only to support the remote_state data source.
|
// it exists only to support the remote_state data source.
|
||||||
|
//
|
||||||
|
// Deprecated: Fully define schema attributes and use Set() instead.
|
||||||
func (d *ResourceData) UnsafeSetFieldRaw(key string, value string) {
|
func (d *ResourceData) UnsafeSetFieldRaw(key string, value string) {
|
||||||
d.once.Do(d.init)
|
d.once.Do(d.init)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue