https://github.com/foomo/terradays
Terraform utility, cause even the good ones need a couple of days to create a planet
https://github.com/foomo/terradays
Last synced: 7 months ago
JSON representation
Terraform utility, cause even the good ones need a couple of days to create a planet
- Host: GitHub
- URL: https://github.com/foomo/terradays
- Owner: foomo
- License: mit
- Created: 2018-12-13T12:02:32.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2019-10-22T20:07:02.000Z (over 6 years ago)
- Last Synced: 2023-03-12T04:12:35.011Z (over 3 years ago)
- Language: Go
- Homepage:
- Size: 19.5 KB
- Stars: 1
- Watchers: 8
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Terradays
Terradays is a small utility around terraform that tries to help to workaround some issues that are currently not yet fixed. For now, it will read in a `terradays.yaml` file containing a list of actions that it will then apply in sequence.
## Installation
Download and install precombiled [releases](https://github.com/foomo/terradays/releases).
On Mac OS X you can also install the latest release via Homebrew:
```bash
brew install foomo/terradays/terradays
```
## Usage
```
Available Commands:
apply builds or changes infrastructure
help Help about any command
version prints out version number
Flags:
--debug Debug output
-h, --help help for terradays
```
## Configuration
```yaml
# Configuration version
version: "1"
# List of actions to run in sequence
actions:
# Module action
- type: module
name: cluster # Name of the module to run
# Script action
- type: script
path: script.sh # Path to the script to execute
args: [] # Script arguements
stdin: "" # Script stdin
```
## Contributing
In lieu of a formal style guide, take care to maintain the existing coding style.
1. Fork it
2. Create your feature branch (`git checkout -b my-new-feature`)
3. Commit your changes (`git commit -am 'Add some feature'`)
4. Push to the branch (`git push origin my-new-feature`)
5. Create new Pull Request
## License
Copyright (c) foomo under the MIT license.