Add synapse 201
This commit is contained in:
22
quickstart/201-synapse-secure/main.tf
Normal file
22
quickstart/201-synapse-secure/main.tf
Normal file
@ -0,0 +1,22 @@
|
||||
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
|
||||
}
|
Reference in New Issue
Block a user