separate workspaces

This commit is contained in:
nora 2024-07-13 17:18:00 +02:00
parent 93f2b2c0cf
commit 5250e73722
15 changed files with 97 additions and 22 deletions

10
tf-infra/aws/state.tf Normal file
View file

@ -0,0 +1,10 @@
resource "aws_s3_bucket" "state" {
bucket = "nilstrieb-states"
}
resource "aws_s3_bucket_versioning" "state" {
bucket = aws_s3_bucket.state.bucket
versioning_configuration {
status = "Enabled"
}
}