From e9c7b7043209bf65662943496893c1a53da46fa8 Mon Sep 17 00:00:00 2001 From: Jack Luo Date: Mon, 25 Nov 2024 12:24:54 -0700 Subject: [PATCH] correct the field name outbound_type (#1448) Signed-off-by: Jiaqi Luo --- rancher2/schema_cluster_aks_config_v2.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rancher2/schema_cluster_aks_config_v2.go b/rancher2/schema_cluster_aks_config_v2.go index 6beec1ef..6620b827 100644 --- a/rancher2/schema_cluster_aks_config_v2.go +++ b/rancher2/schema_cluster_aks_config_v2.go @@ -14,7 +14,7 @@ var ( clusterAKSOutboundType = []string{"loadbalancer", "managednatgateway", "userassignednatgateway", "userdefinedrouting"} ) -//Schemas +// Schemas func clusterAKSConfigV2NodePoolsFields() map[string]*schema.Schema { s := map[string]*schema.Schema{ @@ -268,7 +268,7 @@ func clusterAKSConfigV2Fields() map[string]*schema.Schema { Computed: true, Description: "The AKS node resource group name", }, - "outboung_type": { + "outbound_type": { Type: schema.TypeString, Optional: true, Default: "loadBalancer",