Initial commit

This commit is contained in:
Erik Stambaugh 2021-12-26 13:19:05 -08:00
commit 19ed73e2aa
2 changed files with 17 additions and 0 deletions

3
Makefile Normal file
View file

@ -0,0 +1,3 @@

14
nextcloud.tf Normal file
View file

@ -0,0 +1,14 @@
resource "random_pet" "name" {}
resource "aws_s3_bucket" "bucket" {
bucket = "nextcloud-${random_pet.name.id}"
acl = "private"
// tags = {
// Name = "My bucket"
// Environment = "Dev"
// }
}