Hey, Has anyone migrated an existing EKS cluster f...
# aws
c
Hey, Has anyone migrated an existing EKS cluster from Pulumi AWS provider to Pulumi EKS provider without recreating the cluster? Trying to move to the EKS provider for better management, but the cluster is in prod and must stay intact. Any tips on importing, avoiding destructive changes, or handling state?
g
Haven't done this type of migration but resourceOptions Aliases are your friend here: https://www.pulumi.com/docs/iac/concepts/options/aliases/ Use resource aliases to map the old URNs (from AWS provider) to the new ones (EKS provider), preventing Pulumi from deleting and recreating resources.