Agam More

Results 49 comments of Agam More

ps react-query's useQueries is already using a new syntax in v4 with a property called `{queries: [...]}` https://tanstack.com/query/v4/docs/framework/react/reference/useQueries

Some more resources that could be helpful: - vscode [plugin](https://github.com/infracost/vscode-infracost) for terraform (really cool). - https://github.com/kamranahmedse/aws-cost-cli ([code ref](https://github.com/kamranahmedse/aws-cost-cli/blob/master/src/cost.ts#L20)) - https://github.com/lyft/awspricing - https://github.com/vantage-sh/ec2instances.info (example [code ref](https://github.com/vantage-sh/ec2instances.info/blob/master/ec2.py)) - https://github.com/clstokes/pulumi-policy-aws-cost - https://pricing.us-east-1.amazonaws.com/offers/v1.0/aws/AmazonEC2/current/index.json

I heard from a friend that implemented cost limits internally that they used an aws role with no execution permissions and when cost explorer hits the thresholds it assumes the...

I also tried deleting everything and starting [this guide](https://sst.dev/docs/aws-accounts) from the `us-east-1` region (in sst, and the ~/.aws/config). `aws sts get-caller-identity --profile=` also works.

🤦 I wrote `provider` instead of `providers`. I want to keep this open, maybe we can improve the sst DX with: - A guide for tsconfig to highlight that -...

Eventually I figured it out ``` const bucket = new sst.aws.Bucket("MyBucket"); // Delete files after 1 day const lifecycleRule = new aws.s3.BucketLifecycleConfigurationV2( "lifecycleRule", { bucket: bucket.name, rules: [ { id:...

> [@agamm](https://github.com/agamm) thanks a lot! Maybe you can open your PR to the new repo (seems like the issue was transferred but not your PR). Would be highly appreciated to...

Yes. Perfect first issue. I'll try to work category by category over time too.

If you want, I decided to abstract this extra work and support Pydantic response support for batch requests https://github.com/agamm/batchata (MIT, OpenAI and Anthropic support) - it's solely focused on being...