ДД
Size: a a a
ДД
ДД
¯
ДД
VT
A
AR
z
u
u
u
RR
RR
u
AD
A
IL
StateFunc
."nameservers": {
Type: schema.TypeList,
Optional: true,
StateFunc: func(i interface{}) string {
log.Printf("nameservers StateFunc GENERAL -> %s", i)
return i.(string)
},
Elem: &schema.Schema{
Type: schema.TypeString,
StateFunc: func(i interface{}) string {
val := i.(string)
valNew := strings.ToLower(val)
log.Printf("nameservers StateFunc: %s -> %s", val, valNew)
return valNew
},
},
},
2021-07-20T11:25:06.485+0300 [WARN] Provider "provider[\"localhost/some/some\”]” produced an unexpected new value for some_record.www, but we are tolerating it because it is using the legacy plugin SDK.
The following problems may be the cause of any confusing errors from downstream operations:
- .nameservers[0]: was cty.StringVal("hello"), but now cty.StringVal("hElLo")
- .nameservers[1]: was cty.StringVal("world"), but now cty.StringVal("worLD")
S
AR
IL