class Kitchen::Terraform::VersionVerifierStrategy::Unsupported
Unsupported
is the class of objects which provide a strategy for unsupported Terraform
client versions.
Public Instance Methods
call()
click to toggle source
call
fails the verification.
@raise [Kitchen::Terraform::UnsupportedClientVersionError] @return [void]
# File lib/kitchen/terraform/version_verifier_strategy/unsupported.rb, line 28 def call raise ::Kitchen::Terraform::UnsupportedClientVersionError, "The Terraform client version is unsupported." end