Skip to content

Instantly share code, notes, and snippets.

View buniumasta's full-sized avatar
🎯
Focusing

Bartosz Ostrowski buniumasta

🎯
Focusing
View GitHub Profile
@buniumasta
buniumasta / TerraSingle_main.tf
Created December 21, 2020 11:33
Terraform Single Linux VM with SSH access.
provider "azurerm" {
features {}
}
resource "azurerm_resource_group" "main" {
name = "${var.prefix}-resources"
location = var.location
}
resource "azurerm_virtual_network" "main" {