# aws-service-quota-exporter **Repository Path**: lpwm/aws-service-quota-exporter ## Basic Information - **Project Name**: aws-service-quota-exporter - **Description**: Export all applied AWS Service Quotas to xlsx file. - **Primary Language**: Python - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2025-01-10 - **Last Updated**: 2025-01-10 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Description Export all applied AWS Service Quotas to xlsx file. # Requirements Ensure that you have AWS-CLI installed and configured, `~/.aws/credentials` will be used for authentication. [Installing or updating to the latest version of the AWS CLI](https://docs.aws.amazon.com/cli/latest/userguide/getting-started-install.html) ```bash # Donwload and install AWS-CLI curl "https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip" -o "awscliv2.zip" unzip awscliv2.zip sudo ./aws/install # Configure with AK/SK for the first time aws configure ``` Install the python dependencies. ``` pip install -r requirements.txt ``` # Usage Just run the `main.py` ```bash python3 main.py ```