Skip to content

Commit

Permalink
Merge pull request rancher#35 from rawmind0/master
Browse files Browse the repository at this point in the history
Fix typo on cluster_gke_config credential field
  • Loading branch information
rawmind0 authored Feb 26, 2019
2 parents 5a71af6 + e551876 commit 87c3712
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rancher2/cluster_gke_config.go
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,7 @@ func expandGkeConfig(p []interface{}) (*managementClient.GoogleKubernetesEngineC
obj.ClusterIpv4Cidr = v
}

if v, ok := in["cre"].(string); ok && len(v) > 0 {
if v, ok := in["credential"].(string); ok && len(v) > 0 {
obj.Credential = v
}

Expand Down

0 comments on commit 87c3712

Please sign in to comment.