diff --git a/terraform/modules/apigw/main.tf b/terraform/modules/apigw/main.tf index 3a6bc13..ed2906a 100644 --- a/terraform/modules/apigw/main.tf +++ b/terraform/modules/apigw/main.tf @@ -9,11 +9,18 @@ resource "aws_api_gateway_rest_api" "this" { } resource "aws_api_gateway_resource" "this" { - path_part = "resource" + path_part = "products" parent_id = aws_api_gateway_rest_api.this.root_resource_id rest_api_id = aws_api_gateway_rest_api.this.id } +resource "aws_api_gateway_method" "stock_get" { + rest_api_id = aws_api_gateway_rest_api.this.id + resource_id = aws_api_gateway_resource.this.id + http_method = "GET" + authorization = "NONE" +} + resource "aws_api_gateway_method" "this" { rest_api_id = aws_api_gateway_rest_api.this.id resource_id = aws_api_gateway_resource.this.id @@ -28,6 +35,15 @@ resource "aws_api_gateway_method" "options" { authorization = "NONE" } +resource "aws_api_gateway_integration" "stock_get" { + rest_api_id = aws_api_gateway_rest_api.this.id + resource_id = aws_api_gateway_resource.this.id + http_method = aws_api_gateway_method.stock_get.http_method + integration_http_method = "POST" + type = "AWS_PROXY" + uri = var.lambda[1].lambda_function_arn +} + resource "aws_api_gateway_integration" "this" { rest_api_id = aws_api_gateway_rest_api.this.id resource_id = aws_api_gateway_resource.this.id @@ -67,7 +83,6 @@ resource "aws_api_gateway_integration" "options" { rest_api_id = aws_api_gateway_rest_api.this.id resource_id = aws_api_gateway_resource.this.id http_method = aws_api_gateway_method.options.http_method - # integration_http_method = "OPTIONS" type = "MOCK" request_parameters = {} @@ -90,8 +105,10 @@ resource "aws_api_gateway_deployment" "this" { aws_api_gateway_resource.this.id, aws_api_gateway_method.this.id, aws_api_gateway_method.options.id, + aws_api_gateway_method.stock_get.id, aws_api_gateway_integration.this.id, aws_api_gateway_integration.options.id, + aws_api_gateway_integration.stock_get.id, ])) } @@ -102,8 +119,16 @@ resource "aws_api_gateway_deployment" "this" { depends_on = [ aws_api_gateway_integration.options, aws_api_gateway_integration.this, + aws_api_gateway_integration.stock_get, aws_api_gateway_method.options, - aws_api_gateway_method.this + aws_api_gateway_method.this, + aws_api_gateway_method.stock_get, + aws_api_gateway_method_response.options200, + aws_api_gateway_method_response.http200, + aws_api_gateway_method_response.stock200, + aws_api_gateway_integration_response.options200, + aws_api_gateway_integration_response.http200, + aws_api_gateway_integration_response.stock200, ] } @@ -120,12 +145,25 @@ resource "aws_api_gateway_method_response" "http200" { status_code = 200 response_parameters = { - "method.response.header.Access-Control-Allow-Origin" = "false" + "method.response.header.Access-Control-Allow-Origin" = "true" } depends_on = [aws_api_gateway_method.this] } +resource "aws_api_gateway_method_response" "stock200" { + rest_api_id = aws_api_gateway_rest_api.this.id + resource_id = aws_api_gateway_resource.this.id + http_method = aws_api_gateway_method.stock_get.http_method + status_code = 200 + + response_parameters = { + "method.response.header.Access-Control-Allow-Origin" = "true" + } + + depends_on = [aws_api_gateway_method.stock_get] +} + resource "aws_api_gateway_method_response" "options200" { rest_api_id = aws_api_gateway_rest_api.this.id resource_id = aws_api_gateway_resource.this.id @@ -136,9 +174,9 @@ resource "aws_api_gateway_method_response" "options200" { } response_parameters = { - "method.response.header.Access-Control-Allow-Headers" = false, - "method.response.header.Access-Control-Allow-Methods" = false, - "method.response.header.Access-Control-Allow-Origin" = false + "method.response.header.Access-Control-Allow-Headers" = true, + "method.response.header.Access-Control-Allow-Methods" = true, + "method.response.header.Access-Control-Allow-Origin" = true } depends_on = [aws_api_gateway_method.options] @@ -157,6 +195,19 @@ resource "aws_api_gateway_integration_response" "http200" { depends_on = [aws_api_gateway_method_response.http200] } +resource "aws_api_gateway_integration_response" "stock200" { + rest_api_id = aws_api_gateway_rest_api.this.id + resource_id = aws_api_gateway_resource.this.id + http_method = aws_api_gateway_method.stock_get.http_method + status_code = aws_api_gateway_method_response.stock200.status_code + selection_pattern = "^2[0-9][0-9]" + response_parameters = { + "method.response.header.Access-Control-Allow-Origin" = "'*'" + } + + depends_on = [aws_api_gateway_method_response.stock200] +} + resource "aws_api_gateway_integration_response" "options200" { rest_api_id = aws_api_gateway_rest_api.this.id resource_id = aws_api_gateway_resource.this.id @@ -164,9 +215,17 @@ resource "aws_api_gateway_integration_response" "options200" { status_code = aws_api_gateway_method_response.http200.status_code response_parameters = { "method.response.header.Access-Control-Allow-Headers" = "'Content-Type,X-Amz-Date,Authorization,X-Api-Key,X-Amz-Security-Token'", - "method.response.header.Access-Control-Allow-Methods" = "'OPTIONS,POST'", + "method.response.header.Access-Control-Allow-Methods" = "'GET,OPTIONS,POST'", "method.response.header.Access-Control-Allow-Origin" = "'*'" } depends_on = [aws_api_gateway_method_response.options200] } + +resource "aws_lambda_permission" "this" { + statement_id = "AllowExecutionFromAPIGateway" + action = "lambda:InvokeFunction" + function_name = var.lambda[1].lambda_function_name + principal = "apigateway.amazonaws.com" + source_arn = "${var.lambda[1].lambda_source_arn}:${aws_api_gateway_rest_api.this.id}/*/${aws_api_gateway_method.stock_get.http_method}${aws_api_gateway_resource.this.path}" +} diff --git a/terraform/modules/apigw/variables.tf b/terraform/modules/apigw/variables.tf index 300157c..b4b9cc0 100644 --- a/terraform/modules/apigw/variables.tf +++ b/terraform/modules/apigw/variables.tf @@ -28,16 +28,6 @@ variable "role_arn" { type = string } -variable "lambda_function_arn" { - description = "The ARN of the Lambda function." - type = string -} - -variable "lambda_source_arn" { - type = string -} - -variable "lambda_function_name" { - description = "Name of the lambda function" - type = string +variable "lambda" { + type = list(any) } diff --git a/terraform/organization/apigw.tf b/terraform/organization/apigw.tf index 49204f1..f51485f 100644 --- a/terraform/organization/apigw.tf +++ b/terraform/organization/apigw.tf @@ -11,11 +11,20 @@ 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 = [ + { + lambda_function_arn = module.lambda["lambdaSQS"].lambda_function_arn + lambda_function_name = module.lambda["lambdaSQS"].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["lambdaDB"].lambda_function_arn + lambda_function_name = module.lambda["lambdaDB"].lambda_function_name + lambda_source_arn = "arn:aws:execute-api:${data.aws_region.current.name}:${data.aws_caller_identity.current.account_id}" + } + ] + role_arn = "arn:aws:iam::${data.aws_caller_identity.current.account_id}:role/LabRole" - # sqs_arn = "arn:aws:sqs:${data.aws_region.current.name}:${data.aws_caller_identity.current.account_id}:AWS-SQS-g3" sqs_arn = "arn:aws:apigateway:${data.aws_region.current.name}:sqs:path/AWS-SQS-g3" tags = { diff --git a/terraform/organization/datasources.tf b/terraform/organization/datasources.tf index ead099e..60cfc70 100644 --- a/terraform/organization/datasources.tf +++ b/terraform/organization/datasources.tf @@ -20,11 +20,16 @@ data "template_file" "userdata" { data "aws_iam_policy_document" "this" { statement { effect = "Allow" - actions = ["dynamodb:PutItem"] + actions = [ + "dynamodb:PutItem", + "dynamodb:Scan", + "dynamodb:GetItem", + "dynamodb:UpdateItem" + ] principals { type = "AWS" identifiers = ["*"] } - resources = ["arn:aws:dynamodb:us-east-1:478157316333:table/AWSDynamoDB-g3"] + resources = ["arn:aws:dynamodb:${data.aws_region.current.name}:${data.aws_caller_identity.current.account_id}:table/AWSDynamoDB-g3"] } } diff --git a/terraform/organization/html/index.html b/terraform/organization/html/index.html index d64fc05..6eed00e 100644 --- a/terraform/organization/html/index.html +++ b/terraform/organization/html/index.html @@ -1,35 +1,39 @@ -
-