-
Notifications
You must be signed in to change notification settings - Fork 78
/
variables.resourceprovider.tf
87 lines (85 loc) · 3.76 KB
/
variables.resourceprovider.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
variable "subscription_register_resource_providers_enabled" {
type = bool
description = <<DESCRIPTION
Whether to register resource providers for the subscription.
Use `var.subscription_register_resource_providers_and_features` to customize registration.
DESCRIPTION
default = false
}
variable "subscription_register_resource_providers_and_features" {
type = map(set(string))
description = <<DESCRIPTION
The map of resource providers to register.
The map keys are the resource provider namespace, e.g. `Microsoft.Compute`.
The map values are a list of provider features to enable.
Leave the value empty to not register any resource provider features.
The default values are taken from [Hashicorp's AzureRM provider](https://github.com/hashicorp/terraform-provider-azurerm/blob/main/internal/resourceproviders/required.go).
DESCRIPTION
nullable = false
default = {
"Microsoft.ApiManagement" = [],
"Microsoft.AppPlatform" = [],
"Microsoft.Authorization" = [],
"Microsoft.Automation" = [],
"Microsoft.AVS" = [],
"Microsoft.Blueprint" = [],
"Microsoft.BotService" = [],
"Microsoft.Cache" = [],
"Microsoft.Cdn" = [],
"Microsoft.CognitiveServices" = [],
"Microsoft.Compute" = [],
"Microsoft.ContainerInstance" = [],
"Microsoft.ContainerRegistry" = [],
"Microsoft.ContainerService" = [],
"Microsoft.CostManagement" = [],
"Microsoft.CustomProviders" = [],
"Microsoft.Databricks" = [],
"Microsoft.DataLakeAnalytics" = [],
"Microsoft.DataLakeStore" = [],
"Microsoft.DataMigration" = [],
"Microsoft.DataProtection" = [],
"Microsoft.DBforMariaDB" = [],
"Microsoft.DBforMySQL" = [],
"Microsoft.DBforPostgreSQL" = [],
"Microsoft.DesktopVirtualization" = [],
"Microsoft.Devices" = [],
"Microsoft.DevTestLab" = [],
"Microsoft.DocumentDB" = [],
"Microsoft.EventGrid" = [],
"Microsoft.EventHub" = [],
"Microsoft.HDInsight" = [],
"Microsoft.HealthcareApis" = [],
"Microsoft.GuestConfiguration" = [],
"Microsoft.KeyVault" = [],
"Microsoft.Kusto" = [],
"microsoft.insights" = [],
"Microsoft.Logic" = [],
"Microsoft.MachineLearningServices" = [],
"Microsoft.Maintenance" = [],
"Microsoft.ManagedIdentity" = [],
"Microsoft.ManagedServices" = [],
"Microsoft.Management" = [],
"Microsoft.Maps" = [],
"Microsoft.MarketplaceOrdering" = [],
"Microsoft.Media" = [],
"Microsoft.MixedReality" = [],
"Microsoft.Network" = [],
"Microsoft.NotificationHubs" = [],
"Microsoft.OperationalInsights" = [],
"Microsoft.OperationsManagement" = [],
"Microsoft.PolicyInsights" = [],
"Microsoft.PowerBIDedicated" = [],
"Microsoft.Relay" = [],
"Microsoft.RecoveryServices" = [],
"Microsoft.Resources" = [],
"Microsoft.Search" = [],
"Microsoft.Security" = [],
"Microsoft.SecurityInsights" = [],
"Microsoft.ServiceBus" = [],
"Microsoft.ServiceFabric" = [],
"Microsoft.Sql" = [],
"Microsoft.Storage" = [],
"Microsoft.StreamAnalytics" = [],
"Microsoft.Web" = [],
}
}