Class: Kitchen::Terraform::Command::Init::PreZeroFifteenZero

Inherits:
Object
  • Object
show all
Defined in:
lib/kitchen/terraform/command/init/pre_zero_fifteen_zero.rb

Overview

The working directory is initialized by running a command like the following example:

terraform init \
  -backend=true \
  [-backend-config=<backend_configurations[0]> ...] \
  -force-copy \
  -get=true \
  -get-plugins=true \
  -input=false \
  -lock=<lock> \
  -lock-timeout=<lock_timeout>s \
  [-no-color] \
  [-plugin-dir=<plugin_directory>] \
  [-upgrade=true] \
  -verify-plugins=true \
  <root_module_directory>

Instance Method Summary collapse

Constructor Details

#initialize(config:) ⇒ Kitchen::Terraform::Command::Init::PreZeroFifteenZero

#initialize prepares a new instance of the class.

Parameters:

  • config (Hash)

    the configuration of the driver.

Options Hash (config:):

  • :backend_configurations (Hash{String=>String})

    Terraform backend configuration arguments to complete a partial backend configuration.

  • :color (Boolean)

    a toggle of colored output from the Terraform client.

  • :lock (Boolean)

    a toggle of locking for the Terraform state file.

  • :lock_timeout (Integer)

    the number of seconds that the Terraform client will wait for a lock on the state to be obtained during operations.

  • :plugin_directory (String)

    the pathname of the directory which contains customized Terraform provider plugins to install in place of the official Terraform provider plugins.

  • :upgrade_during_init (Boolean)

    a toggle for upgrading modules and plugins.



56
57
58
59
60
61
62
63
64
65
66
67
# File 'lib/kitchen/terraform/command/init/pre_zero_fifteen_zero.rb', line 56

def initialize(config:)
  self.backend_config = ::Kitchen::Terraform::CommandFlag::BackendConfig.new arguments: config.fetch(
    :backend_configurations
  )
  self.color = ::Kitchen::Terraform::CommandFlag::Color.new enabled: config.fetch(:color)
  self.lock = config.fetch :lock
  self.lock_timeout = ::Kitchen::Terraform::CommandFlag::LockTimeout.new duration: config.fetch(:lock_timeout)
  self.plugin_dir = ::Kitchen::Terraform::CommandFlag::PluginDir.new pathname: config.fetch(
    :plugin_directory
  )
  self.upgrade = ::Kitchen::Terraform::CommandFlag::Upgrade.new enabled: config.fetch(:upgrade_during_init)
end

Instance Method Details

#to_sString

Returns the command with flags.

Returns:

  • (String)

    the command with flags.



70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
# File 'lib/kitchen/terraform/command/init/pre_zero_fifteen_zero.rb', line 70

def to_s
  "init " \
  "-backend=true " \
  "#{backend_config} " \
  "-force-copy=true " \
  "-get=true " \
  "-get-plugins=true " \
  "-input=false " \
  "-lock=#{lock} " \
  "#{lock_timeout} " \
  "#{color} " \
  "#{plugin_dir} " \
  "#{upgrade} " \
  "-verify-plugins=true"
end