You can not select more than 25 topics
Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- package credentials
-
- //Environmental virables that may be used by the provider
- const (
- ENVCredentialFile = "ALIBABA_CLOUD_CREDENTIALS_FILE"
- ENVEcsMetadata = "ALIBABA_CLOUD_ECS_METADATA"
- PATHCredentialFile = "~/.alibabacloud/credentials"
- )
-
- // Provider will be implemented When you want to customize the provider.
- type Provider interface {
- resolve() (*Config, error)
- }
|