diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..eefde8e
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,60 @@
+__pycache__/
+*.py[cod]
+*$py.class
+*.so
+.Python
+build/
+develop-eggs/
+dist/
+downloads/
+eggs/
+.eggs/
+lib/
+lib64/
+parts/
+sdist/
+var/
+wheels/
+pip-wheel-metadata/
+share/python-wheels/
+*.egg-info/
+.installed.cfg
+*.egg
+MANIFEST
+*.manifest
+*.spec
+pip-log.txt
+pip-delete-this-directory.txt
+htmlcov/
+.tox/
+.nox/
+.coverage
+.coverage.*
+.cache
+nosetests.xml
+coverage.xml
+*.cover
+*.py,cover
+.hypothesis/
+.pytest_cache/
+*.mo
+*.pot
+target/
+.ipynb_checkpoints
+profile_default/
+ipython_config.py
+.python-version
+__pypackages__/
+.env
+.venv
+env/
+venv/
+ENV/
+env.bak/
+venv.bak/
+/site
+.pyre/
+.terraform/
+.terraform.*
+terraform.tfstate*
+.terraform*
\ No newline at end of file
diff --git a/README.md b/README.md
index 0127216..bed73bd 100644
--- a/README.md
+++ b/README.md
@@ -1,5 +1,13 @@
# BSMSapp
+Best Stock Management System application.
+
+## Diagrama de arquitectura
+
+
+
+
+
## Autores
- Bellver, Ezequiel (61268)
- Burgos, Santiago Eduardo (55193)
diff --git a/docs/diagram.png b/docs/diagram.png
new file mode 100644
index 0000000..0efd7df
Binary files /dev/null and b/docs/diagram.png differ
diff --git a/terraform/modules/s3/datasources.tf b/terraform/modules/s3/datasources.tf
new file mode 100644
index 0000000..bd48383
--- /dev/null
+++ b/terraform/modules/s3/datasources.tf
@@ -0,0 +1,17 @@
+# ---------------------------------------------------------------------------
+# Amazon S3 datasources
+# ---------------------------------------------------------------------------
+
+data "aws_iam_policy_document" "this" {
+
+ statement {
+ sid = "PublicReadGetObject"
+ effect = "Allow"
+ actions = ["s3:GetObject"]
+ principals {
+ type = "AWS"
+ identifiers = ["*"]
+ }
+ resources = ["${aws_s3_bucket.this.arn}/*"]
+ }
+}
\ No newline at end of file
diff --git a/terraform/modules/s3/main.tf b/terraform/modules/s3/main.tf
new file mode 100644
index 0000000..195bec4
--- /dev/null
+++ b/terraform/modules/s3/main.tf
@@ -0,0 +1,47 @@
+# ------------------------------------------------------------------------------
+# Amazon S3
+# ------------------------------------------------------------------------------
+
+# 1 - S3 bucket
+resource "aws_s3_bucket" "this" {
+ bucket = var.bucket_name
+ object_lock_enabled = false
+}
+
+# 2 -Bucket policy
+resource "aws_s3_bucket_policy" "this" {
+ count = var.objects != {} ? 1 : 0
+
+ bucket = aws_s3_bucket.this.id
+ policy = data.aws_iam_policy_document.this.json
+}
+
+# 3 -Website configuration
+resource "aws_s3_bucket_website_configuration" "this" {
+ bucket = aws_s3_bucket.this.id
+
+ index_document {
+ suffix = "index.html"
+ }
+
+ error_document {
+ key = "error.html"
+ }
+}
+
+# 4 - Access Control List
+resource "aws_s3_bucket_acl" "this" {
+ bucket = aws_s3_bucket.this.id
+ acl = var.bucket_acl
+}
+
+# 5 - Upload objects
+resource "aws_s3_object" "this" {
+ for_each = try(var.objects, {}) #{ for object, key in var.objects: object => key if try(var.objects, {}) != {} }
+
+ bucket = aws_s3_bucket.this.id
+ key = try(each.value.rendered, replace(each.value.filename, "html/", "")) # remote path
+ source = try(each.value.rendered, format("../../resources/%s", each.value.filename)) # where is the file located
+ content_type = each.value.content_type
+ storage_class = try(each.value.tier, "STANDARD")
+}
\ No newline at end of file
diff --git a/terraform/modules/s3/outputs.tf b/terraform/modules/s3/outputs.tf
new file mode 100644
index 0000000..76a1dde
--- /dev/null
+++ b/terraform/modules/s3/outputs.tf
@@ -0,0 +1,18 @@
+# --------------------------------------------------------------------
+# Amazon S3 buckets output
+# --------------------------------------------------------------------
+
+output "id" {
+ description = "The bucket domain name. Will be of format bucketname.s3.amazonaws.com"
+ value = aws_s3_bucket.this.id
+}
+
+output "arn" {
+ description = "The ARN of the bucket. Will be of format arn:aws:s3:::bucketname"
+ value = aws_s3_bucket.this.arn
+}
+
+output "website_endpoint" {
+ description = "The website endpoint, if the bucket is configured with a website. If not, this will be an empty string"
+ value = aws_s3_bucket.this.website_endpoint
+}
\ No newline at end of file
diff --git a/terraform/modules/s3/variables.tf b/terraform/modules/s3/variables.tf
new file mode 100644
index 0000000..a8dfc9a
--- /dev/null
+++ b/terraform/modules/s3/variables.tf
@@ -0,0 +1,26 @@
+# ------------------------------------------------------------------------
+# Amazon S3 variables
+# ------------------------------------------------------------------------
+
+variable "bucket_name" {
+ type = string
+ description = "The name of the bucket. Must be less than or equal to 63 characters in length."
+}
+
+variable "objects" {
+ type = map(any)
+ description = ""
+ default = {}
+}
+
+variable "block_public_access" {
+ type = bool
+ default = true
+ description = "Determines the S3 account-level Public Access Block configuration. For more information about these settings, see the AWS S3 documentation: https://docs.aws.amazon.com/AmazonS3/latest/dev/access-control-block-public-access.html"
+}
+
+variable "bucket_acl" {
+ type = string
+ default = "private"
+ description = "The canned ACL to apply. Valid values are private, public-read, public-read-write, aws-exec-read, authenticated-read, and log-delivery-write. Defaults to private. For more information about these settings, see the AWS S3 documentation: https://docs.aws.amazon.com/AmazonS3/latest/userguide/acl-overview.html#canned-acl"
+}
\ No newline at end of file
diff --git a/terraform/modules/s3/versions.tf b/terraform/modules/s3/versions.tf
new file mode 100644
index 0000000..80913d5
--- /dev/null
+++ b/terraform/modules/s3/versions.tf
@@ -0,0 +1,10 @@
+terraform {
+ required_version = ">= 1.0.6"
+
+ required_providers {
+ aws = {
+ source = "hashicorp/aws"
+ version = ">= 4.10.0"
+ }
+ }
+}
\ No newline at end of file
diff --git a/terraform/organization/bsmsapp/api-gateway.tf b/terraform/organization/bsmsapp/api-gateway.tf
new file mode 100644
index 0000000..27e29f4
--- /dev/null
+++ b/terraform/organization/bsmsapp/api-gateway.tf
@@ -0,0 +1,65 @@
+# ---------------------------------------------------------------------------
+# Amazon API Gateway
+# ---------------------------------------------------------------------------
+
+resource "aws_api_gateway_rest_api" "this" {
+ provider = aws.aws
+
+ name = "AWSAPIGateway-${local.bucket_name}"
+ description = "This lab was created by the Cloud Computing team"
+}
+
+resource "aws_api_gateway_resource" "this" {
+ provider = aws.aws
+
+ path_part = "resource"
+ parent_id = aws_api_gateway_rest_api.this.root_resource_id
+ rest_api_id = aws_api_gateway_rest_api.this.id
+}
+
+resource "aws_api_gateway_method" "this" {
+ provider = aws.aws
+
+ rest_api_id = aws_api_gateway_rest_api.this.id
+ resource_id = aws_api_gateway_resource.this.id
+ http_method = "GET"
+ authorization = "NONE"
+}
+
+resource "aws_api_gateway_integration" "this" {
+ provider = aws.aws
+
+ rest_api_id = aws_api_gateway_rest_api.this.id
+ resource_id = aws_api_gateway_resource.this.id
+ http_method = aws_api_gateway_method.this.http_method
+ integration_http_method = "POST"
+ type = "AWS_PROXY"
+ uri = aws_lambda_function.this.invoke_arn
+}
+
+resource "aws_api_gateway_deployment" "this" {
+ provider = aws.aws
+
+ rest_api_id = aws_api_gateway_rest_api.this.id
+
+ triggers = {
+ redeployment = sha1(jsonencode([
+ # aws_api_gateway_rest_api.this.body,
+ aws_api_gateway_resource.this.id,
+ aws_api_gateway_method.this.id,
+ aws_api_gateway_integration.this.id,
+ ]))
+ }
+
+ lifecycle {
+ create_before_destroy = true
+ }
+}
+
+resource "aws_api_gateway_stage" "this" {
+ provider = aws.aws
+
+ deployment_id = aws_api_gateway_deployment.this.id
+ rest_api_id = aws_api_gateway_rest_api.this.id
+ stage_name = "production"
+}
\ No newline at end of file
diff --git a/terraform/organization/bsmsapp/datasources.tf b/terraform/organization/bsmsapp/datasources.tf
new file mode 100644
index 0000000..f0c6c95
--- /dev/null
+++ b/terraform/organization/bsmsapp/datasources.tf
@@ -0,0 +1,18 @@
+# ---------------------------------------------------------------------------
+# Main resources
+# ---------------------------------------------------------------------------
+
+data "aws_region" "current" {
+ provider = aws.aws
+}
+
+data "aws_caller_identity" "current" {
+ provider = aws.aws
+}
+
+data "template_file" "userdata" {
+ template = file("${path.module}/html/index.html")
+ vars = {
+ ENDPOINT = "${aws_api_gateway_stage.this.invoke_url}"
+ }
+}
\ No newline at end of file
diff --git a/terraform/organization/bsmsapp/html/index.html b/terraform/organization/bsmsapp/html/index.html
new file mode 100644
index 0000000..43eca9a
--- /dev/null
+++ b/terraform/organization/bsmsapp/html/index.html
@@ -0,0 +1,35 @@
+
+
+
+
Este lab está desarrollado por la cátedra de Cloud Computing
+ +Por favor intenta de nuevo en algunos minutos
+ +Este lab está desarrollado por la cátedra de Cloud Computing
+ +