Skip to content

Commit

Permalink
fix: use SSLCheckDomain instead of Type to set a browser check SSL do…
Browse files Browse the repository at this point in the history
…main (#301)
  • Loading branch information
Antoine-C authored Sep 3, 2024
1 parent 4843d73 commit 899cab8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion checkly/resource_check.go
Original file line number Diff line number Diff line change
Expand Up @@ -650,7 +650,7 @@ func resourceDataFromCheck(c *checkly.Check, d *schema.ResourceData) error {

// ssl_check_domain is only supported for Browser checks
if c.Type == "BROWSER" && c.SSLCheckDomain != "" {
d.Set("ssl_check_domain", c.Type)
d.Set("ssl_check_domain", c.SSLCheckDomain)
}

environmentVariables := environmentVariablesFromSet(d.Get("environment_variable").([]interface{}))
Expand Down

0 comments on commit 899cab8

Please sign in to comment.