-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path1_az_rm.tf
26 lines (22 loc) · 806 Bytes
/
1_az_rm.tf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#Section 1 - Azure RM Resource Group
provider "azurerm" {
version = "2.20.0"
subscription_id = var.subscription
client_id = var.client_Id
client_secret = var.client_Secret
tenant_id = var.tenant_Id
features {
#The features block supports the following:
#key_vault - (Optional) A key_vault block as defined below.
#virtual_machine - (Optional) A virtual_machine block as defined below.
#virtual_machine_scale_set - (Optional) A virtual_machine_scale_set block as defined below.
#Since I'm not using any of these, this required argument is blank, other than the comments.
}
}
resource "azurerm_resource_group" "DemoRG" {
name = "PowerShellChicago_FullStackGeek"
location = var.location
tags = {
environment = "PowerShellChicago"
}
}