From 214409dae7081cc282e9c4361ea67c7e45af204d Mon Sep 17 00:00:00 2001 From: Zhiwei Liang Date: Tue, 21 Apr 2026 22:45:07 -0400 Subject: [PATCH] remove note about Linode Interfaces availability from schema description --- linode/instance/schema_datasource.go | 7 +++---- linode/instance/schema_resource.go | 3 +-- 2 files changed, 4 insertions(+), 6 deletions(-) diff --git a/linode/instance/schema_datasource.go b/linode/instance/schema_datasource.go index 889623565..af838f59a 100644 --- a/linode/instance/schema_datasource.go +++ b/linode/instance/schema_datasource.go @@ -73,10 +73,9 @@ var instanceDataSourceSchema = map[string]*schema.Schema{ Computed: true, }, "interface_generation": { - Type: schema.TypeString, - Description: "The interface type for the Linode. " + - "NOTE: Linode Interfaces may not currently be available to all users.", - Computed: true, + Type: schema.TypeString, + Description: "The interface type for the Linode. ", + Computed: true, }, "ip_address": { Type: schema.TypeString, diff --git a/linode/instance/schema_resource.go b/linode/instance/schema_resource.go index 43e25a069..44840a8b6 100644 --- a/linode/instance/schema_resource.go +++ b/linode/instance/schema_resource.go @@ -575,8 +575,7 @@ var resourceSchema = map[string]*schema.Schema{ "The default value is determined by the interfaces_for_new_linodes " + "setting in the account settings. " + "If the interface_generation option is set to linode, " + - "legacy configuration interfaces can no longer be used on the Linode. " + - "NOTE: Linode Interfaces may not currently be available to all users.", + "legacy configuration interfaces can no longer be used on the Linode.", Optional: true, Computed: true, ForceNew: true,