Cryptoform
Implemented as an http backend, cryptoform encypts your state using one of the providers and stores in one on the backends. Currently only lockbox provider and file backend are supported. The tool designed to be modular so other encryption providers and backends may be added later on.
Why
Even though it's strongly recommended to use S3 or some other 3rd party service to store the state, and using git to store it is discouraged, sometimes it's still very handy to not have any external services and store the state in git, encryted for better safety. For instance: you work on the project alone and you don't need locking(an external lock mechanism can be supported in the future) and you don't want to bother configuring an external state store.
Installation
Native installation
-
Install one of supported ruby versions: 3.2 or newer
-
In your terraform project, create 2 files:
Gemfile:
# frozen_string_literal: true source "https://rubygems.org" gem "cryptoform"
-
Run
bundle install
-
Run
bundle exec cryptoform init
and follow the instructions.
Docker
- Download the script
wget https://raw.githubusercontent.com/zhulik/cryptoform/main/cryptoform
- Read it, never trust random scripts from the internet. Adjust the scrupt if needed.
- Make it executable
chmod +x ./cryptoform
- Run it
./cryptoform init
Cryptofile
port 3000 # Optional, default is 3000
state :state do # required, name can be different if you like
# only file is supported, state will be stored in <state name>.tfstate.enc
storage_backend :file, name: "state.tfstate.env" # required, file name can be overwriten if needed
# lockbox and diff_lockbox are supported backends, both use lockbox gem,
# but diff_lockbox only encrypts JSON scalar values making the state file
# a little bit less secure, but partially human readable and gid diff friendly.
encryption_backend :diff_lockbox, key: -> { ENV.fetch("CRYPTOFORM_KEY") } # required, `key` is also required
end
Development
After checking out the repo, run bin/setup
to install dependencies. Then, run rake spec
to run the tests. You can also run bin/console
for an interactive prompt that will allow you to experiment.
To install this gem onto your local machine, run bundle exec rake install
. To release a new version, update the version number in version.rb
, and then run bundle exec rake release
, which will create a git tag for the version, push git commits and the created tag, and push the .gem
file to rubygems.org.
Contributing
Bug reports and pull requests are welcome on GitHub at https://github.com/zhulik/cryptoform. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the code of conduct.
License
The gem is available as open source under the terms of the MIT License.
Code of Conduct
Everyone interacting in the Cryptoform project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the code of conduct.