helper/schema: Add deprecation to ResourceData.UnsafeSetFieldRaw

This functionality is no longer supported in Terraform 0.12 and above.
This commit is contained in:
Brian Flad 2019-02-13 22:12:10 -05:00
parent f9b62cb5fe
commit 3d908f56aa
No known key found for this signature in database
GPG Key ID: EC6252B42B012823
1 changed files with 2 additions and 0 deletions

View File

@ -52,6 +52,8 @@ type getResult struct {
// UnsafeSetFieldRaw allows setting arbitrary values in state to arbitrary
// values, bypassing schema. This MUST NOT be used in normal circumstances -
// 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) {
d.once.Do(d.init)