UPD: moved bucket replication test file from root to shared module

This commit is contained in:
xpk 2024-01-12 15:05:00 +08:00
parent a7c781b7c0
commit 0e0c86f16e
Signed by: xpk
GPG Key ID: CD4FF6793F09AB86

View File

@ -129,3 +129,9 @@ resource "aws_s3_bucket_replication_configuration" "replication-config" {
}
}
}
resource "aws_s3_object" "test-file" {
bucket = data.aws_s3_bucket.source-bucket.id
key = "replication-test-file"
content = "If this file shows up in the destination bucket, replication has been successfully configured."
}