Add synapse 101

This commit is contained in:
murggu
2022-11-08 12:47:54 +01:00
parent 329bfd1f6e
commit 063a26bb31
9 changed files with 258 additions and 0 deletions

View File

@ -0,0 +1,24 @@
terraform {
required_providers {
azurerm = {
version = "= 3.30.0"
}
}
}
provider "azurerm" {
features {}
}
data "azurerm_client_config" "current" {}
data "http" "ip" {
url = "https://ifconfig.me"
}
resource "azurerm_resource_group" "default" {
name = "rg-${local.basename}"
location = var.location
tags = local.tags
}