Skip to content

Commit 285d8d1

Browse files
committed
rename proxy option
1 parent b418362 commit 285d8d1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

kubernetes/provider.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ func Provider() *schema.Provider {
134134
},
135135
Description: "",
136136
},
137-
"bastion_host": {
137+
"proxy_url": {
138138
Type: schema.TypeString,
139139
Optional: true,
140140
Description: "URL to the proxy to be used for all requests",
@@ -441,7 +441,7 @@ func initializeConfiguration(d *schema.ResourceData) (*restclient.Config, error)
441441
overrides.AuthInfo.Exec = exec
442442
}
443443

444-
if v, ok := d.GetOk("bastion_host"); ok {
444+
if v, ok := d.GetOk("proxy_url"); ok {
445445
overrides.ClusterDefaults.ProxyURL = v.(string)
446446
}
447447

0 commit comments

Comments
 (0)