Skip to content

Commit

Permalink
fix virtual address mask issues
Browse files Browse the repository at this point in the history
  • Loading branch information
RavinderReddyF5 committed Sep 17, 2024
1 parent d1eabd0 commit 2c554a7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion bigip/resource_bigip_ltm_virtual_address.go
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,8 @@ func resourceBigipLtmVirtualAddressRead(ctx context.Context, d *schema.ResourceD
if va.FullPath != name {
return diag.FromErr(fmt.Errorf("virtual address %s not found", name))
}
log.Printf("[DEBUG] virtual address configured on bigip is :%v", vas)
log.Printf("[DEBUG] virtual address configured on bigip is :%+v", vas)

_ = d.Set("name", name)
_ = d.Set("arp", va.ARP)
_ = d.Set("auto_delete", va.AutoDelete)
Expand Down
2 changes: 1 addition & 1 deletion vendor/github.com/f5devcentral/go-bigip/ltm.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 2c554a7

Please sign in to comment.