Code with Terraform
POC on AWS Services like IAM, S3, Lambda, API Gateway & CloudFront using Terraform (IaC) Reference is been taken from: https://github.com/KanchanSoni16/terraform-s3-lambda-apigatway Document: https://docs.google.com/ Terraform Architecture S3 (Simple Storage Service) Brief: An object storage service that offers industry-leading scalability, data availability, security, and performance code Files used: aws_s3.tf resource "aws_s3_bucket" "api_bucket" { bucket = "${var.myregion}-${var.bucket_name}" tags = { Name = "${var.myregion}-${var.bucket_name}" Environment = "${var.environment}" } } resource "aws_s3_bucket_acl" "api_acl" { bucket = aws_s3_bucket.api_bucket.id acl = var.acl depends_on = [ aws_s3_bucket.api_bucket ] } variable.tf variable "bucket_name" { default = "" } variable "environment" { default...