Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/rrey/terraform-provider-spire
A Terraform provider to interact with SPIRE Server through GRPC
https://github.com/rrey/terraform-provider-spire
identity-management spiffe spire terraform
Last synced: 9 days ago
JSON representation
A Terraform provider to interact with SPIRE Server through GRPC
- Host: GitHub
- URL: https://github.com/rrey/terraform-provider-spire
- Owner: rrey
- License: apache-2.0
- Created: 2024-04-27T19:36:01.000Z (8 months ago)
- Default Branch: main
- Last Pushed: 2024-12-05T13:37:10.000Z (18 days ago)
- Last Synced: 2024-12-06T18:12:07.764Z (17 days ago)
- Topics: identity-management, spiffe, spire, terraform
- Language: Go
- Homepage:
- Size: 212 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
- Code of conduct: .github/CODE_OF_CONDUCT.md
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
README
# Terraform Provider SPIRE
This provider allows to interact with [SPIRE](https://spiffe.io/docs/latest/deploying/registering/) with Terraform.
## Run acceptance tests
**Warning**: A SPIRE Server must be started locally to run the tests since the unix socket must be reachable.
You can download the binaries and start the server with the following command:
```bash
.//bin/spire-server run
```To run the acceptance tests:
```bash
make testacc
```## Auto generate documentation
```bash
make gendoc
```All changes made on files after this command execution shall be committed.
## Limitations
* At the moment, the provider communicate with SPIRE through the local unix socket. It won't work with a real remote SPIRE server.