You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: codegen/quotas/README.md
+4-1Lines changed: 4 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,10 @@
2
2
3
3
This Python script is used to generate Terraform files for managing AWS service quota requests. It interacts with the AWS Service Quotas API and fetches information about the quotas for different services. The script then generates Terraform code based on this information and writes it to (`main.tf` and `variables.tf`) files.
4
4
5
-
Note that generating the quotas could be time consuming as the script honors the API limits for the used AWS APIs.
5
+
## Gotchas
6
+
7
+
- Generating the quotas could be time consuming as the script honors the API limits for the used AWS APIs.
8
+
- Certain services have duplicate quotas - same description but different code. Those are handled by appending the quota code to the input variable name.
Copy file name to clipboardExpand all lines: modules/request-quota-increase/README.md
+3-2Lines changed: 3 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,8 @@
1
1
# Request AWS Quota Increase
2
2
3
-
This module can be used to request a quota increase for an AWS Resource.
3
+
This module can be used to request a quota increase for AWS Resources. The module is [generated](../../codegen/quotas/) using [AWS Service Quotas API](https://docs.aws.amazon.com/servicequotas/2019-06-24/apireference/Welcome.html), and inputs for each adjustable quota for different services are added to the module.
4
+
5
+
**NOTE:** The service quotas for certain services have duplicate items. Those duplicate quotas have been named differently in the [input variables](./variables.tf) by appending the service quota code at the end of the variable name, e.g. `networkmonitor_number_of_probes_per_monitor` and `networkmonitor_number_of_probes_per_monitor_l_f192a8d6`.
4
6
5
7
## Features
6
8
@@ -11,7 +13,6 @@ This module can be used to request a quota increase for an AWS Resource.
11
13
### Core Concepts
12
14
13
15
-[AWS Service Quotas Documentation](https://docs.aws.amazon.com/servicequotas/?id=docs_gateway)
14
-
-[Generated AWS Service Quotas](../../docs/quotas.md)
15
16
-[AWS Service Quotas Generator](../../codegen/quotas/)
0 commit comments