-
Notifications
You must be signed in to change notification settings - Fork 2
/
main.tf
44 lines (38 loc) · 1.14 KB
/
main.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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
terraform {
required_providers {
azuread = {
version = "2.45.0"
source = "hashicorp/azuread"
}
azurerm = {
version = "3.80.0"
source = "hashicorp/azurerm"
}
}
}
provider "azurerm" {
features {}
}
provider "azuread" {}
module "azcagit_we" {
source = "../../terraform-module"
environment = "dev"
location_short = "we"
location = "West Europe"
unique_suffix = ""
name = "azcagit"
git_config = var.git_config
azcagit_version = var.azcagit_version
aad_resource_owner_object_ids = var.aad_resource_owner_object_ids
}
module "azcagit_ne" {
source = "../../terraform-module"
environment = "dev"
location_short = "ne"
location = "North Europe"
unique_suffix = var.unique_suffix
name = "azcagit"
git_config = var.git_config
azcagit_version = var.azcagit_version
aad_resource_owner_object_ids = var.aad_resource_owner_object_ids
}