mirror of
https://github.com/edgelesssys/constellation.git
synced 2025-05-03 14:54:53 -04:00
Remove iamid package
Signed-off-by: Daniel Weiße <dw@edgeless.systems>
This commit is contained in:
parent
23394ea2e2
commit
21c80e7bf3
10 changed files with 81 additions and 115 deletions
|
@ -12,7 +12,6 @@ import (
|
|||
|
||||
"github.com/edgelesssys/constellation/v2/cli/internal/cloudcmd"
|
||||
"github.com/edgelesssys/constellation/v2/cli/internal/clusterid"
|
||||
"github.com/edgelesssys/constellation/v2/cli/internal/iamid"
|
||||
"github.com/edgelesssys/constellation/v2/cli/internal/terraform"
|
||||
"github.com/edgelesssys/constellation/v2/internal/cloud/cloudprovider"
|
||||
"github.com/edgelesssys/constellation/v2/internal/cloud/gcpshared"
|
||||
|
@ -57,7 +56,7 @@ func (c *stubCloudTerminator) Called() bool {
|
|||
|
||||
type stubIAMCreator struct {
|
||||
createCalled bool
|
||||
id iamid.File
|
||||
id cloudcmd.IAMOutput
|
||||
createErr error
|
||||
}
|
||||
|
||||
|
@ -65,7 +64,7 @@ func (c *stubIAMCreator) Create(
|
|||
_ context.Context,
|
||||
provider cloudprovider.Provider,
|
||||
_ *cloudcmd.IAMConfigOptions,
|
||||
) (iamid.File, error) {
|
||||
) (cloudcmd.IAMOutput, error) {
|
||||
c.createCalled = true
|
||||
c.id.CloudProvider = provider
|
||||
return c.id, c.createErr
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue