#
# Cookbook:: irrigate-terraform
# Recipe:: tflint
#
# Copyright:: 2017, The Orchard, All Rights Reserved.
#

include_recipe 'ark'

tflint_url = "#{node['tflint']['url_base']}/v#{node['tflint']['version']}/#{node['tflint']['zipfile']}"

ark 'tflint' do
  url tflint_url
  version node['tflint']['version']
  has_binaries ['tflint']
  append_env_path false
  strip_components 0
  action :install
end
