Class: TerraformWrapper::Shared::Backends::Common
- Inherits:
-
Object
- Object
- TerraformWrapper::Shared::Backends::Common
show all
- Includes:
- Logging
- Defined in:
- lib/terraform-wrapper/shared/backends/common.rb
Constant Summary
collapse
- @@ext =
'.tfstate'
Instance Method Summary
collapse
Methods included from Logging
configure_logger_for, logger_for
Constructor Details
#initialize(options:, variables:) ⇒ Common
29
30
31
|
# File 'lib/terraform-wrapper/shared/backends/common.rb', line 29
def initialize(options:, variables:)
logger.fatal('This class should not be used directly! Please create a backend-specific class instead!')
end
|
Instance Method Details
#hash ⇒ Object
35
36
37
|
# File 'lib/terraform-wrapper/shared/backends/common.rb', line 35
def hash
logger.fatal("The backend specific class should override the 'hash' method to return a hash of parameters for Terraform to set!")
end
|
#type ⇒ Object
41
42
43
44
45
46
47
|
# File 'lib/terraform-wrapper/shared/backends/common.rb', line 41
def type
unless @@type.is_a?(String)
logger.fatal("The backend specific class should set the 'type' class variable to a string!")
end
@@type
end
|