class TerraformWrapper::Shared::Provider

Attributes

platforms[R]

Public Class Methods

new(options:) click to toggle source
# File lib/terraform-wrapper/shared/provider.rb, line 23
def initialize(options:)
  logger.fatal("Provider platforms to prefetch hashs for must be an array!") unless options["platforms"].kind_of?(Array)

  @platforms = options["platforms"]
end