Skip to content

Instantly share code, notes, and snippets.

@Adron
Created August 1, 2019 20:01
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 Adron/99a5a5a795179aac2a0a8c007efcaf20 to your computer and use it in GitHub Desktop.
Save Adron/99a5a5a795179aac2a0a8c007efcaf20 to your computer and use it in GitHub Desktop.
Setting up an Azure Resource Group.
provider "azurerm" {
version = "=1.27.0"
subscription_id = "00000000-0000-0000-0000-000000000000"
tenant_id = "11111111-1111-1111-1111-111111111111"
}
resource "azurerm_resource_group" "adrons_resource_group_workspace" {
name = "adrons_workspace"
location = "West US 2"
tags = {
environment = "Development"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment