steampipe plugin install aws

Table: aws_servicequotas_default_service_quota - Query AWS Service Quotas using SQL

The AWS Service Quotas allows you to view and manage your quotas for AWS services from a central location. Quotas, also referred to as limits, are the maximum number of specific resources that you can create in your AWS account. Default Service Quota is the default limit set by AWS for a resource within a specific region.

Table Usage Guide

The aws_servicequotas_default_service_quota table in Steampipe provides you with information about the default values of service quotas for AWS services. This table allows you, as a DevOps engineer, to query quota-specific details, including quota names, quota codes, and the default values. You can utilize this table to gather insights on service quotas, such as understanding the default limits for each AWS service, identifying services that might require a quota increase, and more. The schema outlines the various attributes of the service quota for you, including the quota ARN, service name, quota code, quota name, and the default value.

Examples

Basic info

Identify the default service quotas in your AWS environment to understand your current usage and potential scalability. This can help in planning resource utilization and in avoiding service disruptions due to quota limitations.

select
quota_name,
quota_code,
quota_arn,
service_name,
service_code,
value
from
aws_servicequotas_default_service_quota;
select
quota_name,
quota_code,
quota_arn,
service_name,
service_code,
value
from
aws_servicequotas_default_service_quota;

List global default service quotas

Discover the segments that are set as global default service quotas in your AWS services. This can help you gain insights into your resource usage and manage your AWS services more effectively.

select
quota_name,
quota_code,
quota_arn,
service_name,
service_code,
value
from
aws_servicequotas_default_service_quota
where
global_quota;
select
quota_name,
quota_code,
quota_arn,
service_name,
service_code,
value
from
aws_servicequotas_default_service_quota
where
global_quota = 1;

List default service quotas for a specific service

Explore the default service quotas for a specific service to better manage resource usage and avoid hitting limits unexpectedly. This is useful for keeping track of your resource allocation and ensuring your operations run smoothly.

select
quota_name,
quota_code,
quota_arn,
service_name,
service_code,
value
from
aws_servicequotas_default_service_quota
where
service_code = 'athena';
select
quota_name,
quota_code,
quota_arn,
service_name,
service_code,
value
from
aws_servicequotas_default_service_quota
where
service_code = 'athena';

Schema for aws_servicequotas_default_service_quota

NameTypeOperatorsDescription
_ctxjsonbSteampipe context in JSON form.
account_idtext=, !=, ~~, ~~*, !~~, !~~*The AWS Account ID in which the resource is located.
adjustablebooleanIndicates whether the quota value can be increased.
akasjsonbArray of globally unique identifier strings (also known as) for the resource.
error_reasonjsonbThe error code and error reason.
global_quotabooleanIndicates whether the quota is global.
partitiontextThe AWS partition in which the resource is located (aws, aws-cn, or aws-us-gov).
periodjsonbThe period of time for the quota.
quota_arntextThe arn of the service quota.
quota_codetext=The quota code.
quota_nametextThe quota name.
regiontextThe AWS Region in which the resource is located.
service_codetext=The service identifier.
service_nametextThe service name.
sp_connection_nametext=, !=, ~~, ~~*, !~~, !~~*Steampipe connection name.
sp_ctxjsonbSteampipe context in JSON form.
titletextTitle of the resource.
unittextThe unit of measurement.
usage_metricjsonbInformation about the measurement.
valuebigintThe quota value.

Export

This table is available as a standalone Exporter CLI. Steampipe exporters are stand-alone binaries that allow you to extract data using Steampipe plugins without a database.

You can download the tarball for your platform from the Releases page, but it is simplest to install them with the steampipe_export_installer.sh script:

/bin/sh -c "$(curl -fsSL https://steampipe.io/install/export.sh)" -- aws

You can pass the configuration to the command with the --config argument:

steampipe_export_aws --config '<your_config>' aws_servicequotas_default_service_quota