class Terraformer::Credentials::DatadogMissingCredentals

Attributes

key[R]

Public Class Methods

new(key) click to toggle source
Calls superclass method
# File lib/terraformer/credentials/datadog.rb, line 6
def initialize(key)
  @key = key

  super(message)
end

Public Instance Methods

message() click to toggle source
# File lib/terraformer/credentials/datadog.rb, line 12
def message
  "'#{key}' not being passed. set it via CLI --#{key} or #{key.upcase} enviroment variable."
end