Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/webhippie/terrastate
Terraform HTTP remote state storage
https://github.com/webhippie/terrastate
remote state storage terraform
Last synced: about 3 hours ago
JSON representation
Terraform HTTP remote state storage
- Host: GitHub
- URL: https://github.com/webhippie/terrastate
- Owner: webhippie
- License: apache-2.0
- Created: 2017-09-25T15:43:21.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2024-05-22T19:17:57.000Z (6 months ago)
- Last Synced: 2024-05-22T20:32:37.912Z (6 months ago)
- Topics: remote, state, storage, terraform
- Language: Go
- Homepage: https://webhippie.github.io/terrastate/
- Size: 2.34 MB
- Stars: 20
- Watchers: 3
- Forks: 5
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
# Terrastate
[![Current Tag](https://img.shields.io/github/v/tag/webhippie/terrastate?sort=semver)](https://github.com/webhippie/terrastate) [![Build Status](https://github.com/webhippie/terrastate/actions/workflows/general.yml/badge.svg)](https://github.com/webhippie/terrastate/actions) [![Join the Matrix chat at https://matrix.to/#/#webhippie:matrix.org](https://img.shields.io/badge/matrix-%23webhippie-7bc9a4.svg)](https://matrix.to/#/#webhippie:matrix.org) [![Go Reference](https://pkg.go.dev/badge/github.com/webhippie/terrastate.svg)](https://pkg.go.dev/github.com/webhippie/terrastate) [![Go Report Card](https://goreportcard.com/badge/github.com/webhippie/terrastate)](https://goreportcard.com/report/github.com/webhippie/terrastate) [![Codacy Badge](https://app.codacy.com/project/badge/Grade/d2bc4877341f4c7fbf9b4fa62b8d0484)](https://www.codacy.com/gh/webhippie/terrastate/dashboard?utm_source=github.com&utm_medium=referral&utm_content=webhippie/terrastate&utm_campaign=Badge_Grade)
Terrastate acts as an HTTP backend for Terraform which can store the state
content remotely for you to keep it outside of the repositories containing your
`.tf` files. This is a great alternative if you are not hosting your stuff on
AWS.## Install
You can download prebuilt binaries from our [GitHub releases][releases] or our
[download mirror][downloads]. Beside that we are publishing Docker images to
[Docker Hub][dockerhub] and [Quay][quay]. If you need further guidance how to
install this take a look at our [documentation][docs].## Development
Make sure you have a working Go environment, for further reference or a guide
take a look at the [install instructions][golang]. This project requires
Go >= v1.17, at least that's the version we are using.```console
git clone https://github.com/webhippie/terrastate.git
cd terrastatemake generate build
./bin/terrastate -h
```## Security
If you find a security issue please contact
[[email protected]](mailto:[email protected]) first.## Contributing
Fork -> Patch -> Push -> Pull Request
## Authors
- [Thomas Boerger](https://github.com/tboerger)
## License
Apache-2.0
## Copyright
```console
Copyright (c) 2018 Thomas Boerger
```[releases]: https://github.com/webhippie/terrastate/releases
[downloads]: https://dl.webhippie.de/#terrastate/
[dockerhub]: https://hub.docker.com/r/webhippie/terrastate/tags/
[quay]: https://quay.io/repository/webhippie/terrastate?tab=tags
[docs]: https://webhippie.github.io/terrastate/#getting-started
[golang]: http://golang.org/doc/install.html