Class: Terraform::Binary::Configuration

Inherits:
Object
  • Object
show all
Defined in:
lib/terraform/binary.rb

Overview

This class holds the global configuration items

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeConfiguration

Returns a new instance of Configuration.



60
61
62
63
# File 'lib/terraform/binary.rb', line 60

def initialize
  @version = TERRAFORM_VERSION
  @download_path = '/tmp'
end

Instance Attribute Details

#download_pathObject

Returns the value of attribute download_path.



58
59
60
# File 'lib/terraform/binary.rb', line 58

def download_path
  @download_path
end

#versionObject

Returns the value of attribute version.



57
58
59
# File 'lib/terraform/binary.rb', line 57

def version
  @version
end