@@ -35,7 +35,7 @@ import (
3535 . "github.com/onsi/gomega"
3636
3737 "github.com/mongodb/mongodb-atlas-kubernetes/v2/internal/pointer"
38- awshelper "github.com/mongodb/mongodb-atlas-kubernetes/v2/test/helper/e2e/api/aws "
38+ taghelper "github.com/mongodb/mongodb-atlas-kubernetes/v2/test/helper"
3939)
4040
4141type AwsAction struct {
@@ -91,10 +91,10 @@ func (a *AwsAction) CreateKMS(ctx context.Context, alias, region, atlasAccountAr
9191 Origin : kmstypes .OriginTypeAwsKms ,
9292 Policy : aws .String (policyString ),
9393 Tags : []kmstypes.Tag {
94- {TagKey : aws .String (awshelper .OwnerTag ), TagValue : aws .String (awshelper .AKOTeam )},
95- {TagKey : aws .String (awshelper .OwnerEmailTag ), TagValue : aws .String (awshelper .AKOEmail )},
96- {TagKey : aws .String (awshelper .CostCenterTag ), TagValue : aws .String (awshelper .AKOCostCenter )},
97- {TagKey : aws .String (awshelper .EnvironmentTag ), TagValue : aws .String (awshelper .AKOEnvTest )},
94+ {TagKey : aws .String (taghelper .OwnerTag ), TagValue : aws .String (taghelper .AKOTeam )},
95+ {TagKey : aws .String (taghelper .OwnerEmailTag ), TagValue : aws .String (taghelper .AKOEmail )},
96+ {TagKey : aws .String (taghelper .CostCenterTag ), TagValue : aws .String (taghelper .AKOCostCenter )},
97+ {TagKey : aws .String (taghelper .EnvironmentTag ), TagValue : aws .String (taghelper .AKOEnvTest )},
9898 },
9999 })
100100
@@ -406,10 +406,10 @@ func (a *AwsAction) createVPC(ctx context.Context, name, cidr, region string) (s
406406 ResourceType : ec2types .ResourceTypeVpc ,
407407 Tags : []ec2types.Tag {
408408 {Key : aws .String ("Name" ), Value : aws .String (name )},
409- {Key : aws .String (awshelper .OwnerTag ), Value : aws .String (awshelper .AKOTeam )},
410- {Key : aws .String (awshelper .OwnerEmailTag ), Value : aws .String (awshelper .AKOEmail )},
411- {Key : aws .String (awshelper .CostCenterTag ), Value : aws .String (awshelper .AKOCostCenter )},
412- {Key : aws .String (awshelper .EnvironmentTag ), Value : aws .String (awshelper .AKOEnvTest )},
409+ {Key : aws .String (taghelper .OwnerTag ), Value : aws .String (taghelper .AKOTeam )},
410+ {Key : aws .String (taghelper .OwnerEmailTag ), Value : aws .String (taghelper .AKOEmail )},
411+ {Key : aws .String (taghelper .CostCenterTag ), Value : aws .String (taghelper .AKOCostCenter )},
412+ {Key : aws .String (taghelper .EnvironmentTag ), Value : aws .String (taghelper .AKOEnvTest )},
413413 },
414414 }},
415415 }
@@ -486,10 +486,10 @@ func (a *AwsAction) createSubnet(ctx context.Context, vpcID, name, cidr, region,
486486 ResourceType : ec2types .ResourceTypeSubnet ,
487487 Tags : []ec2types.Tag {
488488 {Key : aws .String ("Name" ), Value : aws .String (name )},
489- {Key : aws .String (awshelper .OwnerTag ), Value : aws .String (awshelper .AKOTeam )},
490- {Key : aws .String (awshelper .OwnerEmailTag ), Value : aws .String (awshelper .AKOEmail )},
491- {Key : aws .String (awshelper .CostCenterTag ), Value : aws .String (awshelper .AKOCostCenter )},
492- {Key : aws .String (awshelper .EnvironmentTag ), Value : aws .String (awshelper .AKOEnvTest )},
489+ {Key : aws .String (taghelper .OwnerTag ), Value : aws .String (taghelper .AKOTeam )},
490+ {Key : aws .String (taghelper .OwnerEmailTag ), Value : aws .String (taghelper .AKOEmail )},
491+ {Key : aws .String (taghelper .CostCenterTag ), Value : aws .String (taghelper .AKOCostCenter )},
492+ {Key : aws .String (taghelper .EnvironmentTag ), Value : aws .String (taghelper .AKOEnvTest )},
493493 },
494494 }},
495495 VpcId : aws .String (vpcID ),
0 commit comments