├── .gitignore ├── .travis.yml ├── CODE_OF_CONDUCT.md ├── Gemfile ├── Guardfile ├── LICENSE.txt ├── README.md ├── Rakefile ├── examples ├── add_resource_type.rb ├── resource_aliases.rb └── simple.rb ├── lib ├── terrafied.rb └── terrafied │ ├── builder.rb │ ├── resource_shortcuts.rb │ └── version.rb ├── terrafied.gemspec └── test ├── test_helper.rb └── test_terrafied.rb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thattommyhall/terrafied/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thattommyhall/terrafied/HEAD/.travis.yml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thattommyhall/terrafied/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thattommyhall/terrafied/HEAD/Gemfile -------------------------------------------------------------------------------- /Guardfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thattommyhall/terrafied/HEAD/Guardfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thattommyhall/terrafied/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thattommyhall/terrafied/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thattommyhall/terrafied/HEAD/Rakefile -------------------------------------------------------------------------------- /examples/add_resource_type.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thattommyhall/terrafied/HEAD/examples/add_resource_type.rb -------------------------------------------------------------------------------- /examples/resource_aliases.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thattommyhall/terrafied/HEAD/examples/resource_aliases.rb -------------------------------------------------------------------------------- /examples/simple.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thattommyhall/terrafied/HEAD/examples/simple.rb -------------------------------------------------------------------------------- /lib/terrafied.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thattommyhall/terrafied/HEAD/lib/terrafied.rb -------------------------------------------------------------------------------- /lib/terrafied/builder.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thattommyhall/terrafied/HEAD/lib/terrafied/builder.rb -------------------------------------------------------------------------------- /lib/terrafied/resource_shortcuts.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thattommyhall/terrafied/HEAD/lib/terrafied/resource_shortcuts.rb -------------------------------------------------------------------------------- /lib/terrafied/version.rb: -------------------------------------------------------------------------------- 1 | module Terrafied 2 | VERSION = "0.7.0" 3 | end 4 | -------------------------------------------------------------------------------- /terrafied.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thattommyhall/terrafied/HEAD/terrafied.gemspec -------------------------------------------------------------------------------- /test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thattommyhall/terrafied/HEAD/test/test_helper.rb -------------------------------------------------------------------------------- /test/test_terrafied.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thattommyhall/terrafied/HEAD/test/test_terrafied.rb --------------------------------------------------------------------------------