|
| 1 | +import argparse |
| 2 | +import os |
| 3 | +import subprocess |
| 4 | +import time |
| 5 | + |
| 6 | +import boto3 |
| 7 | +from templates import ( |
| 8 | + get_variable_name, |
| 9 | + terraform_locals_template, |
| 10 | + terraform_main, |
| 11 | + terraform_variable_template, |
| 12 | + terraform_vars, |
| 13 | +) |
| 14 | + |
| 15 | +# Parse command-line arguments |
| 16 | +parser = argparse.ArgumentParser( |
| 17 | + description="Generate a markdown document of all adjustable AWS service quotas." |
| 18 | +) |
| 19 | +parser.add_argument( |
| 20 | + "--region", |
| 21 | + default="us-east-1", |
| 22 | + help="AWS region to query service quotas for. Defaults to us-east-1.", |
| 23 | +) |
| 24 | +parser.add_argument( |
| 25 | + "--outdir", |
| 26 | + default="../../modules/request-quota-increase", |
| 27 | + help='Output directory for the resulting terraform files. Defaults to "../../modules/request-quota-increase".', |
| 28 | +) |
| 29 | +args = parser.parse_args() |
| 30 | + |
| 31 | +# Initialize a boto3 client for Service Quotas in the specified region |
| 32 | +client = boto3.client("service-quotas", region_name=args.region) |
| 33 | + |
| 34 | + |
| 35 | +def list_all_services(): |
| 36 | + """List all AWS services that have quotas.""" |
| 37 | + services = [] |
| 38 | + response = client.list_services() |
| 39 | + services.extend(response["Services"]) |
| 40 | + while "NextToken" in response: |
| 41 | + time.sleep(0.3) # Delay to respect rate limits |
| 42 | + response = client.list_services(NextToken=response["NextToken"]) |
| 43 | + services.extend(response["Services"]) |
| 44 | + return services |
| 45 | + |
| 46 | + |
| 47 | +def list_quotas_for_service(service_code): |
| 48 | + """List the quotas for a given service by its service code.""" |
| 49 | + print(f"Fetching quotas for service {service_code}") |
| 50 | + quotas = [] |
| 51 | + response = client.list_aws_default_service_quotas(ServiceCode=service_code) |
| 52 | + quotas.extend(response["Quotas"]) |
| 53 | + while "NextToken" in response: |
| 54 | + time.sleep(0.3) # Delay to respect rate limits |
| 55 | + response = client.list_aws_default_service_quotas( |
| 56 | + ServiceCode=service_code, NextToken=response["NextToken"] |
| 57 | + ) |
| 58 | + quotas.extend(response["Quotas"]) |
| 59 | + return quotas |
| 60 | + |
| 61 | + |
| 62 | +def generate_terraform(services): |
| 63 | + """ |
| 64 | + Generate Terraform code for the given AWS services. |
| 65 | +
|
| 66 | + This function iterates over the provided services, fetches the quotas for each service, |
| 67 | + and generates Terraform code for each adjustable quota. If a quota with the same variable name |
| 68 | + already exists, it appends the quota code to the quota name to make it unique, and stores the |
| 69 | + duplicate variable in a separate list. |
| 70 | +
|
| 71 | + Parameters: |
| 72 | + services (list): A list of AWS services. Each service is a dictionary that contains the service details. |
| 73 | +
|
| 74 | + Returns: |
| 75 | + tuple: A tuple containing two strings. The first string is the Terraform code for the main.tf file, |
| 76 | + and the second string is the Terraform code for the variables.tf file. |
| 77 | +
|
| 78 | + Prints: |
| 79 | + For each duplicate variable, it prints a message in the format "Duplicate Variable: {variable_name}: {quota_code}". |
| 80 | + """ |
| 81 | + terraform_variables = "" |
| 82 | + terraform_maps = "" |
| 83 | + unique_variables = set() |
| 84 | + duplicate_variables = [] |
| 85 | + for service in services: |
| 86 | + # Adjust this based on your rate limit analysis and AWS documentation |
| 87 | + time.sleep(0.3) |
| 88 | + quotas = list_quotas_for_service(service["ServiceCode"]) |
| 89 | + for quota in quotas: |
| 90 | + if quota["Adjustable"]: |
| 91 | + variable_name = get_variable_name( |
| 92 | + service["ServiceCode"], quota["QuotaName"] |
| 93 | + ) |
| 94 | + if variable_name in unique_variables: |
| 95 | + duplicate_variables.append(f"{variable_name}: {quota['QuotaCode']}") |
| 96 | + quota["QuotaName"] = f"{quota['QuotaName']}_{quota['QuotaCode']}" |
| 97 | + else: |
| 98 | + unique_variables.add(variable_name) |
| 99 | + terraform_variables += terraform_variable_template( |
| 100 | + service["ServiceCode"], quota["QuotaName"], quota["QuotaCode"] |
| 101 | + ) |
| 102 | + terraform_maps += terraform_locals_template( |
| 103 | + service["ServiceCode"], quota["QuotaName"], quota["QuotaCode"] |
| 104 | + ) |
| 105 | + main_tf = terraform_main(terraform_maps) |
| 106 | + vars_tf = terraform_vars(terraform_variables) |
| 107 | + for variable in duplicate_variables: |
| 108 | + print(f"Duplicate Variable: {variable}") |
| 109 | + |
| 110 | + return main_tf, vars_tf |
| 111 | + |
| 112 | + |
| 113 | +# Fetch all services |
| 114 | +services = list_all_services() |
| 115 | + |
| 116 | +# Generate the Terraform code |
| 117 | +tf_main, tf_vars = generate_terraform(services) |
| 118 | + |
| 119 | +# Ensure the output directory exists |
| 120 | +output_dir = args.outdir |
| 121 | +if not os.path.exists(output_dir): |
| 122 | + os.makedirs(output_dir) |
| 123 | + |
| 124 | +# Write the main.tf to the specified output directory |
| 125 | +main_tf_path = os.path.join(output_dir, "main.tf") |
| 126 | +with open(main_tf_path, "w") as file: |
| 127 | + file.write(tf_main) |
| 128 | + |
| 129 | +# Write the variables.tf to the specified output directory |
| 130 | +variables_tf_path = os.path.join(output_dir, "variables.tf") |
| 131 | +with open(variables_tf_path, "w") as file: |
| 132 | + file.write(tf_vars) |
| 133 | + |
| 134 | +# Run terraform fmt on both files |
| 135 | +subprocess.run(["terraform", "fmt", main_tf_path], check=True) |
| 136 | +subprocess.run(["terraform", "fmt", variables_tf_path], check=True) |
| 137 | + |
| 138 | +# Print the success message |
| 139 | +print( |
| 140 | + f"Terraform files have been written to {output_dir} and formatted with terraform fmt" |
| 141 | +) |
0 commit comments