constellation-lib: run license check in Terraform provider and refactor code (#2740)

* Clean up license checker code

Signed-off-by: Daniel Weiße <dw@edgeless.systems>

* Create license check depending on init/upgrade actions

Signed-off-by: Daniel Weiße <dw@edgeless.systems>

* Run license check in Terraform provider

Signed-off-by: Daniel Weiße <dw@edgeless.systems>

* fix license integration test action

Signed-off-by: Daniel Weiße <dw@edgeless.systems>

* Run tests with enterprise tag

Signed-off-by: Daniel Weiße <dw@edgeless.systems>

* Allow b64 encoding for license ID

Signed-off-by: Daniel Weiße <dw@edgeless.systems>

* Update checker_enterprise.go

---------

Signed-off-by: Daniel Weiße <dw@edgeless.systems>
Co-authored-by: Thomas Tendyck <51411342+thomasten@users.noreply.github.com>
This commit is contained in:
Daniel Weiße 2023-12-22 10:16:36 +01:00 committed by Leonard Cohnen
parent 1268738483
commit ade48cd2e5
17 changed files with 206 additions and 162 deletions

View file

@ -18,11 +18,11 @@ import (
type Checker struct{}
// NewChecker creates a new Checker.
func NewChecker(QuotaChecker) *Checker {
func NewChecker() *Checker {
return &Checker{}
}
// CheckLicense is a no-op for open source version of Constellation.
func (c *Checker) CheckLicense(context.Context, cloudprovider.Provider, string) (QuotaCheckResponse, error) {
return QuotaCheckResponse{}, nil
func (c *Checker) CheckLicense(context.Context, cloudprovider.Provider, Action, string) (int, error) {
return 0, nil
}