aboutsummaryrefslogtreecommitdiff
path: root/app/jobs/start_job.rb
blob: ec17732fd8a72e17e5b2b778b17afbce2c8e3606 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
require 'ruby_terraform'

class StartJob < TerraformJob
  @retry_interval = 30

  def run_terraform
    logger.info "Setting up #{@mini_environment.name}"

    Dir.chdir('terraform/aws') do
      RubyTerraform.init(
        backend: true,
        backend_config: {
          address: 'http://localhost:3000' + Rails.application.routes.url_helpers.terraform_http_backend_path
        }
      )

      RubyTerraform.apply(
        vars: {
          aws_region: 'eu-west-1',
          slug: @mini_environment.name.parameterize,
          ssh_public_key: ssh_public_key,
          start_command: @mini_environment.start_command
        },
        auto_approve: true
      )
    end
  end

  def ssh_public_key
    File.open("#{ENV['HOME']}/.ssh/id_rsa.pub") do |file|
      file.readline()
    end
  end
end