Skip to content

Instantly share code, notes, and snippets.

@rahulsahay19
Created March 22, 2020 18:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rahulsahay19/8373cb59e9da06a593d2a53b7c5ef1c3 to your computer and use it in GitHub Desktop.
Save rahulsahay19/8373cb59e9da06a593d2a53b7c5ef1c3 to your computer and use it in GitHub Desktop.
main.tf
provider "azurerm" {
version = "=2.0.0"
features {}
}
resource "azurerm_resource_group" "terraform-rg" {
name = "terraform-basic"
location = "eastus"
tags = {
env = "dev"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment