sebasrp / awslimitchecker

Simple module to programatically retrieve your AWS account limits (whether they are supported by servicequotas or not). It also provide a lightweight cli program to access the data.
MIT License
2 stars 0 forks source link

Add override option #7

Open sebasrp opened 2 years ago

sebasrp commented 2 years ago

Is your feature request related to a problem? Please describe. I want to have the ability to override default Service Limits (for accounts with increased limits).

Describe the solution you'd like The override should be done through a file I create that specifies the different overrides I want (account, region, service, quota)

Describe alternatives you've considered None - sometimes what is displayed in service quotas and/or the service's API is not synced with the manual update they have created in our account

Additional context NA

sebasrp commented 2 years ago

Support in Service Checker. https://github.com/sebasrp/awslimitchecker/commit/0db6e2dbb08dc388f4a30583f26a264161ebc98d

remains adding it into awslimichecker and the cli itself (support to override through cli argument and/or json file)

sebasrp commented 2 years ago

desired json format for input of quota overrides:

{
    "kinesis": {
        "Shards per Region": 123,
        "On-demand Data Streams per account": 456
    }
}
sebasrp commented 2 years ago

added support for json input in CLI: https://github.com/sebasrp/awslimitchecker/commit/00606a54c502fc85a7b3f75bf2b1aff81e98cc66

sebasrp commented 2 years ago

Last remaining thing: add support for cli argument to add this manually (not through json).