From 016497dbe65347686c165449151e3f67c9328a28 Mon Sep 17 00:00:00 2001 From: Santiago Lo Coco Date: Sun, 4 Dec 2022 13:53:42 -0300 Subject: [PATCH] Update lambda functions Co-authored-by: Ezequiel Bellver --- terraform/modules/acm/README.md | 45 ++++++++++++++++ terraform/modules/apigw/README.md | 2 +- terraform/modules/cognito/README.md | 51 ++++++++++++++++++ terraform/modules/lambda/README.md | 2 + terraform/modules/lambda/main.tf | 14 ++--- terraform/modules/route53/README.md | 39 ++++++++++++++ terraform/modules/sns/README.md | 40 ++++++++++++++ terraform/modules/stepfunctions/README.md | 40 ++++++++++++++ terraform/resources/lambda/lambdaDB.zip | Bin 521 -> 521 bytes terraform/resources/lambda/lambdaError.zip | Bin 559 -> 559 bytes terraform/resources/lambda/lambdaGET.zip | Bin 361 -> 321 bytes .../lambda/lambdaGET/lambda_handler.py | 4 +- terraform/resources/lambda/lambdaRemove.zip | Bin 0 -> 496 bytes .../lambda/lambdaRemove/lambda_handler.py | 26 +++++++++ terraform/resources/lambda/lambdaSNS.zip | Bin 393 -> 393 bytes terraform/resources/lambda/lambdaSQS.zip | Bin 519 -> 519 bytes terraform/resources/lambda/lambdaUpdate.zip | Bin 509 -> 414 bytes .../lambda/lambdaUpdate/lambda_handler.py | 9 ---- .../resources/lambda/lambdaUpdateAPI.zip | Bin 0 -> 483 bytes .../lambda/lambdaUpdateAPI/lambda_handler.py | 24 +++++++++ 20 files changed, 277 insertions(+), 19 deletions(-) create mode 100644 terraform/modules/acm/README.md create mode 100644 terraform/modules/cognito/README.md create mode 100644 terraform/modules/route53/README.md create mode 100644 terraform/modules/sns/README.md create mode 100644 terraform/modules/stepfunctions/README.md create mode 100644 terraform/resources/lambda/lambdaRemove.zip create mode 100644 terraform/resources/lambda/lambdaRemove/lambda_handler.py create mode 100644 terraform/resources/lambda/lambdaUpdateAPI.zip create mode 100644 terraform/resources/lambda/lambdaUpdateAPI/lambda_handler.py diff --git a/terraform/modules/acm/README.md b/terraform/modules/acm/README.md new file mode 100644 index 0000000..14155bf --- /dev/null +++ b/terraform/modules/acm/README.md @@ -0,0 +1,45 @@ + +## Requirements + +| Name | Version | +|------|---------| +| [terraform](#requirement\_terraform) | >= 1.3.1 | +| [aws](#requirement\_aws) | >= 4.10.0 | + +## Providers + +| Name | Version | +|------|---------| +| [aws](#provider\_aws) | 4.43.0 | + +## Modules + +No modules. + +## Resources + +| Name | Type | +|------|------| +| [aws_acm_certificate.this](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/acm_certificate) | resource | +| [aws_acm_certificate_validation.this](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/acm_certificate_validation) | resource | +| [aws_route53_record.this](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/route53_record) | resource | +| [aws_route53_zone.this](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/data-sources/route53_zone) | data source | + +## Inputs + +| Name | Description | Type | Default | Required | +|------|-------------|------|---------|:--------:| +| [dns\_ttl](#input\_dns\_ttl) | The TTL of DNS recursive resolvers to cache information about this record. | `number` | `60` | no | +| [domain\_name](#input\_domain\_name) | A domain name for which the certificate should be issued | `string` | `""` | no | +| [subject\_alternative\_names](#input\_subject\_alternative\_names) | A list of domains that should be SANs in the issued certificate | `list(string)` | `[]` | no | +| [tags](#input\_tags) | A mapping of tags to assign to the resource | `map(string)` | `{}` | no | +| [validation\_allow\_overwrite\_records](#input\_validation\_allow\_overwrite\_records) | Whether to allow overwrite of Route53 records | `bool` | `true` | no | +| [validation\_method](#input\_validation\_method) | Which method to use for validation. DNS or EMAIL are valid, NONE can be used for certificates that were imported into ACM and then into Terraform. | `string` | `"DNS"` | no | +| [validation\_timeout](#input\_validation\_timeout) | Define maximum timeout to wait for the validation to complete | `string` | `null` | no | + +## Outputs + +| Name | Description | +|------|-------------| +| [certificate\_arn](#output\_certificate\_arn) | The ARN of the certificate. | + \ No newline at end of file diff --git a/terraform/modules/apigw/README.md b/terraform/modules/apigw/README.md index d699785..8e6145b 100644 --- a/terraform/modules/apigw/README.md +++ b/terraform/modules/apigw/README.md @@ -36,7 +36,7 @@ No modules. |------|-------------|------|---------|:--------:| | [integration](#input\_integration) | Map of API gateway integrations. | `map(any)` | n/a | yes | | [integration\_response](#input\_integration\_response) | Map of API gateway method integrations. | `map(any)` | n/a | yes | -| [lambda](#input\_lambda) | List of lambdas the API will execute. | `list(any)` | n/a | yes | +| [lambda](#input\_lambda) | Map of lambdas the API will execute. | `map(any)` | n/a | yes | | [method](#input\_method) | Map of API gateway methods. | `map(any)` | n/a | yes | | [method\_response](#input\_method\_response) | Map of API gateway method response. | `map(any)` | n/a | yes | | [name](#input\_name) | The name of the API. | `string` | n/a | yes | diff --git a/terraform/modules/cognito/README.md b/terraform/modules/cognito/README.md new file mode 100644 index 0000000..aebeac6 --- /dev/null +++ b/terraform/modules/cognito/README.md @@ -0,0 +1,51 @@ + +## Requirements + +| Name | Version | +|------|---------| +| [terraform](#requirement\_terraform) | >= 1.3.1 | +| [aws](#requirement\_aws) | >= 4.10.0 | + +## Providers + +| Name | Version | +|------|---------| +| [aws](#provider\_aws) | 4.43.0 | + +## Modules + +No modules. + +## Resources + +| Name | Type | +|------|------| +| [aws_cognito_user_pool.this](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/cognito_user_pool) | resource | +| [aws_cognito_user_pool_client.this](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/cognito_user_pool_client) | resource | +| [aws_cognito_user_pool_domain.this](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/cognito_user_pool_domain) | resource | + +## Inputs + +| Name | Description | Type | Default | Required | +|------|-------------|------|---------|:--------:| +| [account\_recovery\_mechanisms](#input\_account\_recovery\_mechanisms) | (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. | `any` | `[]` | no | +| [alias\_attributes](#input\_alias\_attributes) | (Optional) Attributes supported as an alias for this user pool. Possible values: 'phone\_number', 'email', or 'preferred\_username'. Conflicts with username\_attributes. | `set(string)` | `null` | no | +| [auto\_verified\_attributes](#input\_auto\_verified\_attributes) | (Optional) The attributes to be auto-verified. Possible values: 'email', 'phone\_number'. | `set(string)` |
[
"email"
]
| no | +| [client\_name](#input\_client\_name) | (Required) The name of the client user pool. | `string` | n/a | yes | +| [domain](#input\_domain) | (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. | `string` | `null` | no | +| [enable\_username\_case\_sensitivity](#input\_enable\_username\_case\_sensitivity) | (Optional) Specifies whether username case sensitivity will be applied for all users in the user pool through Cognito APIs. | `bool` | `false` | no | +| [name](#input\_name) | (Required) The name of the user pool. | `string` | n/a | yes | +| [password\_minimum\_length](#input\_password\_minimum\_length) | (Optional) The minimum length of the password policy that you have set. | `number` | `20` | no | +| [password\_require\_lowercase](#input\_password\_require\_lowercase) | (Optional) Whether you have required users to use at least one lowercase letter in their password. | `bool` | `true` | no | +| [password\_require\_numbers](#input\_password\_require\_numbers) | (Optional) Whether you have required users to use at least one number in their password. | `bool` | `true` | no | +| [password\_require\_symbols](#input\_password\_require\_symbols) | (Optional) Whether you have required users to use at least one symbol in their password. | `bool` | `true` | no | +| [password\_require\_uppercase](#input\_password\_require\_uppercase) | (Optional) Whether you have required users to use at least one uppercase letter in their password. | `bool` | `true` | no | +| [redirect\_url](#input\_redirect\_url) | Redirect URL. | `string` | `null` | no | +| [schema\_attributes](#input\_schema\_attributes) | (Optional) A list of schema attributes of a user pool. You can add a maximum of 25 custom attributes. | `any` | `[]` | no | +| [tags](#input\_tags) | (Optional) A mapping of tags to assign to the resource. | `map(string)` | `{}` | no | +| [temporary\_password\_validity\_days](#input\_temporary\_password\_validity\_days) | (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. | `number` | `1` | no | + +## Outputs + +No outputs. + \ No newline at end of file diff --git a/terraform/modules/lambda/README.md b/terraform/modules/lambda/README.md index 7edf878..9ceb037 100644 --- a/terraform/modules/lambda/README.md +++ b/terraform/modules/lambda/README.md @@ -26,12 +26,14 @@ No modules. | Name | Description | Type | Default | Required | |------|-------------|------|---------|:--------:| +| [environment\_variables](#input\_environment\_variables) | A map that defines environment variables for the Lambda Function. | `map(string)` | `{}` | no | | [function\_name](#input\_function\_name) | A unique name for your Lambda Function. | `string` | n/a | yes | | [handler](#input\_handler) | Lambda Function entrypoint in your code. | `string` | n/a | yes | | [iam\_role](#input\_iam\_role) | IAM role ARN attached to the Lambda Function. | `string` | n/a | yes | | [package](#input\_package) | The absolute path to an existing zip-file to use. | `string` | `null` | no | | [runtime](#input\_runtime) | Lambda Function runtime. | `string` | n/a | yes | | [source\_arn](#input\_source\_arn) | Lambda source ARN. | `string` | `""` | no | +| [source\_code\_hash](#input\_source\_code\_hash) | The zip hash. | `string` | n/a | yes | | [tags](#input\_tags) | A mapping of tags to assign to API gateway resources. | `map(string)` | `{}` | no | | [vpc\_security\_group\_ids](#input\_vpc\_security\_group\_ids) | List of security group ids when Lambda Function should run in the VPC. | `list(string)` | `null` | no | | [vpc\_subnet\_ids](#input\_vpc\_subnet\_ids) | List of subnet ids when Lambda Function should run in the VPC. | `list(string)` | `null` | no | diff --git a/terraform/modules/lambda/main.tf b/terraform/modules/lambda/main.tf index 3c1eb07..e7f87c6 100644 --- a/terraform/modules/lambda/main.tf +++ b/terraform/modules/lambda/main.tf @@ -3,13 +3,13 @@ # ------------------------------------------------------------------------------ resource "aws_lambda_function" "this" { - filename = var.package - function_name = var.function_name - role = var.iam_role - handler = var.handler - runtime = var.runtime - tags = var.tags - timeout = 30 + filename = var.package + function_name = var.function_name + role = var.iam_role + handler = var.handler + runtime = var.runtime + tags = var.tags + timeout = 30 source_code_hash = var.source_code_hash dynamic "vpc_config" { diff --git a/terraform/modules/route53/README.md b/terraform/modules/route53/README.md new file mode 100644 index 0000000..2972037 --- /dev/null +++ b/terraform/modules/route53/README.md @@ -0,0 +1,39 @@ + +## Requirements + +| Name | Version | +|------|---------| +| [terraform](#requirement\_terraform) | >= 1.3.1 | +| [aws](#requirement\_aws) | >= 4.10.0 | + +## Providers + +| Name | Version | +|------|---------| +| [aws](#provider\_aws) | 4.43.0 | + +## Modules + +No modules. + +## Resources + +| Name | Type | +|------|------| +| [aws_route53_record.this](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/route53_record) | resource | +| [aws_route53_zone.this](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/data-sources/route53_zone) | data source | + +## Inputs + +| Name | Description | Type | Default | Required | +|------|-------------|------|---------|:--------:| +| [private\_zone](#input\_private\_zone) | Whether Route53 zone is private or public | `bool` | `false` | no | +| [records](#input\_records) | List of objects of DNS records | `any` | `{}` | no | +| [zone\_name](#input\_zone\_name) | Name of DNS zone | `string` | n/a | yes | + +## Outputs + +| Name | Description | +|------|-------------| +| [zone\_id](#output\_zone\_id) | The route 53 zone ID. | + \ No newline at end of file diff --git a/terraform/modules/sns/README.md b/terraform/modules/sns/README.md new file mode 100644 index 0000000..e51a159 --- /dev/null +++ b/terraform/modules/sns/README.md @@ -0,0 +1,40 @@ + +## Requirements + +| Name | Version | +|------|---------| +| [terraform](#requirement\_terraform) | >= 1.3.1 | +| [aws](#requirement\_aws) | >= 4.10.0 | + +## Providers + +| Name | Version | +|------|---------| +| [aws](#provider\_aws) | 4.43.0 | + +## Modules + +No modules. + +## Resources + +| Name | Type | +|------|------| +| [aws_sns_topic.this](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/sns_topic) | resource | +| [aws_sns_topic_subscription.this](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/sns_topic_subscription) | resource | + +## Inputs + +| Name | Description | Type | Default | Required | +|------|-------------|------|---------|:--------:| +| [delivery](#input\_delivery) | The topic delivery json. | `any` | n/a | yes | +| [emails](#input\_emails) | The subscription emails. | `any` | n/a | yes | +| [name](#input\_name) | The topic name. | `string` | n/a | yes | +| [protocol](#input\_protocol) | The subscription protocol. | `string` | n/a | yes | + +## Outputs + +| Name | Description | +|------|-------------| +| [name](#output\_name) | The topic name. | + \ No newline at end of file diff --git a/terraform/modules/stepfunctions/README.md b/terraform/modules/stepfunctions/README.md new file mode 100644 index 0000000..c125792 --- /dev/null +++ b/terraform/modules/stepfunctions/README.md @@ -0,0 +1,40 @@ + +## Requirements + +| Name | Version | +|------|---------| +| [terraform](#requirement\_terraform) | >= 1.3.1 | +| [aws](#requirement\_aws) | >= 4.10.0 | + +## Providers + +| Name | Version | +|------|---------| +| [aws](#provider\_aws) | 4.44.0 | + +## Modules + +No modules. + +## Resources + +| Name | Type | +|------|------| +| [aws_sfn_state_machine.this](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/sfn_state_machine) | resource | + +## Inputs + +| Name | Description | Type | Default | Required | +|------|-------------|------|---------|:--------:| +| [definition](#input\_definition) | The Step Function definition. | `string` | n/a | yes | +| [name](#input\_name) | The state machine name. | `string` | n/a | yes | +| [role\_arn](#input\_role\_arn) | The Step Function role. | `string` | n/a | yes | +| [tags](#input\_tags) | A mapping of tags to assign to the resource | `map(string)` | `{}` | no | +| [type](#input\_type) | Determines whether a Standard or Express state machine is created.. | `string` | n/a | yes | + +## Outputs + +| Name | Description | +|------|-------------| +| [name](#output\_name) | The name of the Step Function | + \ No newline at end of file diff --git a/terraform/resources/lambda/lambdaDB.zip b/terraform/resources/lambda/lambdaDB.zip index b0d6d4f784d0649c5723554f0baf0c1aca552ebd..c25b0279c39ea00605b2323707e2376b8ba7a08f 100644 GIT binary patch delta 14 VcmeBV>13H;!K_i*wbA+13H;!CZ2-W25ysMgS$e1!@2Q diff --git a/terraform/resources/lambda/lambdaError.zip b/terraform/resources/lambda/lambdaError.zip index 8208a8280f173a7e752cbb1ed7a47d8ae2f74a75..9f9aa39cf3ab5750234e195d80227202a140821d 100644 GIT binary patch delta 14 VcmZ3_vYusv1+zwJ*GB6vi~uFd1v&r# delta 14 VcmZ3_vYusv1+xHa=SJ%2y zb?)q-K(5IPEZ^IdyT9Gtp4EAeU)8emp=>iC}*ee;5i>hwFs zlk2uTkytmc=f(cN6K9lte(=F;VY+@x#z&sy%d>gjXH@X28};x{+u9It?Q7fSt4m*U z6g2Qj&Pz<)((B#ioMz8^XNyQ};D#rXOfnL_UnDA2KUAyMH+W7`(qv3LScIZSMVGr20;cHhMdIQq?E+?jKsW@oYW${g38bk zP6lSvd0ojMTw1}+z{v7~nSlXJ_)f6*KWrdyw7j0{w0F=Im)5+gR$usqnVCI!SVR44 zblv*&Z}15$tSdj~7w}4TXZ8EK?>Tq3ykPqOA!DZ8KW&~JDLtANAKkKM9~Qr1@Z9tk zgMH$*q&a@t)y+X4P5p~rg|4W|>bc~2Bx+Br_s3wXjNUbh=i_qCo=2K__nqg9*>Xf9 zb)4sD&EATthjfIE!0(oJ-zpvhv^#E=iC$QM7Ad#V2_ks@RKpb z?zoZo?CHyEnci$aTB&&~^<=b`fxv?m%qBmXzr4P`@6D(v zlbfylMkRIaTt~X@>xzB$tYTkzpz@XfKb4$UQhW5vzP#Y`-Dt?RzuSHJ`CF4B?{sh$ z?R>OUUH$L9g0A})LMP6*THs`U%d2&%#G!xbymL2e8vSMt@MdI^W5yK;62Qn|U;xGm h!;(f23rm!+LZSpMIs&{|*+3c?fiN6MH-pSz003C^yb%BZ literal 0 HcmV?d00001 diff --git a/terraform/resources/lambda/lambdaRemove/lambda_handler.py b/terraform/resources/lambda/lambdaRemove/lambda_handler.py new file mode 100644 index 0000000..e240072 --- /dev/null +++ b/terraform/resources/lambda/lambdaRemove/lambda_handler.py @@ -0,0 +1,26 @@ +import json +import boto3 + + +def main(event, context): + payload = event + body = payload["body"] + body = body.replace('\n', '') + query = json.loads(body) + + client = boto3.resource('dynamodb', region_name="us-east-1") + table = client.Table("AWSDynamoDB-g3") + + table.delete_item(Key={ + 'id': query["id"] + }) + + resp = { + "statusCode": 200, + "headers": { + "Access-Control-Allow-Origin": "*", + }, + "body": "El elemento fue eliminado." + } + + return resp diff --git a/terraform/resources/lambda/lambdaSNS.zip b/terraform/resources/lambda/lambdaSNS.zip index 37e05baa5f02a760515333042a74140a10cfe3ff..d4132c1fb8a04f0f63ece89d6897d6b40fa1ebb3 100644 GIT binary patch delta 14 VcmeBV?qr@|!K_i*wb9y-5da{H1V#V= delta 14 VcmeBV?qr@|!CZZ61gii5 diff --git a/terraform/resources/lambda/lambdaUpdate.zip b/terraform/resources/lambda/lambdaUpdate.zip index 45f145be901b99724a2e3a1a4bcf50a63672ff23..6cc5c8b754b611e7380b2555450921fd60b34feb 100644 GIT binary patch delta 333 zcmey%Jdar-z?+#xgn@y9gTZ@7Q>f?Jiq>a9UNhrF37Pu0rCrG&Tw1}+z{v7~nSlXJ z#0H%8J8ZzS@4M!rm|33LthabqvR}}PVeC9SW7(FE%NCgFbvD1a{aD47r>G#O-o7kp zxuk99_l9+wRNqf52oIgwxOv8wQZBoL7sGg7aO}${4(GJn9Orh$twibY|Elb=3H}BP z%pK+U&Fhb!d3jOidP~S@`+!|h{GV5_2Yj8qdi$bv=GS|+}e{Z`dcXRexp3 zr+;57=ktE!Kbv~|N_?KRyH#Y9r)|-TPj%Yw8W)wnK3~fmAnDD>B*%;`a3-%})M5sP Q%;f8g3T%dqzyMCs)N%2IoP$b# z*PFdD`y;4Tzva@$w`se2X9+z`)Zv&hKk#8_M8?(?3f}R)R*9KamSHVhTrx>Qi&c2rP^uM*}?H|9&j7`;5I!XH)_b;dqT&KEuK4aU_x#IhZ zwWl0-{wB?8ZqG?`0iiX@X?KKIriL~a|Loe=?>bk1>#_BJ4z7xlob*}S&dh4w&SSUL z&(2L-uyA3s;_dPSF23c8Dq=MO^8N>F(|ym#Ycs#AZ;B7_W@M6M#uoMr41x?23=ETl U7?qiU;Xk>8QGsm&Fjg2C0Ca%9Hvj+t diff --git a/terraform/resources/lambda/lambdaUpdate/lambda_handler.py b/terraform/resources/lambda/lambdaUpdate/lambda_handler.py index 8cea4cd..6bcf9a8 100644 --- a/terraform/resources/lambda/lambdaUpdate/lambda_handler.py +++ b/terraform/resources/lambda/lambdaUpdate/lambda_handler.py @@ -15,13 +15,4 @@ def main(event, context): table.put_item(Item=query) - # resp = { - # "statusCode": 200, - # "headers": { - # "Access-Control-Allow-Origin": "*", - # }, - # "body": "El elemento fue agregado." - # } - - # return resp return event diff --git a/terraform/resources/lambda/lambdaUpdateAPI.zip b/terraform/resources/lambda/lambdaUpdateAPI.zip new file mode 100644 index 0000000000000000000000000000000000000000..d14c095bb7a2e3717589834762092c64f77ef41b GIT binary patch literal 483 zcmWIWW@Zs#U|`^2I5)Q`RQJyfV{JwThBrVg$RNXzlbD;7k{F+nn3s~1TBKJ{85+XL z!0g=6l?=kA72FJrEH9WD7{G+@1bhF(1_DRR>$y&Q3te$(&6{d9Wm;n=qY9hDRN?sM ziI2JeF}tj|KX-HVl`4;#@AK-v=h*hVVEX?dW2W7^Xr3JjJ(@Q@J7z^662D>aSoRi! z{lX|Czw9ZK9asM7O1JzT6(Vfvcd6TBYsKy%= z&HbKQ6t1&+?nM(-VGUVD8@K5aS(}O+t_q!WTz~Q1ingg8``BJO*Xs8DP>5zO`Nxqp zFDSC>>*vR2%-gn??iW~|c=L9T;hU0%g?pBt*E(+f(xg`9O1|DDA-fX-f7wJkRQJz3 zpPv3wb_vt-mG$4!6YrKjsNK6Ty)@(1R>L2$_7-=uz0(R+&rLYYs&B9Lvb?Riu~DzN zM!xa%ym$JdW=hrk{{x*%%+%BB1H2iT