Skip to content

Commit

Permalink
Merge pull request #83 from StatusCakeDev/fix-ssl-check-on-broken-flag
Browse files Browse the repository at this point in the history
Fix SSL check `on_broken` flag
  • Loading branch information
tomasbasham authored Sep 5, 2022
2 parents d13808c + 13b6fe9 commit 7250806
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/provider/resource_ssl_check.go
Original file line number Diff line number Diff line change
Expand Up @@ -356,7 +356,7 @@ func expandSSLCheckAlertConfig(v interface{}, d *schema.ResourceData) (interface
broken, err := expandSSLCheckOnBroken(original["on_broken"], d)
if err != nil {
return nil, err
} else if d.HasChange("alert_config.0.broken") {
} else if d.HasChange("alert_config.0.on_broken") {
transformed["alert_broken"] = broken
}

Expand Down

0 comments on commit 7250806

Please sign in to comment.