resource "aws_s3_bucket_object" "nginx_conf" { # Uploads the nginx.conf to tools bucket bucket = "${var.s3_tools_bucket_name}" key = "s3/path/${var.app_name}/nginx.conf" source = "files/nginx.conf"
tags = { md5 = "${md5(file("files/nginx.conf"))}" }}