Class: Chef::Provisioning::AzureRM::Credentials

Inherits:
Object
  • Object
show all
Defined in:
lib/chef/provisioning/azurerm/credentials.rb

Constant Summary collapse

CONFIG_PATH =
"#{ENV['HOME']}/.azure/credentials".freeze

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeCredentials

Returns a new instance of Credentials.



9
10
11
12
13
14
15
16
# 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

Class Method Details

.singletonObject



26
27
28
# File 'lib/chef/provisioning/azurerm/credentials.rb', line 26

def self.singleton
  @credentials ||= Credentials.new
end

Instance Method Details

#azure_credentials_for_subscription(subscription_id) ⇒ Object



18
19
20
21
22
23
24
# 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