Files
terraform-aws-S3-bucket/bucket.tf
Hubert Cornet 95ddd99831
Some checks failed
Terraform Apply / Terraform Apply (push) Failing after 20s
Actualiser bucket.tf
2025-08-05 13:34:02 +02:00

7 lines
155 B
HCL

resource "aws_s3_bucket" "my_bucket" {
bucket = "my-unique-bucket-name"
tags = {
Name = "MyS3Bucket"
Environment = "Production"
}
}