Skip to content

Commit

Permalink
add back in eks configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
jhsinger-klotho committed Jul 21, 2023
1 parent b24f997 commit b6f1c90
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions pkg/provider/aws/resources/eks.go
Original file line number Diff line number Diff line change
Expand Up @@ -193,6 +193,15 @@ func (cluster *EksCluster) Create(dag *core.ResourceGraph, params EksClusterCrea
return nil
}

type EksClusterConfigureParams struct {
}

func (cluster *EksCluster) Configure(params EksClusterConfigureParams) error {
// Add the kubeconfig after the dependencies are added otherwise we will have a circular dependency
cluster.Kubeconfig = createEKSKubeconfig(cluster, NewRegion())
return nil
}

type EksFargateProfileCreateParams struct {
Refs core.BaseConstructSet
AppName string
Expand Down

0 comments on commit b6f1c90

Please sign in to comment.