forked from Azure/caf-terraform-landingzones
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.cloud.tf
107 lines (105 loc) · 2.76 KB
/
variables.cloud.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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
variable "cloud" {
description = "Cloud configuration objects"
default = {}
}
# Azure Public Cloud defaults for non-Rover use
# Rover updates values based on active cloud
variable "acrLoginServerEndpoint" {
default = ".azurecr.io"
}
variable "attestationEndpoint" {
default = ".attest.azure.net"
}
variable "azureDatalakeAnalyticsCatalogAndJobEndpoint" {
default = "azuredatalakeanalytics.net"
}
variable "azureDatalakeStoreFileSystemEndpoint" {
default = "azuredatalakestore.net"
}
variable "keyvaultDns" {
default = ".vault.azure.net"
}
variable "mariadbServerEndpoint" {
default = ".mariadb.database.azure.com"
}
variable "mhsmDns" {
default = ".managedhsm.azure.net"
}
variable "mysqlServerEndpoint" {
default = ".mysql.database.azure.com"
}
variable "postgresqlServerEndpoint" {
default = ".postgres.database.azure.com"
}
variable "sqlServerHostname" {
default = ".database.windows.net"
}
variable "storageEndpoint" {
default = "core.windows.net"
}
variable "storageSyncEndpoint" {
default = "afs.azure.net"
}
variable "synapseAnalyticsEndpoint" {
default = ".dev.azuresynapse.net"
}
variable "activeDirectory" {
default = "https://login.microsoftonline.com"
}
variable "activeDirectoryDataLakeResourceId" {
default = "https://datalake.azure.net/"
}
variable "activeDirectoryGraphResourceId" {
default = "https://graph.windows.net/"
}
variable "activeDirectoryResourceId" {
default = "https://management.core.windows.net/"
}
variable "appInsightsResourceId" {
default = "https://api.applicationinsights.io"
}
variable "appInsightsTelemetryChannelResourceId" {
default = "https://dc.applicationinsights.azure.com/v2/track"
}
variable "attestationResourceId" {
default = "https://attest.azure.net"
}
variable "azmirrorStorageAccountResourceId" {
default = "null"
}
variable "batchResourceId" {
default = "https://batch.core.windows.net/"
}
variable "gallery" {
default = "https://gallery.azure.com/"
}
variable "logAnalyticsResourceId" {
default = "https://api.loganalytics.io"
}
variable "management" {
default = "https://management.core.windows.net/"
}
variable "mediaResourceId" {
default = "https://rest.media.azure.net"
}
variable "microsoftGraphResourceId" {
default = "https://graph.microsoft.com/"
}
variable "ossrdbmsResourceId" {
default = "https://ossrdbms-aad.database.windows.net"
}
variable "portal" {
default = "https://portal.azure.com"
}
variable "resourceManager" {
default = "https://management.azure.com/"
}
variable "sqlManagement" {
default = "https://management.core.windows.net:8443/"
}
variable "synapseAnalyticsResourceId" {
default = "https://dev.azuresynapse.net"
}
variable "vmImageAliasDoc" {
default = "https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/arm-compute/quickstart-templates/aliases.json"
}