2022-09-05 09:06:08 +02:00
|
|
|
/*
|
|
|
|
Copyright (c) Edgeless Systems GmbH
|
|
|
|
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
*/
|
|
|
|
|
2022-04-13 13:01:38 +02:00
|
|
|
package cmd
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
|
2022-12-07 11:48:54 +01:00
|
|
|
"github.com/edgelesssys/constellation/v2/cli/internal/cloudcmd"
|
2023-04-14 14:15:07 +02:00
|
|
|
"github.com/edgelesssys/constellation/v2/cli/internal/terraform"
|
2024-01-24 15:10:15 +01:00
|
|
|
"github.com/edgelesssys/constellation/v2/internal/attestation/variant"
|
2022-09-21 13:47:57 +02:00
|
|
|
"github.com/edgelesssys/constellation/v2/internal/cloud/cloudprovider"
|
2023-02-24 11:36:41 +01:00
|
|
|
"github.com/edgelesssys/constellation/v2/internal/cloud/gcpshared"
|
2023-10-31 12:46:40 +01:00
|
|
|
"github.com/edgelesssys/constellation/v2/internal/config"
|
2023-12-08 16:27:04 +01:00
|
|
|
"github.com/edgelesssys/constellation/v2/internal/constellation/state"
|
2022-04-13 13:01:38 +02:00
|
|
|
)
|
|
|
|
|
2023-10-31 12:46:40 +01:00
|
|
|
type cloudApplier interface {
|
|
|
|
Plan(ctx context.Context, conf *config.Config) (bool, error)
|
2024-01-24 15:10:15 +01:00
|
|
|
Apply(ctx context.Context, csp cloudprovider.Provider, variant variant.Variant, rollback cloudcmd.RollbackBehavior) (state.Infrastructure, error)
|
2023-10-31 12:46:40 +01:00
|
|
|
RestoreWorkspace() error
|
2023-11-20 11:17:16 +01:00
|
|
|
WorkingDirIsEmpty() (bool, error)
|
2022-04-13 13:01:38 +02:00
|
|
|
}
|
|
|
|
|
2023-02-01 11:32:01 +01:00
|
|
|
type cloudIAMCreator interface {
|
2022-12-07 11:48:54 +01:00
|
|
|
Create(
|
|
|
|
ctx context.Context,
|
|
|
|
provider cloudprovider.Provider,
|
2023-04-14 14:15:07 +02:00
|
|
|
opts *cloudcmd.IAMConfigOptions,
|
2023-08-08 12:06:22 +02:00
|
|
|
) (cloudcmd.IAMOutput, error)
|
2022-12-07 11:48:54 +01:00
|
|
|
}
|
|
|
|
|
2023-02-24 11:36:41 +01:00
|
|
|
type iamDestroyer interface {
|
2023-08-04 13:53:51 +02:00
|
|
|
DestroyIAMConfiguration(ctx context.Context, tfWorkspace string, logLevel terraform.LogLevel) error
|
|
|
|
GetTfStateServiceAccountKey(ctx context.Context, tfWorkspace string) (gcpshared.ServiceAccountKey, error)
|
2023-02-24 11:36:41 +01:00
|
|
|
}
|
|
|
|
|
2022-04-13 13:01:38 +02:00
|
|
|
type cloudTerminator interface {
|
2023-08-04 13:53:51 +02:00
|
|
|
Terminate(ctx context.Context, workspace string, logLevel terraform.LogLevel) error
|
2022-04-13 13:01:38 +02:00
|
|
|
}
|