2022-09-05 03:06:08 -04:00
|
|
|
/*
|
|
|
|
Copyright (c) Edgeless Systems GmbH
|
|
|
|
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
*/
|
|
|
|
|
2022-04-13 07:01:38 -04:00
|
|
|
package cmd
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
|
2022-12-07 05:48:54 -05:00
|
|
|
"github.com/edgelesssys/constellation/v2/cli/internal/cloudcmd"
|
2022-10-11 06:24:33 -04:00
|
|
|
"github.com/edgelesssys/constellation/v2/cli/internal/clusterid"
|
2022-12-07 05:48:54 -05:00
|
|
|
"github.com/edgelesssys/constellation/v2/cli/internal/iamid"
|
2022-09-21 07:47:57 -04:00
|
|
|
"github.com/edgelesssys/constellation/v2/internal/cloud/cloudprovider"
|
2023-02-24 05:36:41 -05:00
|
|
|
"github.com/edgelesssys/constellation/v2/internal/cloud/gcpshared"
|
2022-09-21 07:47:57 -04:00
|
|
|
"github.com/edgelesssys/constellation/v2/internal/config"
|
2022-04-13 07:01:38 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
type cloudCreator interface {
|
|
|
|
Create(
|
|
|
|
ctx context.Context,
|
2022-04-13 09:09:33 -04:00
|
|
|
provider cloudprovider.Provider,
|
2022-04-13 07:01:38 -04:00
|
|
|
config *config.Config,
|
2023-02-10 07:27:22 -05:00
|
|
|
insType string,
|
2022-04-13 07:01:38 -04:00
|
|
|
coordCount, nodeCount int,
|
2022-10-11 06:24:33 -04:00
|
|
|
) (clusterid.File, error)
|
2022-04-13 07:01:38 -04:00
|
|
|
}
|
|
|
|
|
2023-02-01 05:32:01 -05:00
|
|
|
type cloudIAMCreator interface {
|
2022-12-07 05:48:54 -05:00
|
|
|
Create(
|
|
|
|
ctx context.Context,
|
|
|
|
provider cloudprovider.Provider,
|
|
|
|
iamConfig *cloudcmd.IAMConfig,
|
|
|
|
) (iamid.File, error)
|
|
|
|
}
|
|
|
|
|
2023-02-24 05:36:41 -05:00
|
|
|
type iamDestroyer interface {
|
|
|
|
DestroyIAMConfiguration(ctx context.Context) error
|
|
|
|
GetTfstateServiceAccountKey(ctx context.Context) (gcpshared.ServiceAccountKey, error)
|
|
|
|
}
|
|
|
|
|
2022-04-13 07:01:38 -04:00
|
|
|
type cloudTerminator interface {
|
2022-10-26 09:57:00 -04:00
|
|
|
Terminate(context.Context) error
|
2022-04-13 07:01:38 -04:00
|
|
|
}
|