@@ -29,10 +29,12 @@ import (
2929
3030func ResourceServer () * schema.Resource {
3131 return & schema.Resource {
32- CreateContext : ResourceServerCreate ,
33- ReadContext : ResourceServerRead ,
34- UpdateContext : ResourceServerUpdate ,
35- DeleteContext : ResourceServerDelete ,
32+ EnableLegacyTypeSystemApplyErrors : true ,
33+ EnableLegacyTypeSystemPlanErrors : true ,
34+ CreateContext : ResourceServerCreate ,
35+ ReadContext : ResourceServerRead ,
36+ UpdateContext : ResourceServerUpdate ,
37+ DeleteContext : ResourceServerDelete ,
3638 Importer : & schema.ResourceImporter {
3739 StateContext : schema .ImportStatePassthroughContext ,
3840 },
@@ -301,6 +303,8 @@ If this behaviour is wanted, please set 'reinstall_on_ssh_key_changes' argument
301303
302304func ResourceServerIP () * schema.Resource {
303305 return & schema.Resource {
306+ EnableLegacyTypeSystemApplyErrors : true ,
307+ EnableLegacyTypeSystemPlanErrors : true ,
304308 Schema : map [string ]* schema.Schema {
305309 "id" : {
306310 Type : schema .TypeString ,
0 commit comments