account_attributes
Creates, updates, deletes, gets or lists an account_attributes resource.
Overview
| Name | account_attributes |
| Type | Resource |
| Id | aws.elasticbeanstalk.account_attributes |
Fields
The following fields are returned by SELECT queries:
- describe_account_attributes
| Name | Datatype | Description |
|---|---|---|
application_quota | string | The quota for applications in the AWS account. |
application_version_quota | string | The quota for application versions in the AWS account. |
configuration_template_quota | string | The quota for configuration templates in the AWS account. |
custom_platform_quota | string | The quota for custom platforms in the AWS account. |
environment_quota | string | The quota for environments in the AWS account. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
describe_account_attributes | select | region | Returns attributes related to AWS Elastic Beanstalk that are associated with the calling AWS account. The result currently has one set of attributes—resource quotas. |
Parameters
Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.
| Name | Datatype | Description |
|---|---|---|
region | string | AWS region (default: us-east-1) |
SELECT examples
- describe_account_attributes
Returns attributes related to AWS Elastic Beanstalk that are associated with the calling AWS account. The result currently has one set of attributes—resource quotas.
SELECT
application_quota,
application_version_quota,
configuration_template_quota,
custom_platform_quota,
environment_quota
FROM aws.elasticbeanstalk.account_attributes
WHERE region = '{{ region }}' -- required
;