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
| using System; | |
| using System.IO; | |
| using System.Text; | |
| using Newtonsoft.Json; | |
| using Amazon.Lambda.Core; | |
| using Amazon.Lambda.DynamoDBEvents; | |
| using Amazon.DynamoDBv2.Model; | |
| using Microsoft.Azure.ServiceBus; |
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
| using System; | |
| using System.IO; | |
| using System.Text; | |
| using Newtonsoft.Json; | |
| using Amazon.Lambda.Core; | |
| using Amazon.Lambda.DynamoDBEvents; | |
| using Amazon.DynamoDBv2.Model; | |
| using Microsoft.Azure.ServiceBus; |
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
| // DONE | |
| resource "aws_lambda_function" "lambda_tf" { | |
| function_name = "FunctionHandler" | |
| role = "${aws_iam_role.iam_for_lambda.arn}" | |
| handler = "Terra5::Terra5.Function::FunctionHandler" | |
| runtime = "dotnetcore3.1" | |
| # The filebase64sha256() function is available in Terraform 0.11.12 and later | |
| # For Terraform 0.11.11 and earlier, use the base64sha256() function and the file() function: |
OlderNewer