Created
April 22, 2025 15:10
-
-
Save aal80/cb6537d2c8024495579aae5c0111ed4b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
resource "aws_lambda_function" "peppa_mcp_server" { | |
function_name = "peppa_mcp_server" | |
filename = data.archive_file.peppa_mcp_server.output_path | |
source_code_hash = data.archive_file.peppa_mcp_server.output_base64sha256 | |
role = aws_iam_role.peppa_mcp_server.arn | |
handler = "index.handler" | |
runtime = "nodejs22.x" | |
memory_size = 512 | |
timeout = 30 | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment