Hi. :wave: First time writer in Pulumi’s slack. :g...
# aws
b
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
👋 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:
Copy code
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
Maybe it is in another registry
v
ah yeah i can't seem to pull it down either
looks like it might be a paid feature
b
Ok, Thanks 🙂