https://pulumi.com logo
Title
b

bulky-address-22596

06/30/2022, 9:24 AM
Hi. 👋 First time writer in Pulumi’s slack. I’m trying to use EKS Blueprints with Pulumi, however I’m not able to find the provider to install anywhere, not in NPM public registry. I’m using JS/TS. https://www.pulumi.com/blog/eks-blueprints-for-pulumi/ Also no installation instructions in the repo https://github.com/pulumi/eks-blueprint Hope someone can guide me here!
v

victorious-church-57397

06/30/2022, 9:47 AM
👋 not familiar with this myself however does this help? https://github.com/pulumi/eks-blueprint/blob/main/examples/typescript/src/index.ts
from the page you linked first:
import * as ssp from "@pulumi/ssp";

const sharedServicesPlatform = new ssp.SharedServicesPlatform("my-platform", {
  clusterArgs: {
    kubernetesVersion: "1.21.0",
    region: "us-east-1",
  },
});

sharedServicesPlatform.addManagedNodeGroup({
  name: "my-managed-group",
  desiredSize: 1,
  minSize: 1,
  kubernetesVersion: "1.21.0",
  maxSize: 2,
  instanceTypes: ["t3.medium"],
});
i think the package you're looking for is
@pulumi/ssp
b

bulky-address-22596

06/30/2022, 9:49 AM
Maybe it is in another registry
v

victorious-church-57397

06/30/2022, 9:50 AM
ah yeah i can't seem to pull it down either
looks like it might be a paid feature
b

bulky-address-22596

06/30/2022, 9:51 AM
Ok, Thanks 🙂