Some checks are pending
Deploy Home Assistant / deploy (push) Waiting to run
Build juntekim.com / Push-to-juntekim-to-docker-hub (push) Waiting to run
Build juntekim.com / run-on-k8s (push) Blocked by required conditions
Deploy n8n / deploy (push) Waiting to run
Build & Deploy stripe-to-invoice (with DB secrets + migrations) / build (push) Waiting to run
Build & Deploy stripe-to-invoice (with DB secrets + migrations) / Deploy Postgres (PV + PVC + Deployment) (push) Blocked by required conditions
Build & Deploy stripe-to-invoice (with DB secrets + migrations) / Apply runtime secrets (push) Blocked by required conditions
Build & Deploy stripe-to-invoice (with DB secrets + migrations) / Run DB migrations (Atlas) (push) Blocked by required conditions
Build & Deploy stripe-to-invoice (with DB secrets + migrations) / deploy (push) Blocked by required conditions
Terraform Apply / Terraform Apply (push) Waiting to run
Terraform Apply / Terraform Apply - SES (push) Blocked by required conditions
51 lines
1 KiB
HCL
51 lines
1 KiB
HCL
resource "aws_s3_bucket" "this" {
|
|
bucket = var.bucket_name
|
|
}
|
|
|
|
resource "aws_s3_bucket_versioning" "this" {
|
|
bucket = aws_s3_bucket.this.id
|
|
|
|
versioning_configuration {
|
|
status = var.versioning_enabled ? "Enabled" : "Disabled"
|
|
}
|
|
}
|
|
|
|
resource "aws_s3_bucket_server_side_encryption_configuration" "this" {
|
|
bucket = aws_s3_bucket.this.id
|
|
|
|
rule {
|
|
apply_server_side_encryption_by_default {
|
|
sse_algorithm = "AES256"
|
|
}
|
|
}
|
|
}
|
|
|
|
resource "aws_s3_bucket_public_access_block" "this" {
|
|
bucket = aws_s3_bucket.this.id
|
|
|
|
block_public_acls = true
|
|
block_public_policy = true
|
|
ignore_public_acls = true
|
|
restrict_public_buckets = true
|
|
}
|
|
|
|
resource "aws_s3_bucket_lifecycle_configuration" "this" {
|
|
count = var.retention_days > 0 ? 1 : 0
|
|
bucket = aws_s3_bucket.this.id
|
|
|
|
rule {
|
|
id = "expire-objects"
|
|
status = "Enabled"
|
|
|
|
filter {}
|
|
|
|
transition {
|
|
days = 30
|
|
storage_class = "STANDARD_IA"
|
|
}
|
|
|
|
expiration {
|
|
days = var.retention_days
|
|
}
|
|
}
|
|
}
|