diff --git a/licensing/license.go b/licensing/license.go index fa9fd6f..2dac6dd 100644 --- a/licensing/license.go +++ b/licensing/license.go @@ -82,6 +82,11 @@ func getMaxUsers(storage storage.ReadWriter, cloudType, instanceType string) int Timeout: 5 * time.Second, } return GetMaxUsersDigitalOceanBYOL(client, storage) + case "gcp": + client := http.Client{ + Timeout: 5 * time.Second, + } + return GetMaxUsersGCPBYOL(client, storage) case "": client := http.Client{ Timeout: 5 * time.Second,