Added bucket for storing SCP archives

This commit is contained in:
Marcus Noble 2020-08-23 11:16:02 +01:00
parent f5a7bb5abb
commit 9f65bf256a
1 changed files with 9 additions and 0 deletions

View File

@ -24,3 +24,12 @@ resource "scaleway_object_bucket" "outline" {
output "outline-bucket_id" {
value = scaleway_object_bucket.outline.id
}
resource "scaleway_object_bucket" "scp-archives" {
name = "scp-archives"
acl = "public-read"
}
output "scp-bucket_id" {
value = scaleway_object_bucket.scp-archives.id
}