diff --git a/terraform/organization/html/index.html b/terraform/organization/html/index.html index 39a1923..d64fc05 100644 --- a/terraform/organization/html/index.html +++ b/terraform/organization/html/index.html @@ -5,16 +5,28 @@ BSMSapp
+


-

BSMSapp

+
+

BSMSapp

+
-
- -
- -

- + + +
    +
  • + + Enter the product identifier. +
  • +
  • + + Enter the new stock number. +
  • +
  • + +
  • +
@@ -25,26 +37,173 @@ const thisForm = document.getElementById('myForm'); thisForm.addEventListener('submit', async function (e) { e.preventDefault(); - // console.log(thisForm) - // console.log(new FormData(thisForm).entries()) const formData = new FormData(thisForm).entries() const str = JSON.stringify(Object.fromEntries(formData)) console.log(str.replace(/\"/g, '')) - let test = { - id: 212311111, - stock: 131211 - } const response = await fetch("${ENDPOINT}/resource", { method: 'POST', - // mode: 'cors', headers: { 'Content-Type': 'application/json' }, - // body: str.replace(/\"/g, '') - body: JSON.stringify(test) + body: str.replace(/\"/g, '') }); const result = await response.json(); console.log(result) }); - \ No newline at end of file + + function adjust_textarea(h) { + h.style.height = "20px"; + h.style.height = (h.scrollHeight)+"px"; + } + + + \ No newline at end of file diff --git a/terraform/organization/sqs.tf b/terraform/organization/sqs.tf index 7a75b7c..fe7a009 100644 --- a/terraform/organization/sqs.tf +++ b/terraform/organization/sqs.tf @@ -5,6 +5,10 @@ module "sqs" { aws = aws.aws } + depends_on = [ + module.lambda + ] + name = "AWS-SQS-g3" lambda_name = "AWSLambdaHandler-${replace(local.bucket_name, "-", "")}" diff --git a/terraform/resources/html/index.html b/terraform/resources/html/index.html index 272b102..73eec9e 100644 --- a/terraform/resources/html/index.html +++ b/terraform/resources/html/index.html @@ -2,34 +2,46 @@ - ITBA - Cloud + BSMSapp
- - -

-

Bienvenidos, estimados Alumnos.

- - -

- +

BSMSapp

-

Este lab está desarrollado por la cátedra de Cloud Computing

+
+ +
+ +

+ +
- \ No newline at end of file + + + \ No newline at end of file diff --git a/terraform/resources/lambda/lambda.zip b/terraform/resources/lambda/lambda.zip new file mode 100644 index 0000000..ed42ff8 Binary files /dev/null and b/terraform/resources/lambda/lambda.zip differ