From e03c901cb535e53fcd32991768933584546975d0 Mon Sep 17 00:00:00 2001 From: Mathis Kappeler Date: Tue, 19 Dec 2023 13:34:10 +0100 Subject: [PATCH 1/2] test --- main.tf | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/main.tf b/main.tf index 3317123..6e54ad7 100644 --- a/main.tf +++ b/main.tf @@ -17,4 +17,10 @@ terraform { # Configure the Azure provider provider "azurerm" { features {} +} + + +resource "meganeura-rg" "example" { + name = "example" + location = "switzerlandnorth" } \ No newline at end of file From ebac4de8d010f0c56f3bd8b5b9cc50586ec34c13 Mon Sep 17 00:00:00 2001 From: Mathis Kappeler Date: Tue, 19 Dec 2023 13:35:49 +0100 Subject: [PATCH 2/2] test --- main.tf | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/main.tf b/main.tf index 6e54ad7..b11b6bf 100644 --- a/main.tf +++ b/main.tf @@ -20,7 +20,7 @@ provider "azurerm" { } -resource "meganeura-rg" "example" { - name = "example" - location = "switzerlandnorth" +resource "azurerm_resource_group" "example" { + name = "meganeura-rg" + location = "Switzerland North" } \ No newline at end of file