mirror of
https://github.com/projecthorus/sondehub-infra.git
synced 2024-12-18 20:57:56 +00:00
Scaffholding for ttn
This commit is contained in:
parent
fbf63ad578
commit
6153931c7a
6
.gitignore
vendored
Normal file
6
.gitignore
vendored
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
build
|
||||||
|
.DS_Store
|
||||||
|
swagger.md
|
||||||
|
__pycache__
|
||||||
|
.terraform
|
||||||
|
.vscode
|
@ -1,44 +0,0 @@
|
|||||||
|
|
||||||
resource "aws_lambda_function" "ham_helium_upload_telem" {
|
|
||||||
function_name = "ham-helium-put-api"
|
|
||||||
handler = "helium.lambda_handler"
|
|
||||||
s3_bucket = aws_s3_bucket_object.lambda.bucket
|
|
||||||
s3_key = aws_s3_bucket_object.lambda.key
|
|
||||||
source_code_hash = data.archive_file.lambda.output_base64sha256
|
|
||||||
publish = true
|
|
||||||
memory_size = 128
|
|
||||||
role = aws_iam_role.basic_lambda_role.arn
|
|
||||||
runtime = "python3.9"
|
|
||||||
timeout = 30
|
|
||||||
architectures = ["arm64"]
|
|
||||||
environment {
|
|
||||||
variables = {
|
|
||||||
"HAM_SNS_TOPIC" = aws_sns_topic.ham_telem.arn
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
resource "aws_lambda_permission" "ham_helium_upload_telem" {
|
|
||||||
action = "lambda:InvokeFunction"
|
|
||||||
function_name = aws_lambda_function.ham_helium_upload_telem.arn
|
|
||||||
principal = "apigateway.amazonaws.com"
|
|
||||||
source_arn = "arn:aws:execute-api:us-east-1:${data.aws_caller_identity.current.account_id}:${aws_apigatewayv2_api.main.id}/*/*/helium"
|
|
||||||
}
|
|
||||||
|
|
||||||
resource "aws_apigatewayv2_route" "ham_helium_upload_telem" {
|
|
||||||
api_id = aws_apigatewayv2_api.main.id
|
|
||||||
api_key_required = false
|
|
||||||
authorization_type = "NONE"
|
|
||||||
route_key = "POST /helium"
|
|
||||||
target = "integrations/${aws_apigatewayv2_integration.ham_helium_upload_telem.id}"
|
|
||||||
}
|
|
||||||
|
|
||||||
resource "aws_apigatewayv2_integration" "ham_helium_upload_telem" {
|
|
||||||
api_id = aws_apigatewayv2_api.main.id
|
|
||||||
connection_type = "INTERNET"
|
|
||||||
integration_method = "POST"
|
|
||||||
integration_type = "AWS_PROXY"
|
|
||||||
integration_uri = aws_lambda_function.ham_helium_upload_telem.arn
|
|
||||||
timeout_milliseconds = 30000
|
|
||||||
payload_format_version = "2.0"
|
|
||||||
}
|
|
90
ham_ttn_helium.tf
Normal file
90
ham_ttn_helium.tf
Normal file
@ -0,0 +1,90 @@
|
|||||||
|
|
||||||
|
resource "aws_lambda_function" "ham_helium_upload_telem" {
|
||||||
|
function_name = "ham-helium-put-api"
|
||||||
|
handler = "ttn_helium.lambda_handler_helium"
|
||||||
|
s3_bucket = aws_s3_bucket_object.lambda.bucket
|
||||||
|
s3_key = aws_s3_bucket_object.lambda.key
|
||||||
|
source_code_hash = data.archive_file.lambda.output_base64sha256
|
||||||
|
publish = true
|
||||||
|
memory_size = 128
|
||||||
|
role = aws_iam_role.basic_lambda_role.arn
|
||||||
|
runtime = "python3.9"
|
||||||
|
timeout = 30
|
||||||
|
architectures = ["arm64"]
|
||||||
|
environment {
|
||||||
|
variables = {
|
||||||
|
"HAM_SNS_TOPIC" = aws_sns_topic.ham_telem.arn
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
resource "aws_lambda_permission" "ham_helium_upload_telem" {
|
||||||
|
action = "lambda:InvokeFunction"
|
||||||
|
function_name = aws_lambda_function.ham_helium_upload_telem.arn
|
||||||
|
principal = "apigateway.amazonaws.com"
|
||||||
|
source_arn = "arn:aws:execute-api:us-east-1:${data.aws_caller_identity.current.account_id}:${aws_apigatewayv2_api.main.id}/*/*/helium"
|
||||||
|
}
|
||||||
|
|
||||||
|
resource "aws_apigatewayv2_route" "ham_helium_upload_telem" {
|
||||||
|
api_id = aws_apigatewayv2_api.main.id
|
||||||
|
api_key_required = false
|
||||||
|
authorization_type = "NONE"
|
||||||
|
route_key = "POST /helium"
|
||||||
|
target = "integrations/${aws_apigatewayv2_integration.ham_helium_upload_telem.id}"
|
||||||
|
}
|
||||||
|
|
||||||
|
resource "aws_apigatewayv2_integration" "ham_helium_upload_telem" {
|
||||||
|
api_id = aws_apigatewayv2_api.main.id
|
||||||
|
connection_type = "INTERNET"
|
||||||
|
integration_method = "POST"
|
||||||
|
integration_type = "AWS_PROXY"
|
||||||
|
integration_uri = aws_lambda_function.ham_helium_upload_telem.arn
|
||||||
|
timeout_milliseconds = 30000
|
||||||
|
payload_format_version = "2.0"
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
resource "aws_lambda_function" "ham_ttn_upload_telem" {
|
||||||
|
function_name = "ham-ttn-put-api"
|
||||||
|
handler = "ttn_helium.lambda_handler_ttn"
|
||||||
|
s3_bucket = aws_s3_bucket_object.lambda.bucket
|
||||||
|
s3_key = aws_s3_bucket_object.lambda.key
|
||||||
|
source_code_hash = data.archive_file.lambda.output_base64sha256
|
||||||
|
publish = true
|
||||||
|
memory_size = 128
|
||||||
|
role = aws_iam_role.basic_lambda_role.arn
|
||||||
|
runtime = "python3.9"
|
||||||
|
timeout = 30
|
||||||
|
architectures = ["arm64"]
|
||||||
|
environment {
|
||||||
|
variables = {
|
||||||
|
"HAM_SNS_TOPIC" = aws_sns_topic.ham_telem.arn
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
resource "aws_lambda_permission" "ham_ttn_upload_telem" {
|
||||||
|
action = "lambda:InvokeFunction"
|
||||||
|
function_name = aws_lambda_function.ham_ttn_upload_telem.arn
|
||||||
|
principal = "apigateway.amazonaws.com"
|
||||||
|
source_arn = "arn:aws:execute-api:us-east-1:${data.aws_caller_identity.current.account_id}:${aws_apigatewayv2_api.main.id}/*/*/ttn"
|
||||||
|
}
|
||||||
|
|
||||||
|
resource "aws_apigatewayv2_route" "ham_ttn_upload_telem" {
|
||||||
|
api_id = aws_apigatewayv2_api.main.id
|
||||||
|
api_key_required = false
|
||||||
|
authorization_type = "NONE"
|
||||||
|
route_key = "POST /ttn"
|
||||||
|
target = "integrations/${aws_apigatewayv2_integration.ham_ttn_upload_telem.id}"
|
||||||
|
}
|
||||||
|
|
||||||
|
resource "aws_apigatewayv2_integration" "ham_ttn_upload_telem" {
|
||||||
|
api_id = aws_apigatewayv2_api.main.id
|
||||||
|
connection_type = "INTERNET"
|
||||||
|
integration_method = "POST"
|
||||||
|
integration_type = "AWS_PROXY"
|
||||||
|
integration_uri = aws_lambda_function.ham_ttn_upload_telem.arn
|
||||||
|
timeout_milliseconds = 30000
|
||||||
|
payload_format_version = "2.0"
|
||||||
|
}
|
@ -182,3 +182,7 @@ def lambda_handler(event, context):
|
|||||||
else:
|
else:
|
||||||
return {"statusCode": 200, "body": "^v^ telm logged"}
|
return {"statusCode": 200, "body": "^v^ telm logged"}
|
||||||
|
|
||||||
|
def lambda_handler_helium(event, context):
|
||||||
|
return lambda_handler(event, context)
|
||||||
|
def lambda_handler_ttn(event, context):
|
||||||
|
return lambda_handler(event, context)
|
@ -62,4 +62,4 @@ payload = {
|
|||||||
"body": bbody,
|
"body": bbody,
|
||||||
"isBase64Encoded": True,
|
"isBase64Encoded": True,
|
||||||
}
|
}
|
||||||
print(lambda_handler(payload, {}))
|
print(lambda_handler_helium(payload, {}))
|
Loading…
Reference in New Issue
Block a user