feat: deploy 2 machines

This commit is contained in:
Ditmar Visser
2025-06-03 14:46:26 +00:00
parent ae4896865c
commit 9908a3408a
6 changed files with 278 additions and 0 deletions

15
opdracht-1/providers.tf Normal file
View File

@@ -0,0 +1,15 @@
terraform {
required_providers {
azurerm = {
source = "hashicorp/azurerm"
version = "~> 4.27.0"
}
}
}
provider "azurerm" {
resource_provider_registrations = "none"
subscription_id = var.azure_subscriptionid
features {}
}