Skip to content

Commit c8dec61

Browse files
authored
1 parent 9922c77 commit c8dec61

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

internal/services/webhosting/offer_data_source.go

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -202,6 +202,8 @@ func DataSourceOffer() *schema.Resource {
202202
},
203203
"region": regional.Schema(),
204204
},
205+
EnableLegacyTypeSystemPlanErrors: true,
206+
EnableLegacyTypeSystemApplyErrors: true,
205207
}
206208
}
207209

internal/services/webhosting/webhosting.go

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -230,6 +230,8 @@ func ResourceWebhosting() *schema.Resource {
230230

231231
return nil
232232
},
233+
EnableLegacyTypeSystemPlanErrors: true,
234+
EnableLegacyTypeSystemApplyErrors: true,
233235
}
234236
}
235237

internal/services/webhosting/webhosting_data_source.go

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,10 @@ func DataSourceWebhosting() *schema.Resource {
3535
}
3636

3737
return &schema.Resource{
38-
Schema: dsSchema,
39-
ReadContext: DataSourceWebhostingRead,
38+
Schema: dsSchema,
39+
ReadContext: DataSourceWebhostingRead,
40+
EnableLegacyTypeSystemPlanErrors: true,
41+
EnableLegacyTypeSystemApplyErrors: true,
4042
}
4143
}
4244

0 commit comments

Comments
 (0)