[WIP] Fix bugs and start implementing business logic
Co-authored-by: Ezequiel Bellver <ebellver@itba.edu.ar>
This commit is contained in:
parent
74f69284ad
commit
21b2b019a1
|
@ -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 = "ANY"
|
||||
http_method = "GET"
|
||||
authorization = "NONE"
|
||||
}
|
||||
|
||||
|
@ -25,9 +25,10 @@ resource "aws_api_gateway_integration" "this" {
|
|||
rest_api_id = aws_api_gateway_rest_api.this.id
|
||||
resource_id = aws_api_gateway_resource.this.id
|
||||
http_method = aws_api_gateway_method.this.http_method
|
||||
integration_http_method = "ANY"
|
||||
integration_http_method = "POST"
|
||||
type = "AWS_PROXY"
|
||||
uri = var.lambda_function_arn
|
||||
# uri = var.lambda_function_arn
|
||||
uri = var.sqs_arn
|
||||
}
|
||||
|
||||
resource "aws_api_gateway_deployment" "this" {
|
||||
|
|
|
@ -11,9 +11,9 @@ module "apigw" {
|
|||
|
||||
name = "AWSAPIGateway-g3"
|
||||
description = "..."
|
||||
lambda_function_arn = module.lambda["lambda"].lambda_function_arn
|
||||
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_function_arn = module.lambda["lambda"].lambda_function_arn
|
||||
# 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}"
|
||||
|
||||
tags = {
|
||||
name = "Api Gateway"
|
||||
|
|
|
@ -16,6 +16,7 @@ module "lambda" {
|
|||
package = each.value.package
|
||||
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]
|
||||
}
|
||||
|
|
|
@ -26,6 +26,10 @@ locals {
|
|||
www-website = {
|
||||
bucket_name = "www.${local.bucket_name}"
|
||||
}
|
||||
|
||||
logs = {
|
||||
bucket_name = "${local.bucket_name}-logs"
|
||||
}
|
||||
}
|
||||
|
||||
lambdas = {
|
||||
|
|
|
@ -8,6 +8,7 @@ module "s3" {
|
|||
|
||||
bucket_name = each.value.bucket_name
|
||||
objects = try(each.value.objects, {})
|
||||
bucket_acl = "public-read"
|
||||
}
|
||||
|
||||
resource "aws_s3_object" "this" {
|
||||
|
|
Binary file not shown.
|
@ -1,4 +1,20 @@
|
|||
def main (event, context):
|
||||
import boto3
|
||||
import json
|
||||
|
||||
|
||||
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 = {
|
||||
|
@ -6,7 +22,7 @@ def main (event, context):
|
|||
"headers": {
|
||||
"Access-Control-Allow-Origin": "*",
|
||||
},
|
||||
"body": "El lab ha sido finalizado correctamente"
|
||||
"body": "Se cargó el elemento correctamente"
|
||||
}
|
||||
|
||||
return resp
|
Loading…
Reference in New Issue