-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproviders.tf
More file actions
27 lines (25 loc) · 814 Bytes
/
providers.tf
File metadata and controls
27 lines (25 loc) · 814 Bytes
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
provider "azurerm" {
disable_correlation_request_id = false
environment = "public"
resource_provider_registrations = "none"
resource_providers_to_register = local.resource_providers_to_register
storage_use_azuread = true
features {
key_vault {
recover_soft_deleted_key_vaults = true
recover_soft_deleted_certificates = true
recover_soft_deleted_keys = true
recover_soft_deleted_secrets = true
}
resource_group {
prevent_deletion_if_contains_resources = true
}
}
}
provider "azapi" {
default_location = var.location
default_tags = var.tags
disable_correlation_request_id = false
environment = "public"
skip_provider_registration = false
}