diff --git a/terraform/modules/apigw/main.tf b/terraform/modules/apigw/main.tf index d7a6618..cce483e 100644 --- a/terraform/modules/apigw/main.tf +++ b/terraform/modules/apigw/main.tf @@ -17,7 +17,7 @@ resource "aws_api_gateway_resource" "this" { resource "aws_api_gateway_method" "this" { rest_api_id = aws_api_gateway_rest_api.this.id resource_id = aws_api_gateway_resource.this.id - http_method = "GET" + http_method = "POST" authorization = "NONE" } @@ -26,9 +26,32 @@ resource "aws_api_gateway_integration" "this" { resource_id = aws_api_gateway_resource.this.id http_method = aws_api_gateway_method.this.http_method integration_http_method = "POST" - type = "AWS_PROXY" - # uri = var.lambda_function_arn - uri = var.sqs_arn + type = "AWS" + credentials = var.role_arn + uri = var.sqs_arn + + request_parameters = { + "integration.request.header.Content-Type" = "'application/x-www-form-urlencoded'" + } + + request_templates = { + "application/json" = < " + str(query) ) + + client = boto3.resource('dynamodb', region_name="us-east-1") + table = client.Table("AWSDynamoDB-g3") + + table.put_item(Item={ "id": { "N": "1" }, "stock": { "N": "2212" }, - }, - TableName='AWSDynamoDB-g3') + }) - print ("In lambda handler") + resp = { + "statusCode": 200, + "headers": { + "Access-Control-Allow-Origin": "*", + }, + "body": "El lab ha sido finalizado correctamente" + } - resp = { - "statusCode": 200, - "headers": { - "Access-Control-Allow-Origin": "*", - }, - "body": "Se cargó el elemento correctamente" - } - - return resp + return resp \ No newline at end of file