class Chef::Provisioning::AzureRM::Credentials

Constants

CONFIG_PATH

Public Class Methods

new() click to toggle source
# File lib/chef/provisioning/azurerm/credentials.rb, line 9
def initialize
  config_file = ENV['AZURE_CONFIG_FILE'] || File.expand_path(CONFIG_PATH)
  if File.file?(config_file)
    @credentials = IniFile.load(File.expand_path(config_file))
  else
    Chef::Log.warn "#{CONFIG_PATH} was not found or not accessible." unless File.file?(config_file)
  end
end
singleton() click to toggle source
# File lib/chef/provisioning/azurerm/credentials.rb, line 26
def self.singleton
  @credentials ||= Credentials.new
end

Public Instance Methods

azure_credentials_for_subscription(subscription_id) click to toggle source
# File lib/chef/provisioning/azurerm/credentials.rb, line 18
def azure_credentials_for_subscription(subscription_id)
  tenant_id = ENV['AZURE_TENANT_ID'] || @credentials[subscription_id]['tenant_id']
  client_id = ENV['AZURE_CLIENT_ID'] || @credentials[subscription_id]['client_id']
  client_secret = ENV['AZURE_CLIENT_SECRET'] || @credentials[subscription_id]['client_secret']
  token_provider = MsRestAzure::ApplicationTokenProvider.new(tenant_id, client_id, client_secret)
  MsRest::TokenCredentials.new(token_provider)
end