Skip to content

Commit

Permalink
Merge pull request #898 from F5Networks/devel_bigiq_as3_fix_certissue
Browse files Browse the repository at this point in the history
adding fix for cert issue on BIG-IQ
  • Loading branch information
RavinderReddyF5 authored Nov 7, 2023
2 parents 4205426 + 00432c1 commit f0b9084
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 f0b9084

Please sign in to comment.