This message was deleted.
# aws
s
This message was deleted.
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 🙂