Fix more bugs
Co-authored-by: Ezequiel Bellver <ebellver@itba.edu.ar>
This commit is contained in:
parent
3c6229477d
commit
3f6b1504a2
|
@ -63,4 +63,5 @@ terraform.tfstate*
|
||||||
ses/
|
ses/
|
||||||
ses.tf
|
ses.tf
|
||||||
backup/
|
backup/
|
||||||
backup.tf
|
backup.tf
|
||||||
|
.vscode
|
||||||
|
|
|
@ -47,6 +47,10 @@ resource "aws_cognito_user_pool" "this" {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
lambda_config {
|
||||||
|
pre_sign_up = var.lambda_pre_sign_up
|
||||||
|
}
|
||||||
|
|
||||||
username_configuration {
|
username_configuration {
|
||||||
case_sensitive = var.enable_username_case_sensitivity
|
case_sensitive = var.enable_username_case_sensitivity
|
||||||
}
|
}
|
||||||
|
@ -74,8 +78,6 @@ resource "aws_cognito_user_pool" "this" {
|
||||||
email_configuration {
|
email_configuration {
|
||||||
email_sending_account = "COGNITO_DEFAULT"
|
email_sending_account = "COGNITO_DEFAULT"
|
||||||
}
|
}
|
||||||
|
|
||||||
# auto_verified_attributes = ["email"]
|
|
||||||
}
|
}
|
||||||
|
|
||||||
resource "aws_cognito_user_pool_client" "this" {
|
resource "aws_cognito_user_pool_client" "this" {
|
||||||
|
@ -88,16 +90,16 @@ resource "aws_cognito_user_pool_client" "this" {
|
||||||
allowed_oauth_flows = ["code"]
|
allowed_oauth_flows = ["code"]
|
||||||
allowed_oauth_scopes = ["email", "openid", "phone"]
|
allowed_oauth_scopes = ["email", "openid", "phone"]
|
||||||
supported_identity_providers = ["COGNITO"]
|
supported_identity_providers = ["COGNITO"]
|
||||||
id_token_validity = "60"
|
id_token_validity = "1"
|
||||||
access_token_validity = "60"
|
access_token_validity = "1"
|
||||||
explicit_auth_flows = ["ALLOW_CUSTOM_AUTH", "ALLOW_REFRESH_TOKEN_AUTH", "ALLOW_USER_SRP_AUTH"]
|
explicit_auth_flows = ["ALLOW_CUSTOM_AUTH", "ALLOW_REFRESH_TOKEN_AUTH", "ALLOW_USER_SRP_AUTH"]
|
||||||
prevent_user_existence_errors = "ENABLED"
|
prevent_user_existence_errors = "ENABLED"
|
||||||
read_attributes = ["address", "birthdate", "email", "email_verified", "family_name", "gender", "given_name", "locale", "middle_name", "name", "nickname", "phone_number", "phone_number_verified", "picture", "preferred_username", "profile", "updated_at", "website", "zoneinfo"]
|
read_attributes = ["address", "birthdate", "email", "email_verified", "family_name", "gender", "given_name", "locale", "middle_name", "name", "nickname", "phone_number", "phone_number_verified", "picture", "preferred_username", "profile", "updated_at", "website", "zoneinfo"]
|
||||||
write_attributes = ["address", "birthdate", "email", "family_name", "gender", "given_name", "locale", "middle_name", "name", "nickname", "phone_number", "picture", "preferred_username", "profile", "updated_at", "website", "zoneinfo"]
|
write_attributes = ["address", "birthdate", "email", "family_name", "gender", "given_name", "locale", "middle_name", "name", "nickname", "phone_number", "picture", "preferred_username", "profile", "updated_at", "website", "zoneinfo"]
|
||||||
|
|
||||||
token_validity_units {
|
token_validity_units {
|
||||||
access_token = "minutes"
|
access_token = "days"
|
||||||
id_token = "minutes"
|
id_token = "days"
|
||||||
refresh_token = "days"
|
refresh_token = "days"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -105,5 +107,12 @@ resource "aws_cognito_user_pool_client" "this" {
|
||||||
resource "aws_cognito_user_pool_domain" "this" {
|
resource "aws_cognito_user_pool_domain" "this" {
|
||||||
domain = var.domain
|
domain = var.domain
|
||||||
user_pool_id = aws_cognito_user_pool.this.id
|
user_pool_id = aws_cognito_user_pool.this.id
|
||||||
# certificate_arn = var.certificate_arn
|
}
|
||||||
|
|
||||||
|
resource "aws_lambda_permission" "this" {
|
||||||
|
statement_id = "AllowExecutionFromUserPool"
|
||||||
|
action = "lambda:InvokeFunction"
|
||||||
|
function_name = var.lambda_function_name
|
||||||
|
principal = "cognito-idp.amazonaws.com"
|
||||||
|
source_arn = aws_cognito_user_pool.this.arn
|
||||||
}
|
}
|
||||||
|
|
|
@ -3,22 +3,22 @@
|
||||||
|
|
||||||
variable "name" {
|
variable "name" {
|
||||||
type = string
|
type = string
|
||||||
description = "(Required) The name of the user pool."
|
description = "The name of the user pool."
|
||||||
}
|
}
|
||||||
|
|
||||||
variable "client_name" {
|
variable "client_name" {
|
||||||
type = string
|
type = string
|
||||||
description = "(Required) The name of the client user pool."
|
description = "The name of the client user pool."
|
||||||
}
|
}
|
||||||
|
|
||||||
variable "alias_attributes" {
|
variable "alias_attributes" {
|
||||||
type = set(string)
|
type = set(string)
|
||||||
description = "(Optional) Attributes supported as an alias for this user pool. Possible values: 'phone_number', 'email', or 'preferred_username'. Conflicts with username_attributes."
|
description = "Attributes supported as an alias for this user pool. Possible values: 'phone_number', 'email', or 'preferred_username'. Conflicts with username_attributes."
|
||||||
default = null
|
default = null
|
||||||
}
|
}
|
||||||
|
|
||||||
variable "domain" {
|
variable "domain" {
|
||||||
description = "(Optional) Type a domain prefix to use for the sign-up and sign-in pages that are hosted by Amazon Cognito, e.g. 'https://{YOUR_PREFIX}.auth.eu-west-1.amazoncognito.com'. The prefix must be unique across the selected AWS Region. Domain names can only contain lower-case letters, numbers, and hyphens."
|
description = "Type a domain prefix to use for the sign-up and sign-in pages that are hosted by Amazon Cognito, e.g. 'https://{YOUR_PREFIX}.auth.eu-west-1.amazoncognito.com'. The prefix must be unique across the selected AWS Region. Domain names can only contain lower-case letters, numbers, and hyphens."
|
||||||
type = string
|
type = string
|
||||||
default = null
|
default = null
|
||||||
}
|
}
|
||||||
|
@ -31,69 +31,78 @@ variable "redirect_url" {
|
||||||
|
|
||||||
variable "account_recovery_mechanisms" {
|
variable "account_recovery_mechanisms" {
|
||||||
type = any
|
type = any
|
||||||
description = "(Optional) A list of recovery_mechanisms which are defined by a `name` and its `priority`. Valid values for `name` are veri fied_email, verified_phone_number, and admin_only."
|
description = "A list of recovery_mechanisms which are defined by a `name` and its `priority`. Valid values for `name` are veri fied_email, verified_phone_number, and admin_only."
|
||||||
default = []
|
default = []
|
||||||
}
|
}
|
||||||
|
|
||||||
variable "enable_username_case_sensitivity" {
|
variable "enable_username_case_sensitivity" {
|
||||||
type = bool
|
type = bool
|
||||||
description = "(Optional) Specifies whether username case sensitivity will be applied for all users in the user pool through Cognito APIs."
|
description = "Specifies whether username case sensitivity will be applied for all users in the user pool through Cognito APIs."
|
||||||
default = false
|
default = false
|
||||||
}
|
}
|
||||||
|
|
||||||
variable "password_minimum_length" {
|
variable "password_minimum_length" {
|
||||||
type = number
|
type = number
|
||||||
description = "(Optional) The minimum length of the password policy that you have set."
|
description = "The minimum length of the password policy that you have set."
|
||||||
default = 20
|
default = 20
|
||||||
}
|
}
|
||||||
|
|
||||||
variable "password_require_lowercase" {
|
variable "password_require_lowercase" {
|
||||||
type = bool
|
type = bool
|
||||||
description = "(Optional) Whether you have required users to use at least one lowercase letter in their password."
|
description = "Whether you have required users to use at least one lowercase letter in their password."
|
||||||
default = true
|
default = true
|
||||||
}
|
}
|
||||||
|
|
||||||
variable "password_require_numbers" {
|
variable "password_require_numbers" {
|
||||||
type = bool
|
type = bool
|
||||||
description = "(Optional) Whether you have required users to use at least one number in their password."
|
description = "Whether you have required users to use at least one number in their password."
|
||||||
default = true
|
default = true
|
||||||
}
|
}
|
||||||
|
|
||||||
variable "password_require_symbols" {
|
variable "password_require_symbols" {
|
||||||
type = bool
|
type = bool
|
||||||
description = "(Optional) Whether you have required users to use at least one symbol in their password."
|
description = "Whether you have required users to use at least one symbol in their password."
|
||||||
default = true
|
default = true
|
||||||
}
|
}
|
||||||
|
|
||||||
variable "password_require_uppercase" {
|
variable "password_require_uppercase" {
|
||||||
type = bool
|
type = bool
|
||||||
description = "(Optional) Whether you have required users to use at least one uppercase letter in their password."
|
description = "Whether you have required users to use at least one uppercase letter in their password."
|
||||||
default = true
|
default = true
|
||||||
}
|
}
|
||||||
|
|
||||||
variable "temporary_password_validity_days" {
|
variable "temporary_password_validity_days" {
|
||||||
type = number
|
type = number
|
||||||
description = "(Optional) In the password policy you have set, refers to the number of days a temporary password is valid. If the user does not sign-in during this time, their password will need to be reset by an administrator."
|
description = "In the password policy you have set, refers to the number of days a temporary password is valid. If the user does not sign-in during this time, their password will need to be reset by an administrator."
|
||||||
default = 1
|
default = 1
|
||||||
}
|
}
|
||||||
|
|
||||||
variable "schema_attributes" {
|
variable "schema_attributes" {
|
||||||
description = "(Optional) A list of schema attributes of a user pool. You can add a maximum of 25 custom attributes."
|
description = "A list of schema attributes of a user pool. You can add a maximum of 25 custom attributes."
|
||||||
type = any
|
type = any
|
||||||
default = []
|
default = []
|
||||||
}
|
}
|
||||||
|
|
||||||
variable "tags" {
|
variable "tags" {
|
||||||
type = map(string)
|
type = map(string)
|
||||||
description = "(Optional) A mapping of tags to assign to the resource."
|
description = "A mapping of tags to assign to the resource."
|
||||||
default = {}
|
default = {}
|
||||||
}
|
}
|
||||||
|
|
||||||
variable "auto_verified_attributes" {
|
variable "auto_verified_attributes" {
|
||||||
type = set(string)
|
type = set(string)
|
||||||
description = "(Optional) The attributes to be auto-verified. Possible values: 'email', 'phone_number'."
|
description = "The attributes to be auto-verified. Possible values: 'email', 'phone_number'."
|
||||||
default = [
|
default = [
|
||||||
"email"
|
"email"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|
||||||
|
variable "lambda_pre_sign_up" {
|
||||||
|
type = string
|
||||||
|
description = "The ARN of a pre-registration AWS Lambda trigger."
|
||||||
|
}
|
||||||
|
|
||||||
|
variable "lambda_function_name" {
|
||||||
|
description = "Lambda name"
|
||||||
|
type = string
|
||||||
|
}
|
||||||
|
|
|
@ -22,6 +22,7 @@ module "cloudfront" {
|
||||||
origin = {
|
origin = {
|
||||||
api-gateway = {
|
api-gateway = {
|
||||||
domain_name = replace(replace(module.apigw.endpoint, "https://", ""), "/", "")
|
domain_name = replace(replace(module.apigw.endpoint, "https://", ""), "/", "")
|
||||||
|
origin_path = "/api"
|
||||||
|
|
||||||
custom_origin_config = {
|
custom_origin_config = {
|
||||||
http_port = 80
|
http_port = 80
|
||||||
|
@ -37,7 +38,7 @@ module "cloudfront" {
|
||||||
http_port = 80
|
http_port = 80
|
||||||
https_port = 443
|
https_port = 443
|
||||||
origin_protocol_policy = "match-viewer"
|
origin_protocol_policy = "match-viewer"
|
||||||
origin_ssl_protocols = ["TLSv1.2"]
|
origin_ssl_protocols = ["TLSv1", "TLSv1.1", "TLSv1.2"]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,6 +1,10 @@
|
||||||
module "cognito" {
|
module "cognito" {
|
||||||
source = "../modules/cognito"
|
source = "../modules/cognito"
|
||||||
|
|
||||||
|
depends_on = [
|
||||||
|
module.lambda
|
||||||
|
]
|
||||||
|
|
||||||
providers = {
|
providers = {
|
||||||
aws = aws.aws
|
aws = aws.aws
|
||||||
}
|
}
|
||||||
|
@ -12,7 +16,6 @@ module "cognito" {
|
||||||
|
|
||||||
alias_attributes = [
|
alias_attributes = [
|
||||||
"email",
|
"email",
|
||||||
# "phone_number",
|
|
||||||
"preferred_username",
|
"preferred_username",
|
||||||
]
|
]
|
||||||
|
|
||||||
|
@ -46,4 +49,7 @@ module "cognito" {
|
||||||
required = true
|
required = true
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|
||||||
|
lambda_pre_sign_up = module.lambda["lambdaTopicSNS"].function_arn
|
||||||
|
lambda_function_name = module.lambda["lambdaTopicSNS"].function_name
|
||||||
}
|
}
|
||||||
|
|
|
@ -14,7 +14,6 @@ data "template_file" "userdata" {
|
||||||
template = file("${path.module}/html/index.html")
|
template = file("${path.module}/html/index.html")
|
||||||
vars = {
|
vars = {
|
||||||
ENDPOINT = "${module.apigw.endpoint}"
|
ENDPOINT = "${module.apigw.endpoint}"
|
||||||
token = ""
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -5,6 +5,7 @@
|
||||||
<head>
|
<head>
|
||||||
<title>BSMSapp</title>
|
<title>BSMSapp</title>
|
||||||
<div align="center">
|
<div align="center">
|
||||||
|
<link rel="icon" href="favicon.ico" type="image/x-icon">
|
||||||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
|
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
|
@ -17,6 +18,8 @@
|
||||||
|
|
||||||
<button class="style" id="login">Login</button>
|
<button class="style" id="login">Login</button>
|
||||||
|
|
||||||
|
<div id="loading" style="display:none"></div>
|
||||||
|
|
||||||
<form id="myForm" class="form-style" style="display:none">
|
<form id="myForm" class="form-style" style="display:none">
|
||||||
<ul>
|
<ul>
|
||||||
<li>
|
<li>
|
||||||
|
@ -68,16 +71,25 @@
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
} else {
|
} else {
|
||||||
$("#myForm").show();
|
|
||||||
$("#tableBtn").show();
|
|
||||||
$("#login").hide();
|
$("#login").hide();
|
||||||
|
$("#loading").show();
|
||||||
|
|
||||||
username = get_user(token)
|
username = get_user(token)
|
||||||
|
|
||||||
var prom = username.then(function(result) {
|
var prom = username.then(function(result) {
|
||||||
username = result["username"]
|
$("#loading").hide();
|
||||||
localStorage.setItem('username', token);
|
if (result.hasOwnProperty('error')){
|
||||||
console.log(username)
|
$("#login").show();
|
||||||
|
localStorage.removeItem('token')
|
||||||
|
} else {
|
||||||
|
$("#myForm").show();
|
||||||
|
$("#tableBtn").show();
|
||||||
|
$("#login").hide();
|
||||||
|
|
||||||
|
username = result["username"]
|
||||||
|
localStorage.setItem('username', token);
|
||||||
|
console.log(username)
|
||||||
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -102,7 +114,6 @@
|
||||||
body: str.replace(/"([\d\.]+)"/g, "$1")
|
body: str.replace(/"([\d\.]+)"/g, "$1")
|
||||||
});
|
});
|
||||||
|
|
||||||
// const result = await response.json();
|
|
||||||
const result = await response;
|
const result = await response;
|
||||||
});
|
});
|
||||||
|
|
||||||
|
@ -198,12 +209,19 @@
|
||||||
|
|
||||||
return await response.json()
|
return await response.json()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style type="text/css">
|
<style type="text/css">
|
||||||
|
#loading {
|
||||||
|
background: url('loading.gif') no-repeat center center;
|
||||||
|
position: absolute;
|
||||||
|
top: 0;
|
||||||
|
left: 0;
|
||||||
|
height: 100%;
|
||||||
|
width: 100%;
|
||||||
|
z-index: 9999999;
|
||||||
|
}
|
||||||
|
|
||||||
body {
|
body {
|
||||||
background: linear-gradient(-45deg, #ee7752, #df6493, #23a6d5, #23d5ab);
|
background: linear-gradient(-45deg, #ee7752, #df6493, #23a6d5, #23d5ab);
|
||||||
background-size: 400% 400%;
|
background-size: 400% 400%;
|
||||||
|
|
|
@ -15,17 +15,13 @@ locals {
|
||||||
}
|
}
|
||||||
|
|
||||||
objects = {
|
objects = {
|
||||||
error = {
|
favicon = {
|
||||||
filename = "html/error.html"
|
filename = "favicon.ico"
|
||||||
content_type = "text/html"
|
content_type = "image/x-icon"
|
||||||
}
|
}
|
||||||
image1 = {
|
loading = {
|
||||||
filename = "images/image1.png"
|
filename = "loading.gif"
|
||||||
content_type = "image/png"
|
content_type = "image/gif"
|
||||||
}
|
|
||||||
image2 = {
|
|
||||||
filename = "images/image2.jpg"
|
|
||||||
content_type = "image/jpeg"
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -82,9 +78,6 @@ locals {
|
||||||
handler = "lambda_handler.main"
|
handler = "lambda_handler.main"
|
||||||
runtime = "python3.7",
|
runtime = "python3.7",
|
||||||
security_group_ids = aws_security_group.sns_sg.id
|
security_group_ids = aws_security_group.sns_sg.id
|
||||||
# environment_variables = {
|
|
||||||
# apigw = "${module.apigw.endpoint}"
|
|
||||||
# }
|
|
||||||
}
|
}
|
||||||
lambdaUpdate = {
|
lambdaUpdate = {
|
||||||
package = "${local.path}/lambda/lambdaUpdate.zip"
|
package = "${local.path}/lambda/lambdaUpdate.zip"
|
||||||
|
@ -118,6 +111,14 @@ locals {
|
||||||
runtime = "python3.9",
|
runtime = "python3.9",
|
||||||
security_group_ids = aws_security_group.dynamodb_sg.id
|
security_group_ids = aws_security_group.dynamodb_sg.id
|
||||||
}
|
}
|
||||||
|
lambdaTopicSNS = {
|
||||||
|
package = "${local.path}/lambda/lambdaTopicSNS.zip"
|
||||||
|
function_name = "AWSLambdaHandlerTopicSNSg3"
|
||||||
|
role = "arn:aws:iam::${data.aws_caller_identity.current.account_id}:role/LabRole"
|
||||||
|
handler = "lambda_handler.main"
|
||||||
|
runtime = "python3.9",
|
||||||
|
security_group_ids = aws_security_group.sns_sg.id
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private_inbound = [
|
private_inbound = [
|
||||||
|
|
Binary file not shown.
After Width: | Height: | Size: 31 KiB |
|
@ -1,20 +0,0 @@
|
||||||
<!DOCTYPE html>
|
|
||||||
<meta charset="UTF-8">
|
|
||||||
|
|
||||||
<html>
|
|
||||||
<div align="center">
|
|
||||||
|
|
||||||
<head>
|
|
||||||
<title>ITBA - Cloud</title>
|
|
||||||
</head>
|
|
||||||
|
|
||||||
<body bgcolor="#FFFFFF" text="Black">
|
|
||||||
<h1>Ups... algo ha salido mal...</h1>
|
|
||||||
|
|
||||||
<img src="images/image2.jpg">
|
|
||||||
|
|
||||||
<p>Por favor intenta de nuevo en algunos minutos</p>
|
|
||||||
</body>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
</html>
|
|
Binary file not shown.
Before Width: | Height: | Size: 38 KiB |
Binary file not shown.
Before Width: | Height: | Size: 22 KiB |
Binary file not shown.
|
@ -6,8 +6,22 @@ import os
|
||||||
|
|
||||||
def main(event, context):
|
def main(event, context):
|
||||||
print(event)
|
print(event)
|
||||||
|
record = event['Records'][0]
|
||||||
|
print(record)
|
||||||
|
sqs_message = json.dumps(event)
|
||||||
|
print(sqs_message)
|
||||||
|
body = record["body"]
|
||||||
|
body = body.replace('\n', '')
|
||||||
|
body = json.loads(body)
|
||||||
|
query = body["body-json"]
|
||||||
|
print(query)
|
||||||
|
|
||||||
response = requests.get("http://api.slococo.com.ar:2555/items")
|
response = requests.get("http://api.slococo.com.ar:2555/api/items?user=" + query["username"] + "&id=" + str(query["id"]))
|
||||||
print(response.json())
|
print(response.json())
|
||||||
|
|
||||||
|
response = response.json()
|
||||||
|
|
||||||
|
if response["stock"] != query["stock"]:
|
||||||
|
raise 'Error'
|
||||||
|
|
||||||
return event
|
return event
|
||||||
|
|
Binary file not shown.
|
@ -4,8 +4,15 @@ import boto3
|
||||||
|
|
||||||
def main(event, context):
|
def main(event, context):
|
||||||
print(event)
|
print(event)
|
||||||
message = "Probando SNS desde lambda..."
|
record = event['Records'][0]
|
||||||
|
body = record["body"]
|
||||||
|
body = body.replace('\n', '')
|
||||||
|
body = json.loads(body)
|
||||||
|
query = body["body-json"]
|
||||||
|
|
||||||
|
message = "Id: " + str(query["id"]) + " - Stock: " + str(query["stock"])
|
||||||
subject = "BSMSapp"
|
subject = "BSMSapp"
|
||||||
|
|
||||||
client = boto3.client("sns")
|
client = boto3.client("sns")
|
||||||
topic_arn = "arn:aws:sns:us-east-1:025685231147:slococo"
|
topic_arn = "arn:aws:sns:us-east-1:025685231147:" + query["username"]
|
||||||
client.publish(TopicArn=topic_arn, Message=message, Subject=subject)
|
client.publish(TopicArn=topic_arn, Message=message, Subject=subject)
|
||||||
|
|
Binary file not shown.
|
@ -0,0 +1,16 @@
|
||||||
|
import json
|
||||||
|
import boto3
|
||||||
|
|
||||||
|
|
||||||
|
def main(event, context):
|
||||||
|
client = boto3.client("sns")
|
||||||
|
client.create_topic(
|
||||||
|
Name=event['userName']
|
||||||
|
)
|
||||||
|
client.subscribe(
|
||||||
|
TopicArn='arn:aws:sns:us-east-1:025685231147:' + event['userName'],
|
||||||
|
Protocol='email',
|
||||||
|
Endpoint=event['request']['userAttributes']['email'],
|
||||||
|
)
|
||||||
|
|
||||||
|
return event
|
Binary file not shown.
|
@ -3,12 +3,16 @@ import boto3
|
||||||
|
|
||||||
|
|
||||||
def main(event, context):
|
def main(event, context):
|
||||||
payload = event
|
print(event)
|
||||||
payload = payload["Records"][0]
|
record = event['Records'][0]
|
||||||
body = payload["body"]
|
print(record)
|
||||||
|
sqs_message = json.dumps(event)
|
||||||
|
print(sqs_message)
|
||||||
|
body = record["body"]
|
||||||
body = body.replace('\n', '')
|
body = body.replace('\n', '')
|
||||||
body = json.loads(body)
|
body = json.loads(body)
|
||||||
query = body["body-json"]
|
query = body["body-json"]
|
||||||
|
print(query)
|
||||||
|
|
||||||
client = boto3.resource('dynamodb', region_name="us-east-1")
|
client = boto3.resource('dynamodb', region_name="us-east-1")
|
||||||
table = client.Table("AWSDynamoDB-g3")
|
table = client.Table("AWSDynamoDB-g3")
|
||||||
|
|
Binary file not shown.
After Width: | Height: | Size: 40 KiB |
Loading…
Reference in New Issue