{"id":37197258,"url":"https://github.com/betterstackhq/terraform-provider-logtail","last_synced_at":"2026-03-02T21:16:29.505Z","repository":{"id":57613033,"uuid":"379560853","full_name":"BetterStackHQ/terraform-provider-logtail","owner":"BetterStackHQ","description":"Terraform provider for Better Stack Logs (formerly Logtail.com).","archived":false,"fork":false,"pushed_at":"2026-01-30T20:32:02.000Z","size":258,"stargazers_count":18,"open_issues_count":2,"forks_count":5,"subscribers_count":2,"default_branch":"main","last_synced_at":"2026-01-31T12:32:30.019Z","etag":null,"topics":["logging","telemetry","terraform","terraform-provider"],"latest_commit_sha":null,"homepage":"https://registry.terraform.io/providers/BetterStackHQ/logtail/latest/docs","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/BetterStackHQ.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2021-06-23T10:13:25.000Z","updated_at":"2026-01-26T18:58:39.000Z","dependencies_parsed_at":"2024-04-02T10:47:38.283Z","dependency_job_id":"dfaf578e-58df-4184-8507-4a2234cda3c6","html_url":"https://github.com/BetterStackHQ/terraform-provider-logtail","commit_stats":null,"previous_names":[],"tags_count":44,"template":false,"template_full_name":null,"purl":"pkg:github/BetterStackHQ/terraform-provider-logtail","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BetterStackHQ%2Fterraform-provider-logtail","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BetterStackHQ%2Fterraform-provider-logtail/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BetterStackHQ%2Fterraform-provider-logtail/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BetterStackHQ%2Fterraform-provider-logtail/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/BetterStackHQ","download_url":"https://codeload.github.com/BetterStackHQ/terraform-provider-logtail/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BetterStackHQ%2Fterraform-provider-logtail/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28952577,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-31T18:30:42.805Z","status":"ssl_error","status_checked_at":"2026-01-31T18:30:19.593Z","response_time":128,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6: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":["logging","telemetry","terraform","terraform-provider"],"created_at":"2026-01-14T22:56:02.021Z","updated_at":"2026-01-31T20:00:35.689Z","avatar_url":"https://github.com/BetterStackHQ.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# terraform-provider-logtail\n[![build](https://github.com/BetterStackHQ/terraform-provider-logtail/actions/workflows/build.yml/badge.svg?branch=main)](https://github.com/BetterStackHQ/terraform-provider-logtail/actions/workflows/build.yml)\n[![tests](https://github.com/BetterStackHQ/terraform-provider-logtail/actions/workflows/test.yml/badge.svg?branch=main)](https://github.com/BetterStackHQ/terraform-provider-logtail/actions/workflows/test.yml)\n[![documentation](https://img.shields.io/badge/-documentation-blue)](https://registry.terraform.io/providers/BetterStackHQ/logtail/latest/docs)\n\nTerraform (0.13+) provider for [Better Stack Telemetry](https://betterstack.com/logs) (formerly *Logtail.com*).\n\n## Installation\n\n```terraform\nterraform {\n  required_version = \"\u003e= 0.13\"\n  required_providers {\n    logtail = {\n      source = \"BetterStackHQ/logtail\"\n      version = \"\u003e= 0.2.0\"\n    }\n  }\n}\n```\n\n## Example usage\n\nSee [`/examples` directory](./examples) for multiple ready-to-use examples.\nHere's a simple one to get you started:\n\n```terraform\nprovider \"logtail\" {\n  # `api_token` can be omitted if LOGTAIL_API_TOKEN env var is set.\n  api_token = \"XXXXXXXXXXXXXXXXXXXXXXXX\"\n}\n\nresource \"logtail_source\" \"this\" {\n  name     = \"Production Server\"\n  platform = \"ubuntu\"\n}\n\noutput \"logtail_source_token\" {\n  value = logtail_source.this.token\n}\n```\n\n## Documentation\n\nSee [Better Stack Telemetry API docs](https://betterstack.com/docs/logs/api/getting-started/) to obtain API token and get the complete list of parameter options.\nOr explore the [Terraform Registry provider documentation](https://registry.terraform.io/providers/BetterStackHQ/logtail/latest/docs).\n\n## Development\n\n\u003e PREREQUISITE: [go1.23+](https://golang.org/dl/).\n\n```shell script\ngit clone https://github.com/betterstackhq/terraform-provider-logtail \u0026\u0026 \\\n  cd terraform-provider-logtail\n\nmake help\n```\n\n## Releasing New Versions\n\nSimply push a new tag `vX.Y.Z` to GitHub and a new version will be built and released automatically through a GitHub action.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbetterstackhq%2Fterraform-provider-logtail","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbetterstackhq%2Fterraform-provider-logtail","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbetterstackhq%2Fterraform-provider-logtail/lists"}