mirror of
https://github.com/Noratrieb/vps.git
synced 2026-01-14 16:55:00 +01:00
10 lines
220 B
HCL
10 lines
220 B
HCL
resource "aws_s3_bucket" "state" {
|
|
bucket = "nilstrieb-states"
|
|
}
|
|
|
|
resource "aws_s3_bucket_versioning" "state" {
|
|
bucket = aws_s3_bucket.state.bucket
|
|
versioning_configuration {
|
|
status = "Enabled"
|
|
}
|
|
}
|