Fork me on GitHub
#aws
<
2020-02-12
>
kenny00:02:38

Weird learning of the day: EBS volume prices are based on the month of the year. i.e., the cost per volume gib changes based on the length of the month. Very strange.

😮 4
Alex Miller (Clojure team)00:02:33

maybe lots of end-of-the-month batch processing?

4
kenny01:02:29

Could we perhaps have the ability to specify the :api as a part of the op-map? We have tons of code that ends up looking like this:

{::ec2-client         (aws/new-client {:api :ec2})
 ::rds-client         (aws/new-client {:api :rds})
 ::cw-client          (aws/new-client {:api :monitoring})
 ::autoscaling-client (aws/new-client {:api :autoscaling})
 ::lb-v1-client       (aws/new-client {:api :elasticloadbalancing})
 ::lb-v2-client       (aws/new-client {:api :elasticloadbalancingv2})}
There doesn't seem to be a reason for keeping them separate. I suppose we could implement this ourselves.

ghadi01:02:15

@kenny would appreciate a GitHub issue describing that

kenny01:02:44

Will do tomorrow

ghadi02:02:18

thank you sir