Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/keisukeyamashita/terraform-provider-slack
Terraform Provider for Slack
https://github.com/keisukeyamashita/terraform-provider-slack
golang slack terraform terraform-plugin terraform-provider
Last synced: 14 days ago
JSON representation
Terraform Provider for Slack
- Host: GitHub
- URL: https://github.com/keisukeyamashita/terraform-provider-slack
- Owner: KeisukeYamashita
- License: mit
- Created: 2021-10-21T15:11:15.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2023-01-01T23:01:36.000Z (almost 2 years ago)
- Last Synced: 2024-10-11T13:24:16.602Z (28 days ago)
- Topics: golang, slack, terraform, terraform-plugin, terraform-provider
- Language: Go
- Homepage: https://registry.terraform.io/providers/KeisukeYamashita/slack/latest
- Size: 355 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
README
# Terraform Provider for Slack
This is a [Terraform](https://www.terraform.io/) provider for [Slack](https://slack.com)
## Maintainers
This provider plugin is maintained by:
* [@KeisukeYamashita](https;//github.com/KeisukeYamashita)
## Requirements
- [Terraform](https://www.terraform.io/downloads.html) >= v0.12.0 (v0.11.x may work but not supported actively)
## Limitations
**I do not have any Plus or Enterprise Grid workspace which I'm free to use, unfortunately.**
That's why several resources, e.g. a slack user, have not been supported yet.
## Building The Provider
Clone repository to: `$GOPATH/src/github.com/KeisukeYamashita/terraform-provider-slack`
```console
$ mkdir -p $GOPATH/src/github.com/KeisukeYamashita; cd $GOPATH/src/github.com/KeisukeYamashita
$ git clone [email protected]:KeisukeYamashita/terraform-provider-slack
Enter the provider directory and build the provider$ cd $GOPATH/src/github.com/KeisukeYamashita/terraform-provider-slack
$ make build
```## Credits
This was forked from [jmatsu/terraform-provider-slack](https://github.com/jmatsu/terraform-provider-slack), thank you very much for open sourcing this project!