Class: TFWrapper::RakeTasks
- Inherits:
-
Object
- Object
- TFWrapper::RakeTasks
- Includes:
- Rake::DSL
- Defined in:
- lib/tfwrapper/raketasks.rb
Overview
Generates Rake tasks for working with Terraform.
Class Attribute Summary collapse
-
.instance ⇒ Object
set when installed.
Instance Attribute Summary collapse
-
#tf_version ⇒ Object
readonly
Returns the value of attribute tf_version.
Class Method Summary collapse
-
.install_tasks(tf_dir, opts = {}) ⇒ Object
Install the Rake tasks for working with Terraform.
Instance Method Summary collapse
-
#check_tf_version ⇒ Object
Check that the terraform version is compatible.
-
#cmd_with_targets(cmd_array, target, extras) ⇒ Object
Create a terraform command line with optional targets specified; targets are inserted between cmd_array and suffix_array.
-
#initialize(tf_dir, opts = {}) ⇒ RakeTasks
constructor
Generate Rake tasks for working with Terraform.
-
#install ⇒ Object
install all Rake tasks - calls other install_* methods rubocop:disable Metrics/CyclomaticComplexity.
-
#install_apply ⇒ Object
add the ‘tf:apply’ Rake task.
-
#install_destroy ⇒ Object
add the ‘tf:destroy’ Rake task.
-
#install_init ⇒ Object
add the ‘tf:init’ Rake task.
-
#install_output ⇒ Object
add the ‘tf:output’ Rake task.
-
#install_plan ⇒ Object
add the ‘tf:plan’ Rake task.
-
#install_refresh ⇒ Object
add the ‘tf:refresh’ Rake task.
-
#install_write_tf_vars ⇒ Object
add the ‘tf:write_tf_vars’ Rake task.
-
#landscape_format(output) ⇒ Object
Given a string of terraform plan output, format it with terraform_landscape and print the result to STDOUT.
- #min_tf_version ⇒ Object
- #nsprefix ⇒ Object
-
#terraform_runner(cmd, opts = {}) ⇒ String
Run a Terraform command, providing some useful output and handling AWS API rate limiting gracefully.
- #terraform_vars ⇒ Object
-
#update_consul_stack_env_vars ⇒ Object
update stack status in Consul.
- #var_file_path ⇒ Object
Constructor Details
#initialize(tf_dir, opts = {}) ⇒ RakeTasks
Generate Rake tasks for working with Terraform.
95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 |
# File 'lib/tfwrapper/raketasks.rb', line 95 def initialize(tf_dir, opts = {}) # find the directory that contains the Rakefile rakedir = File.realpath(Rake.application.rakefile) rakedir = File.dirname(rakedir) if File.file?(rakedir) @tf_dir = File.realpath(File.join(rakedir, tf_dir)) @ns_prefix = opts.fetch(:namespace_prefix, nil) @consul_env_vars_prefix = opts.fetch(:consul_env_vars_prefix, nil) @tf_vars_from_env = opts.fetch(:tf_vars_from_env, {}) @allowed_empty_vars = opts.fetch(:allowed_empty_vars, []) @tf_sensitive_vars = opts.fetch(:tf_sensitive_vars, []) @tf_extra_vars = opts.fetch(:tf_extra_vars, {}) @backend_config = opts.fetch(:backend_config, {}) @consul_url = opts.fetch(:consul_url, nil) @disable_landscape = opts.fetch(:disable_landscape, false) @landscape_progress = opts.fetch(:landscape_progress, nil) unless [:dots, :lines, :stream, nil].include?(@landscape_progress) raise( ArgumentError, 'landscape_progress option must be one of: ' \ '[:dots, :lines, :stream, nil]' ) end @before_proc = opts.fetch(:before_proc, nil) if !@before_proc.nil? && !@before_proc.is_a?(Proc) raise( TypeError, 'TFWrapper::RakeTasks.initialize option :before_proc must be a ' \ 'Proc instance, not a ' + @before_proc.class.name ) end @after_proc = opts.fetch(:after_proc, nil) if !@after_proc.nil? && !@after_proc.is_a?(Proc) raise( TypeError, 'TFWrapper::RakeTasks.initialize option :after_proc must be a Proc ' \ 'instance, not a ' + @after_proc.class.name ) end # default to lowest possible version; this is set in the 'init' task @tf_version = Gem::Version.new('0.0.0') # rubocop:disable Style/GuardClause if @consul_url.nil? && !@consul_env_vars_prefix.nil? raise StandardError, 'Cannot set env vars in Consul when consul_url ' \ 'option is nil.' end # rubocop:enable Style/GuardClause end |
Class Attribute Details
.instance ⇒ Object
set when installed
25 26 27 |
# File 'lib/tfwrapper/raketasks.rb', line 25 def instance @instance end |
Instance Attribute Details
#tf_version ⇒ Object (readonly)
Returns the value of attribute tf_version.
40 41 42 |
# File 'lib/tfwrapper/raketasks.rb', line 40 def tf_version @tf_version end |
Class Method Details
.install_tasks(tf_dir, opts = {}) ⇒ Object
Install the Rake tasks for working with Terraform. For full parameter documentation, see #initialize
31 32 33 |
# File 'lib/tfwrapper/raketasks.rb', line 31 def install_tasks(tf_dir, opts = {}) new(tf_dir, opts).install end |
Instance Method Details
#check_tf_version ⇒ Object
Check that the terraform version is compatible
428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 |
# File 'lib/tfwrapper/raketasks.rb', line 428 def check_tf_version # run: terraform -version all_out_err, exit_status = TFWrapper::Helpers.run_cmd_stream_output( 'terraform version', @tf_dir ) unless exit_status.zero? raise StandardError, "ERROR: 'terraform -version' exited " \ "#{exit_status}: #{all_out_err}" end all_out_err = all_out_err.strip # Find the terraform version string m = /Terraform v(\d+\.\d+\.\d+).*/.match(all_out_err) unless m raise StandardError, 'ERROR: could not determine terraform version ' \ "from 'terraform -version' output: #{all_out_err}" end # the version will be a string like: # Terraform v0.9.2 # or: # Terraform v0.9.3-dev (<GIT SHA><+CHANGES>) tf_ver = Gem::Version.new(m[1]) unless tf_ver >= min_tf_version raise StandardError, "ERROR: tfwrapper #{TFWrapper::VERSION} is only " \ "compatible with Terraform >= #{min_tf_version} but your terraform " \ "binary reports itself as #{m[1]} (#{all_out_err})" end puts "Running with: #{all_out_err}" tf_ver end |
#cmd_with_targets(cmd_array, target, extras) ⇒ Object
Create a terraform command line with optional targets specified; targets are inserted between cmd_array and suffix_array.
This is intended to simplify parsing Rake task arguments and inserting them into the command as targets; to get a Rake task to take a variable number of arguments, we define a first argument (“:target“) which is either a String or nil. Any additional arguments specified end up in “args.extras“, which is either nil or an Array of additional String arguments.
502 503 504 505 506 507 508 509 |
# File 'lib/tfwrapper/raketasks.rb', line 502 def cmd_with_targets(cmd_array, target, extras) final_arr = cmd_array final_arr.concat(['-target', target]) unless target.nil? # rubocop:disable Style/SafeNavigation extras.each { |e| final_arr.concat(['-target', e]) } unless extras.nil? # rubocop:enable Style/SafeNavigation final_arr.join(' ') end |
#install ⇒ Object
install all Rake tasks - calls other install_* methods rubocop:disable Metrics/CyclomaticComplexity
153 154 155 156 157 158 159 160 161 |
# File 'lib/tfwrapper/raketasks.rb', line 153 def install install_init install_plan install_apply install_refresh install_destroy install_write_tf_vars install_output end |
#install_apply ⇒ Object
add the ‘tf:apply’ Rake task
218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 |
# File 'lib/tfwrapper/raketasks.rb', line 218 def install_apply namespace nsprefix do desc 'Apply a terraform plan that will provision your resources; ' \ 'specify optional CSV targets' task :apply, [:target] => [ :"#{nsprefix}:init", :"#{nsprefix}:write_tf_vars", :"#{nsprefix}:plan" ] do |t, args| @before_proc.call(t.name, @tf_dir) unless @before_proc.nil? cmd_arr = %w[terraform apply] cmd_arr << '-auto-approve' if tf_version >= Gem::Version.new('0.10.0') cmd_arr << "-var-file #{var_file_path}" cmd = cmd_with_targets( cmd_arr, args[:target], args.extras ) terraform_runner(cmd) update_consul_stack_env_vars unless @consul_env_vars_prefix.nil? @after_proc.call(t.name, @tf_dir) unless @after_proc.nil? end end end |
#install_destroy ⇒ Object
add the ‘tf:destroy’ Rake task
287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 |
# File 'lib/tfwrapper/raketasks.rb', line 287 def install_destroy namespace nsprefix do desc 'Destroy any live resources that are tracked by your state ' \ 'files; specify optional CSV targets' task :destroy, [:target] => [ :"#{nsprefix}:init", :"#{nsprefix}:write_tf_vars" ] do |t, args| @before_proc.call(t.name, @tf_dir) unless @before_proc.nil? cmd = cmd_with_targets( ['terraform', 'destroy', '-force', "-var-file #{var_file_path}"], args[:target], args.extras ) terraform_runner(cmd) @after_proc.call(t.name, @tf_dir) unless @after_proc.nil? end end end |
#install_init ⇒ Object
add the ‘tf:init’ Rake task. This checks environment variables, runs “terraform -version“, and then runs “terraform init“ with the “backend_config“ options, if any.
166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 |
# File 'lib/tfwrapper/raketasks.rb', line 166 def install_init namespace nsprefix do desc 'Run terraform init with appropriate arguments' task :init do |t| @before_proc.call(t.name, @tf_dir) unless @before_proc.nil? TFWrapper::Helpers.check_env_vars( @tf_vars_from_env.values, @allowed_empty_vars ) @tf_version = check_tf_version cmd = [ 'terraform', 'init', '-input=false' ].join(' ') @backend_config.each do |k, v| cmd = cmd + ' ' + "-backend-config='#{k}=#{v}'" end terraform_runner(cmd) @after_proc.call(t.name, @tf_dir) unless @after_proc.nil? end end end |
#install_output ⇒ Object
add the ‘tf:output’ Rake task
265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 |
# File 'lib/tfwrapper/raketasks.rb', line 265 def install_output namespace nsprefix do task output: [ :"#{nsprefix}:init", :"#{nsprefix}:refresh" ] do |t| @before_proc.call(t.name, @tf_dir) unless @before_proc.nil? terraform_runner('terraform output') @after_proc.call(t.name, @tf_dir) unless @after_proc.nil? end task output_json: [ :"#{nsprefix}:init", :"#{nsprefix}:refresh" ] do |t| @before_proc.call(t.name, @tf_dir) unless @before_proc.nil? terraform_runner('terraform output -json') @after_proc.call(t.name, @tf_dir) unless @after_proc.nil? end end end |
#install_plan ⇒ Object
add the ‘tf:plan’ Rake task
190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 |
# File 'lib/tfwrapper/raketasks.rb', line 190 def install_plan namespace nsprefix do desc 'Output the set plan to be executed by apply; specify ' \ 'optional CSV targets' task :plan, [:target] => [ :"#{nsprefix}:init", :"#{nsprefix}:write_tf_vars" ] do |t, args| @before_proc.call(t.name, @tf_dir) unless @before_proc.nil? cmd = cmd_with_targets( ['terraform', 'plan', "-var-file #{var_file_path}"], args[:target], args.extras ) stream_type = if HAVE_LANDSCAPE && !@disable_landscape @landscape_progress else :stream end outerr = terraform_runner(cmd, progress: stream_type) landscape_format(outerr) if HAVE_LANDSCAPE && !@disable_landscape @after_proc.call(t.name, @tf_dir) unless @after_proc.nil? end end end |
#install_refresh ⇒ Object
add the ‘tf:refresh’ Rake task
245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 |
# File 'lib/tfwrapper/raketasks.rb', line 245 def install_refresh namespace nsprefix do task refresh: [ :"#{nsprefix}:init", :"#{nsprefix}:write_tf_vars" ] do |t| @before_proc.call(t.name, @tf_dir) unless @before_proc.nil? cmd = [ 'terraform', 'refresh', "-var-file #{var_file_path}" ].join(' ') terraform_runner(cmd) @after_proc.call(t.name, @tf_dir) unless @after_proc.nil? end end end |
#install_write_tf_vars ⇒ Object
add the ‘tf:write_tf_vars’ Rake task
317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 |
# File 'lib/tfwrapper/raketasks.rb', line 317 def install_write_tf_vars namespace nsprefix do desc "Write #{var_file_path}" task :write_tf_vars do |t| @before_proc.call(t.name, @tf_dir) unless @before_proc.nil? tf_vars = terraform_vars puts 'Terraform vars:' tf_vars.sort.map do |k, v| redacted_list = (%w[aws_access_key aws_secret_key] + @tf_sensitive_vars) if redacted_list.include?(k) puts "#{k} => (redacted)" else puts "#{k} => #{v}" end end File.open(var_file_path, 'w') do |f| f.write(tf_vars.to_json) end STDERR.puts "Terraform vars written to: #{var_file_path}" @after_proc.call(t.name, @tf_dir) unless @after_proc.nil? end end end |
#landscape_format(output) ⇒ Object
Given a string of terraform plan output, format it with terraform_landscape and print the result to STDOUT.
351 352 353 354 355 356 357 358 359 360 |
# File 'lib/tfwrapper/raketasks.rb', line 351 def landscape_format(output) p = TerraformLandscape::Printer.new( TerraformLandscape::Output.new(STDOUT) ) p.process_string(output) rescue StandardError, ScriptError => ex STDERR.puts 'Exception calling terraform_landscape to reformat ' \ "output: #{ex.class.name}: #{ex}" puts output unless @landscape_progress == :stream end |
#min_tf_version ⇒ Object
36 37 38 |
# File 'lib/tfwrapper/raketasks.rb', line 36 def min_tf_version Gem::Version.new('0.9.0') end |
#nsprefix ⇒ Object
143 144 145 146 147 148 149 |
# File 'lib/tfwrapper/raketasks.rb', line 143 def nsprefix if @ns_prefix.nil? 'tf'.to_sym else "#{@ns_prefix}_tf".to_sym end end |
#terraform_runner(cmd, opts = {}) ⇒ String
Run a Terraform command, providing some useful output and handling AWS API rate limiting gracefully. Raises StandardError on failure. The command is run in @tf_dir.
rubocop:disable Metrics/PerceivedComplexity
374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 |
# File 'lib/tfwrapper/raketasks.rb', line 374 def terraform_runner(cmd, opts = {}) stream_type = opts.fetch(:progress, :stream) unless [:dots, :lines, :stream, nil].include?(stream_type) raise( ArgumentError, 'progress option must be one of: [:dots, :lines, :stream, nil]' ) end require 'retries' STDERR.puts "terraform_runner command: '#{cmd}' (in #{@tf_dir})" out_err = nil status = nil # exponential backoff as long as we're getting 403s handler = proc do |exception, attempt_number, total_delay| STDERR.puts "terraform_runner failed with #{exception}; retry " \ "attempt #{attempt_number}; #{total_delay} seconds have passed." end status = -1 with_retries( max_tries: 5, handler: handler, base_sleep_seconds: 1.0, max_sleep_seconds: 10.0 ) do # this streams STDOUT and STDERR as a combined stream, # and also captures them as a combined string out_err, status = TFWrapper::Helpers.run_cmd_stream_output( cmd, @tf_dir, progress: stream_type ) if status != 0 && out_err.include?('hrottling') raise StandardError, "#{out_err}\nTerraform hit AWS API rate limiting" end if status != 0 && out_err.include?('status code: 403') raise StandardError, "#{out_err}\nTerraform command got 403 error " \ '- access denied or credentials not propagated' end if status != 0 && out_err.include?('status code: 401') raise StandardError, "#{out_err}\nTerraform command got 401 error " \ '- access denied or credentials not propagated' end end # end exponential backoff unless status.zero? # if we weren't streaming output, send it now STDERR.puts out_err unless stream_type == :stream raise StandardError, "Errors have occurred executing: '#{cmd}' " \ "(exited #{status})" end STDERR.puts "terraform_runner command '#{cmd}' finished and exited 0" out_err end |
#terraform_vars ⇒ Object
342 343 344 345 346 347 |
# File 'lib/tfwrapper/raketasks.rb', line 342 def terraform_vars res = {} @tf_vars_from_env.each { |tfname, envname| res[tfname] = ENV[envname] } @tf_extra_vars.each { |name, val| res[name] = val } res end |
#update_consul_stack_env_vars ⇒ Object
update stack status in Consul
459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 |
# File 'lib/tfwrapper/raketasks.rb', line 459 def update_consul_stack_env_vars require 'diplomat' require 'json' data = {} @tf_vars_from_env.each_value { |k| data[k] = ENV[k] } Diplomat.configure do |config| config.url = @consul_url end puts "Writing stack information to #{@consul_url} at: "\ "#{@consul_env_vars_prefix}" redacted_list = (%w[aws_access_key aws_secret_key] + @tf_sensitive_vars) sanitized_data = data.clone @tf_vars_from_env.each do |k, v| # We are trying to determine which ENV var maps # to the sensitive terraform variable sanitized_data[v] = '(redacted)' if redacted_list.include?(k) end puts JSON.pretty_generate(sanitized_data) raw = JSON.generate(data) Diplomat::Kv.put(@consul_env_vars_prefix, raw) end |
#var_file_path ⇒ Object
308 309 310 311 312 313 314 |
# File 'lib/tfwrapper/raketasks.rb', line 308 def var_file_path if @ns_prefix.nil? File.absolute_path('build.tfvars.json') else File.absolute_path("#{@ns_prefix}_build.tfvars.json") end end |