mirror of
https://github.com/hashicorp/packer.git
synced 2026-09-26 09:44:01 -04:00
11 lines
266 B
Go
11 lines
266 B
Go
package arm
|
|
|
|
import (
|
|
"github.com/Azure/go-autorest/autorest/adal"
|
|
)
|
|
|
|
type oAuthTokenProvider interface {
|
|
getServicePrincipalToken() (*adal.ServicePrincipalToken, error)
|
|
getServicePrincipalTokenWithResource(resource string) (*adal.ServicePrincipalToken, error)
|
|
}
|