Skip to content

Commit e1f5feb

Browse files
chore(organization_webhook): fix insecure_ssl (#2196)
Co-authored-by: Keegan Campbell <[email protected]>
1 parent e3d487b commit e1f5feb

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

github/resource_github_organization_webhook.go

+3
Original file line numberDiff line numberDiff line change
@@ -98,6 +98,9 @@ func resourceGithubOrganizationWebhookCreate(d *schema.ResourceData, meta interf
9898
if hook.Config["secret"] != nil {
9999
hook.Config["secret"] = webhookObj.Config["secret"]
100100
}
101+
102+
hook.Config = insecureSslStringToBool(hook.Config)
103+
101104
if err = d.Set("configuration", []interface{}{hook.Config}); err != nil {
102105
return err
103106
}

0 commit comments

Comments
 (0)