Module: RubyTerraform
- Extended by:
- ClassMethods
- Defined in:
- lib/ruby_terraform.rb,
lib/ruby_terraform/errors.rb,
lib/ruby_terraform/version.rb,
lib/ruby_terraform/commands.rb,
lib/ruby_terraform/commands/get.rb,
lib/ruby_terraform/commands/base.rb,
lib/ruby_terraform/commands/init.rb,
lib/ruby_terraform/commands/plan.rb,
lib/ruby_terraform/commands/show.rb,
lib/ruby_terraform/commands/apply.rb,
lib/ruby_terraform/commands/clean.rb,
lib/ruby_terraform/commands/output.rb,
lib/ruby_terraform/commands/destroy.rb,
lib/ruby_terraform/commands/refresh.rb,
lib/ruby_terraform/commands/validate.rb,
lib/ruby_terraform/commands/workspace.rb,
lib/ruby_terraform/commands/remote_config.rb,
lib/ruby_terraform/errors/execution_error.rb
Defined Under Namespace
Modules: ClassMethods, Commands, Errors
Classes: Configuration, MultiIO
Constant Summary
collapse
- VERSION =
"0.44.0"
Class Attribute Summary collapse
Class Method Summary
collapse
apply, clean, destroy, get, init, output, output_from_remote, plan, refresh, remote_config, validate, workspace
Class Attribute Details
.configuration ⇒ Object
10
11
12
|
# File 'lib/ruby_terraform.rb', line 10
def configuration
@configuration ||= Configuration.new
end
|
Class Method Details
14
15
16
|
# File 'lib/ruby_terraform.rb', line 14
def configure
yield(configuration)
end
|
.included(other) ⇒ Object
79
80
81
|
# File 'lib/ruby_terraform.rb', line 79
def self.included(other)
other.extend(ClassMethods)
end
|
.reset! ⇒ Object
18
19
20
|
# File 'lib/ruby_terraform.rb', line 18
def reset!
@configuration = nil
end
|