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
+19
View File
@@ -0,0 +1,19 @@
terraform {
required_version = "~>1.8"
required_providers {
scaleway = {
source = "scaleway/scaleway"
version = "~>2.13"
}
}
}
provider "scaleway" {
zone = "fr-par-2"
region = "fr-par"
access_key = var.scaleway_access_key
secret_key = var.scaleway_secret_key
organization_id = var.scaleway_organization_id
}