-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmain.tf
More file actions
50 lines (39 loc) · 1.07 KB
/
main.tf
File metadata and controls
50 lines (39 loc) · 1.07 KB
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
locals {
settings = yamldecode(file("./settings.yaml"))
}
resource "azurerm_resource_group" "rg-vwan" {
name = "rg-ussc-core-vwan"
location = "South Central US"
}
resource "azurerm_resource_group" "rg-network" {
name = "rg-global-core-network"
location = "South Central US"
}
resource "azurerm_resource_group" "ADDS-ussc" {
name = "rg-ussc-core-adds"
location = "South Central US"
}
resource "azurerm_resource_group" "ADDS-euw" {
name = "rg-euw-core-adds"
location = "West Europe"
}
resource "azurerm_resource_group" "ussc-admin" {
name = "rg-ussc-core-admin"
location = "South Central US"
}
resource "azurerm_resource_group" "euw-admin" {
name = "rg-euw-core-admin"
location = "West Europe"
}
resource "azurerm_resource_group" "ussc-law" {
name = "rg-ussc-core-log"
location = "South Central US"
}
resource "azurerm_resource_group" "euw-law" {
name = "rg-euw-core-log"
location = "West Europe"
}
resource "azurerm_resource_group" "ckalab-ussc" {
name = "rg-ussc-dev-ckalab"
location = "South Central US"
}