Files
terraform-aws-S3-bucket/bucket.tf
Hubert Cornet 4d39a8143b
Some checks failed
Terraform Apply / Terraform Apply (push) Failing after 31s
Actualiser bucket.tf
2025-08-06 12:20:44 +02:00

8 lines
154 B
HCL

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