{"id":24311552,"url":"https://github.com/essent/terraform-provider-slack","last_synced_at":"2026-04-17T23:05:50.941Z","repository":{"id":271397250,"uuid":"910488018","full_name":"Essent/terraform-provider-slack","owner":"Essent","description":"https://registry.terraform.io/providers/Essent/slack/latest","archived":false,"fork":false,"pushed_at":"2026-03-24T09:14:42.000Z","size":362,"stargazers_count":2,"open_issues_count":7,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2026-03-24T12:40:04.689Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mpl-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Essent.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":".github/CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":".github/CODEOWNERS","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":"2024-12-31T12:12:51.000Z","updated_at":"2026-03-24T09:06:31.000Z","dependencies_parsed_at":null,"dependency_job_id":"92093afe-f003-4830-9b23-4c9d0f3d05cc","html_url":"https://github.com/Essent/terraform-provider-slack","commit_stats":null,"previous_names":["essent/terraform-provider-slack"],"tags_count":6,"template":false,"template_full_name":"hashicorp/terraform-provider-scaffolding-framework","purl":"pkg:github/Essent/terraform-provider-slack","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Essent%2Fterraform-provider-slack","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Essent%2Fterraform-provider-slack/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Essent%2Fterraform-provider-slack/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Essent%2Fterraform-provider-slack/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Essent","download_url":"https://codeload.github.com/Essent/terraform-provider-slack/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Essent%2Fterraform-provider-slack/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31949435,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-17T17:29:20.459Z","status":"ssl_error","status_checked_at":"2026-04-17T17:28:47.801Z","response_time":62,"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":[],"created_at":"2025-01-17T07:11:48.283Z","updated_at":"2026-04-17T23:05:50.926Z","avatar_url":"https://github.com/Essent.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Terraform Provider Slack\n\nThis provider manages Slack usergroups as a resource and provides data sources for other Slack objects (e.g. channels, users).\nCompared to the original [provider](https://github.com/pablovarela/terraform-provider-slack) this version contains various changes:\n- Rebuilt around the terraform plugin framework\n- Implemented rate limit handling for all Slack API endpoints\n- Improved handling of conflicts with existing usergroups\n- User datasources no longer return disabled/deleted users\n- Removed the need for costly lookups by introducing new datasources that return lists of usergroups/users\n\nContributions are welcome!\nSome ideas for future improvements:\n- Implement a conversation resource to manage channels\n\n## Requirements\n\n- [Terraform](https://developer.hashicorp.com/terraform/downloads) \u003e= 1.0\n- [Go](https://golang.org/doc/install) \u003e= 1.22\n\n## Building The Provider\n\n1. Clone the repository\n2. Enter the repository directory\n3. Build the provider using the Go `install` command:\n\n```shell\ngo 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 Go modules.\n\nTo add a new dependency `github.com/author/dependency` to your Terraform provider:\n\n```shell\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```terraform\nterraform {\n  required_providers {\n    slack = {\n      source = \"essent/slack\"\n    }\n  }\n}\n\nprovider \"slack\" {\n  slack_token = \"xoxb-123456789012-123456789012-123456789012-123456789012\"\n  # Alternatively, set the SLACK_TOKEN env var\n}\n\nresource \"slack_usergroup\" \"hello_world\" {\n  name   = \"hello_world\"\n  handle = \"hello_world\"\n}\n```\n## Developing the Provider\n\nIf you wish to work on the provider, you'll first need [Go](http://www.golang.org) installed on your machine (see [Requirements](#requirements) above).\n\nTo compile the provider, run `go install`. This will build the provider and put the provider binary in the `$GOPATH/bin` directory.\n\nTo generate or update documentation, run `make 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```shell\nmake testacc\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fessent%2Fterraform-provider-slack","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fessent%2Fterraform-provider-slack","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fessent%2Fterraform-provider-slack/lists"}