Skip to content

Commit

Permalink
Pass provider in eks provider
Browse files Browse the repository at this point in the history
  • Loading branch information
KevinFairise2 committed May 24, 2024
1 parent c72d8b1 commit 05b433c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/new-e2e/pkg/environments/aws/kubernetes/eks.go
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ func EKSRunFunc(ctx *pulumi.Context, env *environments.AwsKubernetes, params *Pr
// Create configuration for POD subnets if any
workloadDeps := make([]pulumi.Resource, 0)
if podSubnets := awsEnv.EKSPODSubnets(); len(podSubnets) > 0 {
eniConfigs, err := localEks.NewENIConfigs(awsEnv, podSubnets, awsEnv.DefaultSecurityGroups())
eniConfigs, err := localEks.NewENIConfigs(awsEnv, podSubnets, awsEnv.DefaultSecurityGroups(), pulumi.Provider(eksKubeProvider))
if err != nil {
return err
}
Expand Down

0 comments on commit 05b433c

Please sign in to comment.