{"id":37142293,"url":"https://github.com/ackama/terraform-provider-statuscake","last_synced_at":"2026-01-14T16:42:09.595Z","repository":{"id":64318764,"uuid":"415117218","full_name":"ackama/terraform-provider-statuscake","owner":"ackama","description":null,"archived":true,"fork":false,"pushed_at":"2023-02-25T02:47:34.000Z","size":179,"stargazers_count":1,"open_issues_count":7,"forks_count":0,"subscribers_count":13,"default_branch":"main","last_synced_at":"2024-11-16T02:19:39.127Z","etag":null,"topics":["statuscake","terraform","terraform-provider"],"latest_commit_sha":null,"homepage":"","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ackama.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2021-10-08T20:20:42.000Z","updated_at":"2023-02-25T06:46:59.000Z","dependencies_parsed_at":"2024-06-20T16:21:50.545Z","dependency_job_id":"376d0729-4856-48b2-b5af-a7128e217ddd","html_url":"https://github.com/ackama/terraform-provider-statuscake","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/ackama/terraform-provider-statuscake","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ackama%2Fterraform-provider-statuscake","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ackama%2Fterraform-provider-statuscake/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ackama%2Fterraform-provider-statuscake/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ackama%2Fterraform-provider-statuscake/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ackama","download_url":"https://codeload.github.com/ackama/terraform-provider-statuscake/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ackama%2Fterraform-provider-statuscake/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28426186,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-14T16:38:47.836Z","status":"ssl_error","status_checked_at":"2026-01-14T16:34:59.695Z","response_time":107,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["statuscake","terraform","terraform-provider"],"created_at":"2026-01-14T16:42:08.812Z","updated_at":"2026-01-14T16:42:09.588Z","avatar_url":"https://github.com/ackama.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# terraform-provider-statuscake\n\n## Requirements\n\n- [Terraform](https://www.terraform.io/downloads.html) \u003e= 0.13.x\n- [Go](https://golang.org/doc/install) \u003e= 1.15\n\n## Building The Provider\n\n1. Clone the repository\n1. Enter the repository directory\n1. Build the provider using the Go `install` command:\n\n```sh\n$ go install\n```\n\n## Adding Dependencies\n\nThis provider uses [Go modules](https://github.com/golang/go/wiki/Modules).\nPlease see the Go documentation for the most up-to-date information about using\nGo modules.\n\nTo add a new dependency `github.com/author/dependency` to your Terraform\nprovider:\n\n```\ngo get github.com/author/dependency\ngo mod tidy\n```\n\nThen commit the changes to `go.mod` and `go.sum`.\n\n## Using the provider\n\n```hcl\nterraform {\n  required_providers {\n    statuscake = {\n      version = \"0.1\"\n      source  = \"ackama.com/ackama/statuscake\"\n    }\n  }\n}\n\nprovider \"statuscake\" {}\n\nlocals {\n  # currently statuscake doesn't provide a public api for managing integrations,\n  # so you must create \u0026 get their IDs from the admin panel\n  slack_integration_id = \"12345\"\n}\n\nresource \"statuscake_contact_group\" \"main_contacts\" {\n  name = \"Main Contacts\"\n\n  email_addresses = [\n    \"humans@example.com\"\n  ]\n\n  integrations = [\n    local.slack_integration_id\n  ]\n}\n\nresource \"statuscake_uptime_test\" \"my_site\" {\n  name        = \"My Site\"\n  website_url = \"https://www.example.com\"\n  test_type   = \"HTTP\"\n  check_rate  = 300\n  tags        = [\"env:production\", \"app:example\"]\n\n  contact_groups = [\n    statuscake_contact_group.main_contacts.id\n  ]\n}\n```\n\n## Developing the Provider\n\nIf you wish to work on the provider, you'll first need\n[Go](http://www.golang.org) installed on your machine (see\n[Requirements](#requirements) above).\n\nTo compile the provider, run `go install`. This will build the provider and put\nthe provider binary in the `$GOPATH/bin` directory.\n\nTo generate or update documentation, run `go generate`.\n\nIn order to run the full suite of Acceptance tests, run `make testacc`.\n\n_Note:_ Acceptance tests create real resources, and often cost money to run.\n\n```sh\n$ make testacc\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fackama%2Fterraform-provider-statuscake","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fackama%2Fterraform-provider-statuscake","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fackama%2Fterraform-provider-statuscake/lists"}