Class: RubyTerraform::Configuration
- Inherits:
-
Object
- Object
- RubyTerraform::Configuration
- Defined in:
- lib/ruby_terraform.rb
Instance Attribute Summary collapse
-
#binary ⇒ Object
Returns the value of attribute binary.
-
#logger ⇒ Object
Returns the value of attribute logger.
-
#options ⇒ Object
Returns the value of attribute options.
-
#stderr ⇒ Object
Returns the value of attribute stderr.
-
#stdin ⇒ Object
Returns the value of attribute stdin.
-
#stdout ⇒ Object
Returns the value of attribute stdout.
Instance Method Summary collapse
- #default_logger ⇒ Object
- #default_options ⇒ Object
-
#initialize ⇒ Configuration
constructor
A new instance of Configuration.
Constructor Details
#initialize ⇒ Configuration
Returns a new instance of Configuration.
1617 1618 1619 1620 1621 1622 1623 1624 |
# File 'lib/ruby_terraform.rb', line 1617 def initialize @binary = 'terraform' @logger = default_logger @options = @stdin = nil @stdout = $stdout @stderr = $stderr end |
Instance Attribute Details
#binary ⇒ Object
Returns the value of attribute binary.
1605 1606 1607 |
# File 'lib/ruby_terraform.rb', line 1605 def binary @binary end |
#logger ⇒ Object
Returns the value of attribute logger.
1605 1606 1607 |
# File 'lib/ruby_terraform.rb', line 1605 def logger @logger end |
#options ⇒ Object
Returns the value of attribute options.
1605 1606 1607 |
# File 'lib/ruby_terraform.rb', line 1605 def @options end |
#stderr ⇒ Object
Returns the value of attribute stderr.
1605 1606 1607 |
# File 'lib/ruby_terraform.rb', line 1605 def stderr @stderr end |
#stdin ⇒ Object
Returns the value of attribute stdin.
1605 1606 1607 |
# File 'lib/ruby_terraform.rb', line 1605 def stdin @stdin end |
#stdout ⇒ Object
Returns the value of attribute stdout.
1605 1606 1607 |
# File 'lib/ruby_terraform.rb', line 1605 def stdout @stdout end |
Instance Method Details
#default_logger ⇒ Object
1607 1608 1609 1610 1611 |
# File 'lib/ruby_terraform.rb', line 1607 def default_logger logger = Logger.new($stdout) logger.level = Logger::INFO logger end |
#default_options ⇒ Object
1613 1614 1615 |
# File 'lib/ruby_terraform.rb', line 1613 def Options::Factory.new(Options::DEFINITIONS) end |