forked from kubevela/terraform-controller
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathazure.go
36 lines (32 loc) · 1.06 KB
/
azure.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
package provider
import (
"github.com/pkg/errors"
"gopkg.in/yaml.v2"
"k8s.io/klog/v2"
)
const (
envARMClientID = "ARM_CLIENT_ID"
envARMClientSecret = "ARM_CLIENT_SECRET"
envARMSubscriptionID = "ARM_SUBSCRIPTION_ID"
envARMTenantID = "ARM_TENANT_ID"
)
// AzureCredentials are credentials for Azure
type AzureCredentials struct {
ARMClientID string `yaml:"armClientID"`
ARMClientSecret string `yaml:"armClientSecret"`
ARMSubscriptionID string `yaml:"armSubscriptionID"`
ARMTenantID string `yaml:"armTenantID"`
}
func getAzureCredentials(secretData []byte, name, namespace string) (map[string]string, error) {
var cred AzureCredentials
if err := yaml.Unmarshal(secretData, &cred); err != nil {
klog.ErrorS(err, errConvertCredentials, "Name", name, "Namespace", namespace)
return nil, errors.Wrap(err, errConvertCredentials)
}
return map[string]string{
envARMClientID: cred.ARMClientID,
envARMClientSecret: cred.ARMClientSecret,
envARMSubscriptionID: cred.ARMSubscriptionID,
envARMTenantID: cred.ARMTenantID,
}, nil
}