diff --git a/terraform/modules/06.api-gateway/main.tf b/terraform/modules/06.api-gateway/main.tf index b129284..e980427 100644 --- a/terraform/modules/06.api-gateway/main.tf +++ b/terraform/modules/06.api-gateway/main.tf @@ -16,6 +16,14 @@ locals { lambda_integration = true cors_enabled = true } + # Endpoint para criação em lote de certificados + "create-batch" = { + method = "POST" + authorization = "NONE" + api_key_required = true # Exige API Key para operações em lote + lambda_integration = true + cors_enabled = true + } # Exemplo de como adicionar novos endpoints facilmente: # "list" = { # method = "GET"