[WIP] Fix bugs and start implementing business logic

Co-authored-by: Ezequiel Bellver <ebellver@itba.edu.ar>
This commit is contained in:
Santiago Lo Coco 2022-10-25 14:50:47 -03:00
parent 74f69284ad
commit 21b2b019a1
7 changed files with 42 additions and 19 deletions

View File

@ -17,7 +17,7 @@ resource "aws_api_gateway_resource" "this" {
resource "aws_api_gateway_method" "this" { resource "aws_api_gateway_method" "this" {
rest_api_id = aws_api_gateway_rest_api.this.id rest_api_id = aws_api_gateway_rest_api.this.id
resource_id = aws_api_gateway_resource.this.id resource_id = aws_api_gateway_resource.this.id
http_method = "ANY" http_method = "GET"
authorization = "NONE" authorization = "NONE"
} }
@ -25,9 +25,10 @@ resource "aws_api_gateway_integration" "this" {
rest_api_id = aws_api_gateway_rest_api.this.id rest_api_id = aws_api_gateway_rest_api.this.id
resource_id = aws_api_gateway_resource.this.id resource_id = aws_api_gateway_resource.this.id
http_method = aws_api_gateway_method.this.http_method http_method = aws_api_gateway_method.this.http_method
integration_http_method = "ANY" integration_http_method = "POST"
type = "AWS_PROXY" type = "AWS_PROXY"
uri = var.lambda_function_arn # uri = var.lambda_function_arn
uri = var.sqs_arn
} }
resource "aws_api_gateway_deployment" "this" { resource "aws_api_gateway_deployment" "this" {

View File

@ -11,9 +11,9 @@ module "apigw" {
name = "AWSAPIGateway-g3" name = "AWSAPIGateway-g3"
description = "..." description = "..."
lambda_function_arn = module.lambda["lambda"].lambda_function_arn # lambda_function_arn = module.lambda["lambda"].lambda_function_arn
lambda_function_name = module.lambda["lambda"].lambda_function_name # lambda_function_name = module.lambda["lambda"].lambda_function_name
lambda_source_arn = "arn:aws:execute-api:${data.aws_region.current.name}:${data.aws_caller_identity.current.account_id}" # lambda_source_arn = "arn:aws:execute-api:${data.aws_region.current.name}:${data.aws_caller_identity.current.account_id}"
tags = { tags = {
name = "Api Gateway" name = "Api Gateway"

View File

@ -16,6 +16,7 @@ module "lambda" {
package = each.value.package package = each.value.package
iam_role = each.value.role iam_role = each.value.role
vpc_subnet_ids = module.vpc.private_subnets # vpc_subnet_ids = module.vpc.private_subnets
vpc_subnet_ids = module.vpc.public_subnets
vpc_security_group_ids = [module.vpc.default_security_group_id] vpc_security_group_ids = [module.vpc.default_security_group_id]
} }

View File

@ -26,6 +26,10 @@ locals {
www-website = { www-website = {
bucket_name = "www.${local.bucket_name}" bucket_name = "www.${local.bucket_name}"
} }
logs = {
bucket_name = "${local.bucket_name}-logs"
}
} }
lambdas = { lambdas = {

View File

@ -6,8 +6,9 @@ module "s3" {
aws = aws.aws aws = aws.aws
} }
bucket_name = each.value.bucket_name bucket_name = each.value.bucket_name
objects = try(each.value.objects, {}) objects = try(each.value.objects, {})
bucket_acl = "public-read"
} }
resource "aws_s3_object" "this" { resource "aws_s3_object" "this" {

View File

@ -1,12 +1,28 @@
def main (event, context): import boto3
print ("In lambda handler") import json
resp = {
"statusCode": 200,
"headers": {
"Access-Control-Allow-Origin": "*",
},
"body": "El lab ha sido finalizado correctamente"
}
return resp def main(event, context):
client = boto3.client('dynamodb')
client.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": "Se cargó el elemento correctamente"
}
return resp