Skip to content

Commit

Permalink
adding fix for cert issue on BIG-IQ
Browse files Browse the repository at this point in the history
  • Loading branch information
RavinderReddyF5 committed Nov 7, 2023
1 parent 4205426 commit 00432c1
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions bigip/resource_bigiq_regkey_license_manage.go
Original file line number Diff line number Diff line change
Expand Up @@ -531,10 +531,11 @@ func waitLicenseRevoke(bigipRef *bigip.BigIP) (map[string]interface{}, error) {

func connectBigIq(d *schema.ResourceData) (*bigip.BigIP, error) {
bigiqConfig := bigip.Config{
Address: d.Get("bigiq_address").(string),
Port: d.Get("bigiq_port").(string),
Username: d.Get("bigiq_user").(string),
Password: d.Get("bigiq_password").(string),
Address: d.Get("bigiq_address").(string),
Port: d.Get("bigiq_port").(string),
Username: d.Get("bigiq_user").(string),
Password: d.Get("bigiq_password").(string),
CertVerifyDisable: true,
}
if d.Get("bigiq_token_auth").(bool) {
bigiqConfig.LoginReference = d.Get("bigiq_login_ref").(string)
Expand Down

0 comments on commit 00432c1

Please sign in to comment.