Sha256: 1cbd0ef1edf904295c84a6ba8ecafa28ffd0603b17b9bd03c16926102f27c4e0

Contents?: true

Size: 1.62 KB

Versions: 46

Compression:

Stored size: 1.62 KB

Contents

# RSpec::Terraform

RSpec support for testing Terraform configurations.

## Installation

Add this line to your application's Gemfile:

```ruby
gem 'rspec-terraform'
```

And then execute:

    $ bundle

Or install it yourself as:

    $ gem install rspec-terraform

## Usage

TODO: Write docs.

## 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 tags, and push the `.gem` file to
[rubygems.org](https://rubygems.org).

### Managing CircleCI keys

To encrypt a GPG key for use by CircleCI:

```bash
openssl aes-256-cbc \
  -e \
  -md sha1 \
  -in ./config/secrets/ci/gpg.private \
  -out ./.circleci/gpg.private.enc \
  -k "<passphrase>"
```

To check decryption is working correctly:

```bash
openssl aes-256-cbc \
  -d \
  -md sha1 \
  -in ./.circleci/gpg.private.enc \
  -k "<passphrase>"
```

## Contributing

Bug reports and pull requests are welcome on GitHub at 
https://github.com/infrablocks/rspec-terraform. This project is intended to be a 
safe, welcoming space for collaboration, and contributors are expected to 
adhere to the [Contributor Covenant](http://contributor-covenant.org) code of 
conduct.

## License

The gem is available as open source under the terms of the 
[MIT License](http://opensource.org/licenses/MIT).

Version data entries

46 entries across 46 versions & 1 rubygems

Version Path
rspec-terraform-0.1.0.pre.48 README.md
rspec-terraform-0.1.0.pre.47 README.md
rspec-terraform-0.1.0.pre.46 README.md
rspec-terraform-0.1.0.pre.45 README.md
rspec-terraform-0.1.0.pre.44 README.md
rspec-terraform-0.1.0.pre.43 README.md
rspec-terraform-0.1.0.pre.42 README.md
rspec-terraform-0.1.0.pre.41 README.md
rspec-terraform-0.1.0.pre.40 README.md
rspec-terraform-0.1.0.pre.39 README.md
rspec-terraform-0.1.0.pre.38 README.md
rspec-terraform-0.1.0.pre.37 README.md
rspec-terraform-0.1.0.pre.36 README.md
rspec-terraform-0.1.0.pre.35 README.md
rspec-terraform-0.1.0.pre.34 README.md
rspec-terraform-0.1.0.pre.33 README.md
rspec-terraform-0.1.0.pre.32 README.md
rspec-terraform-0.1.0.pre.31 README.md
rspec-terraform-0.1.0.pre.30 README.md
rspec-terraform-0.1.0.pre.29 README.md