Basic AWS TF Modules

Table Of Contents

http_api_gateway

module "http_api_gateway"{
        source = "./http_api_gateway"
}

http_api_gateway_route_lambda

module "http_api_gateway_route_lambda"{
        source = "./http_api_gateway_route_lambda"
}

lambda_from_s3_object

module "lambda_from_s3_object"{
        source = "./lambda_from_s3_object"
}

on_demand_dynamodb_table

module "on_demand_dynamodb_table"{
        source = "./on_demand_dynamodb_table"
}

private_bucket_with_object

module "private_bucket_with_object"{
        source = "./private_bucket_with_object"
}

scheduled_lambda_from_s3_object

module "scheduled_lambda_from_s3_object"{
        source = "./scheduled_lambda_from_s3_object"
}