├── .gitignore ├── .kitchen.yml ├── .rubocop.yml ├── .rubocop_todo.yml ├── Berksfile ├── Berksfile.lock ├── CHANGELOG.md ├── CONTRIBUTING.md ├── Gemfile ├── Gemfile.lock ├── Guardfile ├── LICENSE ├── README.md ├── Rakefile ├── TESTING.md ├── Thorfile ├── attributes └── default.rb ├── chefignore ├── files └── default │ ├── hashicorp.asc │ └── tests │ └── minitest │ └── gpgme_test.rb ├── libraries └── helpers.rb ├── metadata.rb ├── recipes ├── default.rb └── gpgme.rb ├── spec ├── shared_examples.rb ├── spec_helper.rb └── unit │ └── recipes │ ├── default_spec.rb │ └── gpgme_spec.rb └── test ├── fixtures └── cookbooks │ └── terraform_test │ ├── metadata.rb │ └── recipes │ └── ubuntu.rb └── integration ├── default └── serverspec │ ├── default_spec.rb │ └── spec_helper.rb └── inspec ├── controls ├── default_spec.rb └── gpgme_spec.rb ├── inspec.yml └── libraries ├── gpg_key.rb └── gpg_signature.rb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosstimson/chef-terraform/HEAD/.gitignore -------------------------------------------------------------------------------- /.kitchen.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosstimson/chef-terraform/HEAD/.kitchen.yml -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- 1 | inherit_from: .rubocop_todo.yml 2 | 3 | AllCops: 4 | TargetRubyVersion: 2.4 5 | -------------------------------------------------------------------------------- /.rubocop_todo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosstimson/chef-terraform/HEAD/.rubocop_todo.yml -------------------------------------------------------------------------------- /Berksfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosstimson/chef-terraform/HEAD/Berksfile -------------------------------------------------------------------------------- /Berksfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosstimson/chef-terraform/HEAD/Berksfile.lock -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosstimson/chef-terraform/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosstimson/chef-terraform/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosstimson/chef-terraform/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosstimson/chef-terraform/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /Guardfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosstimson/chef-terraform/HEAD/Guardfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosstimson/chef-terraform/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosstimson/chef-terraform/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosstimson/chef-terraform/HEAD/Rakefile -------------------------------------------------------------------------------- /TESTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosstimson/chef-terraform/HEAD/TESTING.md -------------------------------------------------------------------------------- /Thorfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosstimson/chef-terraform/HEAD/Thorfile -------------------------------------------------------------------------------- /attributes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosstimson/chef-terraform/HEAD/attributes/default.rb -------------------------------------------------------------------------------- /chefignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosstimson/chef-terraform/HEAD/chefignore -------------------------------------------------------------------------------- /files/default/hashicorp.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosstimson/chef-terraform/HEAD/files/default/hashicorp.asc -------------------------------------------------------------------------------- /files/default/tests/minitest/gpgme_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosstimson/chef-terraform/HEAD/files/default/tests/minitest/gpgme_test.rb -------------------------------------------------------------------------------- /libraries/helpers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosstimson/chef-terraform/HEAD/libraries/helpers.rb -------------------------------------------------------------------------------- /metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosstimson/chef-terraform/HEAD/metadata.rb -------------------------------------------------------------------------------- /recipes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosstimson/chef-terraform/HEAD/recipes/default.rb -------------------------------------------------------------------------------- /recipes/gpgme.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosstimson/chef-terraform/HEAD/recipes/gpgme.rb -------------------------------------------------------------------------------- /spec/shared_examples.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosstimson/chef-terraform/HEAD/spec/shared_examples.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosstimson/chef-terraform/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /spec/unit/recipes/default_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosstimson/chef-terraform/HEAD/spec/unit/recipes/default_spec.rb -------------------------------------------------------------------------------- /spec/unit/recipes/gpgme_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosstimson/chef-terraform/HEAD/spec/unit/recipes/gpgme_spec.rb -------------------------------------------------------------------------------- /test/fixtures/cookbooks/terraform_test/metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosstimson/chef-terraform/HEAD/test/fixtures/cookbooks/terraform_test/metadata.rb -------------------------------------------------------------------------------- /test/fixtures/cookbooks/terraform_test/recipes/ubuntu.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosstimson/chef-terraform/HEAD/test/fixtures/cookbooks/terraform_test/recipes/ubuntu.rb -------------------------------------------------------------------------------- /test/integration/default/serverspec/default_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosstimson/chef-terraform/HEAD/test/integration/default/serverspec/default_spec.rb -------------------------------------------------------------------------------- /test/integration/default/serverspec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosstimson/chef-terraform/HEAD/test/integration/default/serverspec/spec_helper.rb -------------------------------------------------------------------------------- /test/integration/inspec/controls/default_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosstimson/chef-terraform/HEAD/test/integration/inspec/controls/default_spec.rb -------------------------------------------------------------------------------- /test/integration/inspec/controls/gpgme_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosstimson/chef-terraform/HEAD/test/integration/inspec/controls/gpgme_spec.rb -------------------------------------------------------------------------------- /test/integration/inspec/inspec.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosstimson/chef-terraform/HEAD/test/integration/inspec/inspec.yml -------------------------------------------------------------------------------- /test/integration/inspec/libraries/gpg_key.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosstimson/chef-terraform/HEAD/test/integration/inspec/libraries/gpg_key.rb -------------------------------------------------------------------------------- /test/integration/inspec/libraries/gpg_signature.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosstimson/chef-terraform/HEAD/test/integration/inspec/libraries/gpg_signature.rb --------------------------------------------------------------------------------