43 lines
1.1 KiB
HCL
43 lines
1.1 KiB
HCL
# ------------------------------------------------------------------------------
|
|
# Amazon S3
|
|
# ------------------------------------------------------------------------------
|
|
|
|
resource "aws_s3_bucket" "this" {
|
|
bucket = var.bucket_name
|
|
object_lock_enabled = false
|
|
}
|
|
|
|
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
|
|
}
|
|
|
|
resource "aws_s3_bucket_website_configuration" "this" {
|
|
bucket = aws_s3_bucket.this.id
|
|
|
|
index_document {
|
|
suffix = "index.html"
|
|
}
|
|
|
|
error_document {
|
|
key = "error.html"
|
|
}
|
|
}
|
|
|
|
resource "aws_s3_bucket_acl" "this" {
|
|
bucket = aws_s3_bucket.this.id
|
|
acl = var.bucket_acl
|
|
}
|
|
|
|
resource "aws_s3_object" "this" {
|
|
for_each = try(var.objects, {})
|
|
|
|
bucket = aws_s3_bucket.this.id
|
|
key = try(each.value.rendered, replace(each.value.filename, "html/", ""))
|
|
source = try(each.value.rendered, format("./../resources/%s", each.value.filename))
|
|
content_type = each.value.content_type
|
|
storage_class = try(each.value.tier, "STANDARD")
|
|
}
|