mirror of
https://github.com/edgelesssys/constellation.git
synced 2025-05-08 09:15:29 -04:00
Move cli/cloudprovider into internal/cloud
This commit is contained in:
parent
aee4d44b45
commit
67b25d2771
33 changed files with 31 additions and 31 deletions
33
internal/cloud/cloudprovider/cloudprovider.go
Normal file
33
internal/cloud/cloudprovider/cloudprovider.go
Normal file
|
@ -0,0 +1,33 @@
|
|||
package cloudprovider
|
||||
|
||||
import "strings"
|
||||
|
||||
//go:generate stringer -type=Provider
|
||||
|
||||
// Provider is cloud provider used by the CLI.
|
||||
type Provider uint32
|
||||
|
||||
const (
|
||||
Unknown Provider = iota
|
||||
AWS
|
||||
Azure
|
||||
GCP
|
||||
QEMU
|
||||
)
|
||||
|
||||
// FromString returns cloud provider from string.
|
||||
func FromString(s string) Provider {
|
||||
s = strings.ToLower(s)
|
||||
switch s {
|
||||
case "aws":
|
||||
return AWS
|
||||
case "azure":
|
||||
return Azure
|
||||
case "gcp":
|
||||
return GCP
|
||||
case "qemu":
|
||||
return QEMU
|
||||
default:
|
||||
return Unknown
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue