How can I create an EKS fargate cluster using pulu...
# getting-started
i
How can I create an EKS fargate cluster using pulumi? I know how to create an EKS cluster:
Copy code
# Create an EKS cluster with the default configuration.
cluster = eks.Cluster(
    "theia-prod",
    eks.ClusterArgs(),
)
However, how do I specify for it to use fargate?
1
b