This message was deleted.
# aws
s
This message was deleted.
b
can you share your code?
a
yes @billowy-army-68599
for (let i = 0; i < args.eksFgCfg.length; i++ ) {
fgProfile =  new aws.eks.FargateProfile('fgProfile-' + args.eksFgCfg[i].profileName, {
fargateProfileName: args.eksFgCfg[i].profileName,
clusterName: args.eksFgCfg[i].eksClusterName,
podExecutionRoleArn: fgPodExecutionRole.arn,
selectors: args.eksFgCfg[i].eksFgSelect,
}, defaultResourceOptions);
}
b
i believe you can't create the fargate profiles in parallel, they have to happen one at time. I see some upstream issues related to this but trying to verify
a
Ok thanks @billowy-army-68599 😊 I will try to create them in another way