mirror of
https://github.com/projecthorus/sondehub-infra.git
synced 2024-12-19 05:07:55 +00:00
139 lines
4.3 KiB
HCL
139 lines
4.3 KiB
HCL
resource "aws_lambda_function" "upload_telem" {
|
|
function_name = "sonde-api-to-iot-core"
|
|
handler = "sonde_api_to_iot_core.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 = {
|
|
"SNS_TOPIC" = aws_sns_topic.sonde_telem.arn
|
|
}
|
|
}
|
|
}
|
|
|
|
resource "aws_lambda_function" "station" {
|
|
function_name = "station-api-to-iot-core"
|
|
handler = "station_api_to_iot_core.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 = 10
|
|
architectures = ["arm64"]
|
|
environment {
|
|
variables = {
|
|
"ES" = "es.${local.domain_name}"
|
|
}
|
|
}
|
|
tags = {
|
|
Name = "station-api-to-iot-core"
|
|
}
|
|
}
|
|
|
|
resource "aws_lambda_permission" "station" {
|
|
action = "lambda:InvokeFunction"
|
|
function_name = aws_lambda_function.station.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}/*/*/listeners"
|
|
}
|
|
|
|
resource "aws_lambda_permission" "upload_telem" {
|
|
action = "lambda:InvokeFunction"
|
|
function_name = aws_lambda_function.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}/*/*/sondes/telemetry"
|
|
}
|
|
|
|
resource "aws_apigatewayv2_route" "stations" {
|
|
api_id = aws_apigatewayv2_api.main.id
|
|
api_key_required = false
|
|
authorization_type = "NONE"
|
|
route_key = "PUT /listeners"
|
|
target = "integrations/${aws_apigatewayv2_integration.stations.id}"
|
|
}
|
|
|
|
resource "aws_apigatewayv2_route" "upload_telem" {
|
|
api_id = aws_apigatewayv2_api.main.id
|
|
api_key_required = false
|
|
authorization_type = "NONE"
|
|
route_key = "PUT /sondes/telemetry"
|
|
target = "integrations/${aws_apigatewayv2_integration.upload_telem.id}"
|
|
}
|
|
|
|
resource "aws_apigatewayv2_integration" "upload_telem" {
|
|
api_id = aws_apigatewayv2_api.main.id
|
|
connection_type = "INTERNET"
|
|
integration_method = "POST"
|
|
integration_type = "AWS_PROXY"
|
|
integration_uri = aws_lambda_function.upload_telem.arn
|
|
timeout_milliseconds = 30000
|
|
payload_format_version = "2.0"
|
|
}
|
|
|
|
resource "aws_apigatewayv2_integration" "stations" {
|
|
api_id = aws_apigatewayv2_api.main.id
|
|
connection_type = "INTERNET"
|
|
integration_method = "POST"
|
|
integration_type = "AWS_PROXY"
|
|
integration_uri = aws_lambda_function.station.arn
|
|
timeout_milliseconds = 30000
|
|
payload_format_version = "2.0"
|
|
}
|
|
|
|
resource "aws_sns_topic" "sonde_telem" {
|
|
name = "sonde-telem"
|
|
delivery_policy = <<EOF
|
|
{
|
|
"http": {
|
|
"defaultHealthyRetryPolicy": {
|
|
"minDelayTarget": 5,
|
|
"maxDelayTarget": 30,
|
|
"numRetries": 100,
|
|
"numMaxDelayRetries": 0,
|
|
"numNoDelayRetries": 3,
|
|
"numMinDelayRetries": 0,
|
|
"backoffFunction": "linear"
|
|
},
|
|
"disableSubscriptionOverrides": false
|
|
}
|
|
}
|
|
EOF
|
|
}
|
|
|
|
|
|
// SNS to MQTT
|
|
|
|
resource "aws_lambda_function" "sns_to_mqtt" {
|
|
function_name = "sns-to-mqtt"
|
|
handler = "lambda_function.lambda_handler"
|
|
filename = "${path.module}/sns-to-mqtt/Archive.zip" # this should get replaced out when we make a proper build chain
|
|
publish = true
|
|
memory_size = 128
|
|
role = aws_iam_role.basic_lambda_role.arn
|
|
runtime = "python3.9"
|
|
timeout = 3
|
|
architectures = ["arm64"]
|
|
lifecycle {
|
|
ignore_changes = [environment]
|
|
}
|
|
tags = {
|
|
Name = "sns-to-mqtt"
|
|
}
|
|
|
|
}
|
|
|
|
resource "aws_lambda_permission" "sns_to_mqtt" {
|
|
action = "lambda:InvokeFunction"
|
|
function_name = aws_lambda_function.station.arn
|
|
principal = "apigateway.amazonaws.com"
|
|
source_arn = aws_sns_topic.sonde_telem.arn
|
|
} |