lively-glass-9728
09/26/2021, 4:38 AMsteep-sunset-89396
09/26/2021, 6:44 AMaws-go-eks
it consumed 16 pulumi resources. https://github.com/pulumi/examples/tree/master/aws-go-eks
If we assume the cluster runs for 1 full month 24x7 (730 hours) then formula is like this: (((16*730)-150000)*0.00025) = $0/month
The 150000
is the Pulumi free credit. And this free credit covers for about 200 resources per month.lively-glass-9728
09/29/2021, 7:23 PMsteep-sunset-89396
09/30/2021, 6:11 AMpulumi stack export
. If the number of resources is a concern, here's a command worth integrating into your CI/CD pulumi stack export | jq '.deployment.resources | length'
. It actually outputs the number of resources in your stack. This could be pushed into a time series DB and have monitoring/alert in place or any business logic really.
Last note: for the formula I shared with you above, I'll speak with the team and I agree with should try to make it clearer. Maybe the formula alongside with an example or two would be helpful. What do you think?
I hope that makes sense.