func NewProvider()

in pkg/provider/provider.go [72:79]


func NewProvider(constructPEMChain, writeCertAndKeyInSeparateFiles bool, defaultCloudEnvironment azure.Environment) Interface {
	return &provider{
		reporter:                       metrics.NewStatsReporter(),
		constructPEMChain:              constructPEMChain,
		writeCertAndKeyInSeparateFiles: writeCertAndKeyInSeparateFiles,
		defaultCloudEnvironment:        defaultCloudEnvironment,
	}
}