Skip to content

Commit

Permalink
update docs for previous few changes, including IAM permissions addit…
Browse files Browse the repository at this point in the history
…ions
  • Loading branch information
jantman committed Nov 29, 2015
1 parent 18d96d3 commit 2776699
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 18 deletions.
20 changes: 8 additions & 12 deletions docs/source/cli_usage.rst
Original file line number Diff line number Diff line change
Expand Up @@ -138,14 +138,12 @@ and limits followed by ``(API)`` have been obtained from the service's API.
.. code-block:: console
(venv)$ awslimitchecker -l
AutoScaling/Auto Scaling groups 500 (TA)
AutoScaling/Launch configurations 500 (TA)
AutoScaling/Auto Scaling groups 500 (API)
AutoScaling/Launch configurations 500 (API)
EBS/Active snapshots 13000 (TA)
EBS/Active volumes 5000 (TA)
EBS/General Purpose (SSD) volume storage (GiB) 163840 (TA)
(...)
EC2/Elastic IP addresses (EIPs) 40 (API)
(...)
VPC/Rules per network ACL 20
VPC/Subnets per VPC 200
VPC/VPCs 20 (TA)
Expand All @@ -161,14 +159,12 @@ from Trusted Advisor for all commands.
.. code-block:: console
(venv)$ awslimitchecker -l --skip-ta
AutoScaling/Auto Scaling groups 20
AutoScaling/Launch configurations 100
AutoScaling/Auto Scaling groups 500 (API)
AutoScaling/Launch configurations 500 (API)
EBS/Active snapshots 10000
EBS/Active volumes 5000
EBS/General Purpose (SSD) volume storage (GiB) 20480
(...)
EC2/Elastic IP addresses (EIPs) 40 (API)
(...)
VPC/Rules per network ACL 20
VPC/Subnets per VPC 200
VPC/VPCs 5
Expand All @@ -191,12 +187,12 @@ using their IDs).
(venv)$ awslimitchecker -u
AutoScaling/Auto Scaling groups 349
AutoScaling/Launch configurations 388
EBS/Active snapshots 11523
EBS/Active snapshots 11536
EBS/Active volumes 2614
EBS/General Purpose (SSD) volume storage (GiB) 26726
(...)
VPC/Rules per network ACL max: acl-b1ad1ad5=4 (acl-b1ad1ad5=4, acl-4bd9 (...)
VPC/Subnets per VPC max: vpc-c89074a9=19 (vpc-ae7bc5cb=1, vpc-1e5 (...)
VPC/Subnets per VPC max: vpc-c89074a9=19 (vpc-1e5e3c7b=1, vpc-ae7 (...)
VPC/VPCs 8
Expand Down Expand Up @@ -260,7 +256,7 @@ threshold only, and another has crossed the critical threshold):
.. code-block:: console
(venv)$ awslimitchecker --no-color
EBS/Active snapshots (limit 13000) WARNING: 11523
EBS/Active snapshots (limit 13000) WARNING: 11536
EC2/Running On-Demand c3.large instances (limit 20) WARNING: 17
EC2/Running On-Demand m3.2xlarge instances (limit 20) CRITICAL: 29
EC2/Running On-Demand m3.medium instances (limit 20) CRITICAL: 25
Expand Down Expand Up @@ -304,7 +300,7 @@ permissions for it to perform all limit checks. This can be viewed with the
"Statement": [
{
"Action": [
"autoscaling:DescribeAutoScalingGroups",
"autoscaling:DescribeAccountLimits",
(...)
}
],
Expand Down
2 changes: 2 additions & 0 deletions docs/source/iam_policy.rst
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,10 @@ permissions required for it to function correctly:
"Statement": [
{
"Action": [
"autoscaling:DescribeAccountLimits",
"autoscaling:DescribeAutoScalingGroups",
"autoscaling:DescribeLaunchConfigurations",
"ec2:DescribeAccountAttributes",
"ec2:DescribeAddresses",
"ec2:DescribeInstances",
"ec2:DescribeInternetGateways",
Expand Down
18 changes: 12 additions & 6 deletions docs/source/limits.rst
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,12 @@ API; this information should be the most accurate, and is used with higher
precedence than anything other than explicit limit overrides:


* AutoScaling

* Auto Scaling groups

* Launch configurations

* EC2

* Elastic IP addresses (EIPs)
Expand All @@ -109,12 +115,12 @@ marked with :sup:`(TA)` are comfirmed as being updated by Trusted Advisor.
AutoScaling
++++++++++++

================================= ===
Limit Default
================================= ===
Auto Scaling groups :sup:`(TA)` 20
Launch configurations :sup:`(TA)` 100
================================= ===
============================================== ===
Limit Default
============================================== ===
Auto Scaling groups :sup:`(TA)` :sup:`(API)` 20
Launch configurations :sup:`(TA)` :sup:`(API)` 100
============================================== ===

EBS
++++
Expand Down

0 comments on commit 2776699

Please sign in to comment.