Add Scaleway IAC configuration with OpenTofu integration and environment setup

This commit is contained in:
2025-04-25 21:21:19 +02:00
parent cc15ff3247
commit bd8bf86227
11 changed files with 253 additions and 0 deletions
+6
View File
@@ -0,0 +1,6 @@
resource "scaleway_object" "system_id_encryption_key" {
bucket = scaleway_object_bucket.infra_assets.id
key = "keys/${var.system_id}"
content_base64 = base64encode(var.encryption_key)
}