Skip to content

Instantly share code, notes, and snippets.

@carsten-j
carsten-j / remoteState.tf
Last active January 7, 2019 19:58
Terraform backend storage account on Azure
# Configure the Azure Provider
provider "azurerm" {
version = "=1.20.0"
}
resource "azurerm_resource_group" "remotestate" {
name = "tfrs"
location = "West Europe"
}