Initial commit
This commit is contained in:
commit
19ed73e2aa
2 changed files with 17 additions and 0 deletions
3
Makefile
Normal file
3
Makefile
Normal file
|
@ -0,0 +1,3 @@
|
|||
|
||||
|
||||
|
14
nextcloud.tf
Normal file
14
nextcloud.tf
Normal 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"
|
||||
// }
|
||||
}
|
||||
|
||||
|
Loading…
Reference in a new issue