Home
last modified time | relevance | path

Searched refs:CredentialsSource (Results 1 – 25 of 29) sorted by relevance

12

/dports/sysutils/terraform/terraform-1.0.11/internal/command/cliconfig/
H A Dcredentials.go36 func (c *Config) CredentialsSource(helperPlugins pluginDiscovery.PluginMetaSet) (*CredentialsSource func
44 var helper svcauth.CredentialsSource
74 func EmptyCredentialsSourceForTests(credentialsFilePath string) *CredentialsSource {
82 …alsSource(helperType string, helper svcauth.CredentialsSource, credentialsFilePath string) *Creden… argument
107 return &CredentialsSource{
119 type CredentialsSource struct { struct
145 helper svcauth.CredentialsSource argument
153 var _ svcauth.CredentialsSource = (*CredentialsSource)(nil)
172 func (s *CredentialsSource) ForgetForHost(host svchost.Hostname) error { argument
204 func (s *CredentialsSource) CredentialsFilePath() (string, error) { argument
[all …]
H A Dcredentials_test.go18 credSrc := &CredentialsSource{
329 var _ svcauth.CredentialsSource = (*mockCredentialsHelper)(nil)
/dports/sysutils/terraform-provider-gridscale/terraform-provider-gridscale-1.6.2/vendor/github.com/hashicorp/terraform-plugin-sdk/internal/svchost/auth/
H A Dcredentials.go17 type Credentials []CredentialsSource
21 var NoCredentials CredentialsSource = Credentials{}
29 type CredentialsSource interface { interface
H A Dcache.go14 func CachingCredentialsSource(source CredentialsSource) CredentialsSource { argument
22 source CredentialsSource
H A Dstatic.go12 func StaticCredentialsSource(creds map[svchost.Hostname]map[string]interface{}) CredentialsSource {
H A Dhelper_program.go30 func HelperProgramCredentialsSource(executable string, args ...string) CredentialsSource {
/dports/sysutils/terraform-provider-vultr/terraform-provider-vultr-0.1.10/vendor/github.com/hashicorp/terraform/svchost/auth/
H A Dcredentials.go17 type Credentials []CredentialsSource
21 var NoCredentials CredentialsSource = Credentials{}
29 type CredentialsSource interface { interface
H A Dcache.go14 func CachingCredentialsSource(source CredentialsSource) CredentialsSource { argument
22 source CredentialsSource
H A Dstatic.go12 func StaticCredentialsSource(creds map[svchost.Hostname]map[string]interface{}) CredentialsSource {
H A Dhelper_program.go30 func HelperProgramCredentialsSource(executable string, args ...string) CredentialsSource {
/dports/net/bosh-cli/bosh-cli-5.5.0/vendor/github.com/cloudfoundry/bosh-s3cli/config/
H A Dconfig.go18 CredentialsSource string `json:"credentials_source"` member
88 switch c.CredentialsSource {
104 c.CredentialsSource = StaticCredentialsSource
106 c.CredentialsSource = NoneCredentialsSource
111 return S3Cli{}, fmt.Errorf("Invalid credentials_source: %s", c.CredentialsSource)
/dports/sysutils/terraform/terraform-1.0.11/vendor/github.com/hashicorp/terraform-svchost/auth/
H A Dcache.go14 func CachingCredentialsSource(source CredentialsSource) CredentialsSource { argument
22 source CredentialsSource
H A Dcredentials.go23 type Credentials []CredentialsSource
27 var NoCredentials CredentialsSource = Credentials{}
35 type CredentialsSource interface { interface
H A Dstatic.go14 func StaticCredentialsSource(creds map[svchost.Hostname]map[string]interface{}) CredentialsSource {
/dports/sysutils/terraform/terraform-1.0.11/vendor/github.com/hashicorp/terraform-svchost/disco/
H A Ddisco.go46 credsSrc auth.CredentialsSource
59 func NewWithCredentialsSource(credsSrc auth.CredentialsSource) *Disco { argument
79 func (d *Disco) SetCredentialsSource(src auth.CredentialsSource) {
85 func (d *Disco) CredentialsSource() auth.CredentialsSource { func
/dports/sysutils/terraform/terraform-1.0.11/internal/command/
H A Dlogin_test.go122 credsSrc := c.Services.CredentialsSource()
145 credsSrc := c.Services.CredentialsSource()
178 credsSrc := c.Services.CredentialsSource()
221 credsSrc := c.Services.CredentialsSource()
246 credsSrc := c.Services.CredentialsSource()
H A Dlogout.go60 creds := c.Services.CredentialsSource().(*cliconfig.CredentialsSource)
/dports/net/bosh-cli/bosh-cli-5.5.0/vendor/github.com/cloudfoundry/bosh-s3cli/client/
H A Dsdk.go35 if c.CredentialsSource == config.StaticCredentialsSource {
39 if c.CredentialsSource == config.NoneCredentialsSource {
H A Dclient.go52 if cfg.CredentialsSource == config.NoneCredentialsSource {
102 if client.s3cliConfig.CredentialsSource == config.NoneCredentialsSource {
/dports/net/bosh-cli/bosh-cli-5.5.0/vendor/github.com/cloudfoundry/bosh-gcscli/config/
H A Dconfig.go33 CredentialsSource string `json:"credentials_source"` member
109 if c.CredentialsSource == ServiceAccountFileCredentialsSource &&
/dports/sysutils/terraform-provider-gridscale/terraform-provider-gridscale-1.6.2/vendor/github.com/hashicorp/terraform-plugin-sdk/internal/svchost/disco/
H A Ddisco.go48 credsSrc auth.CredentialsSource
61 func NewWithCredentialsSource(credsSrc auth.CredentialsSource) *Disco { argument
74 func (d *Disco) SetCredentialsSource(src auth.CredentialsSource) {
/dports/sysutils/terraform-provider-vultr/terraform-provider-vultr-0.1.10/vendor/github.com/hashicorp/terraform/svchost/disco/
H A Ddisco.go48 credsSrc auth.CredentialsSource
61 func NewWithCredentialsSource(credsSrc auth.CredentialsSource) *Disco { argument
74 func (d *Disco) SetCredentialsSource(src auth.CredentialsSource) {
/dports/sysutils/terraform/terraform-1.0.11/internal/getproviders/
H A Dhttp_mirror_source.go30 creds svcauth.CredentialsSource
44 func NewHTTPMirrorSource(baseURL *url.URL, creds svcauth.CredentialsSource) *HTTPMirrorSource { argument
58 func newHTTPMirrorSourceWithHTTPClient(baseURL *url.URL, creds svcauth.CredentialsSource, httpClien… argument
/dports/net/bosh-cli/bosh-cli-5.5.0/vendor/github.com/cloudfoundry/bosh-gcscli/client/
H A Dsdk.go39 switch cfg.CredentialsSource {
/dports/sysutils/terraform/terraform-1.0.11/
H A Dcommands.go430 func credentialsSource(config *cliconfig.Config) (auth.CredentialsSource, error) {
432 return config.CredentialsSource(helperPlugins)

12