Created
August 1, 2019 20:01
-
-
Save Adron/99a5a5a795179aac2a0a8c007efcaf20 to your computer and use it in GitHub Desktop.
Setting up an Azure Resource Group.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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