Skip to content

Commit

Permalink
Merge pull request #107 from jeremmfr/bugfix-1.12.2
Browse files Browse the repository at this point in the history
Release v1.12.3
  • Loading branch information
jeremmfr authored Feb 5, 2021
2 parents 43d906e + e594675 commit c6c81a4
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@ ENHANCEMENTS:

BUG FIXES:

## 1.12.3 (February 5, 2021)
BUG FIXES:
* fix crash when `bind_interface` change in `junos_security_ipsec_vpn` resource

## 1.12.2 (February 3, 2021)
BUG FIXES:
* allow the name length of some objects > 32 for part of the resources (Fixes [#101](https://github.com/jeremmfr/terraform-provider-junos/issues/101))
Expand Down
2 changes: 1 addition & 1 deletion junos/resource_security_ipsec_vpn.go
Original file line number Diff line number Diff line change
Expand Up @@ -262,7 +262,7 @@ func resourceIpsecVpnUpdate(ctx context.Context, d *schema.ResourceData, m inter
AttributePath: cty.Path{cty.GetAttrStep{Name: "bind_interface_auto"}},
})
}
if d.HasChanges("bind_interface") && d.Get("bind_interfaces_auto").(bool) {
if d.HasChanges("bind_interface") && d.Get("bind_interface_auto").(bool) {
oldInt, _ := d.GetChange("bind_interface")
st0NC, st0Emtpy, err := checkInterfaceLogicalNC(oldInt.(string), m, jnprSess)
if err != nil {
Expand Down

0 comments on commit c6c81a4

Please sign in to comment.