Added terraform

This commit is contained in:
2020-04-25 20:03:46 +01:00
parent 5a1e9fa22c
commit 489e3779d3
6 changed files with 68 additions and 0 deletions

8
terraform/bucket.tf Normal file
View File

@@ -0,0 +1,8 @@
resource "scaleway_object_bucket" "kubernetes" {
name = "cluster.fun"
acl = "private"
}
output "bucket_id" {
value = scaleway_object_bucket.kubernetes.id
}