79695862

Date: 2025-07-09 15:11:01
Score: 1
Natty:
Report link
resource "random_id" "bucket_suffix" {
  byte_length = 4
}

module "s3_bucket" {
  source  = "terraform-aws-modules/s3-bucket/aws"
  version = "~> 4.0"

  # Basic Configuration
  bucket = "${local.name_prefix}-images-${random_id.bucket_suffix.hex}"
It is also good option
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Rajesh k