forked from swift2geek/AzureProblem
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathversions.tf
More file actions
43 lines (38 loc) · 852 Bytes
/
Copy pathversions.tf
File metadata and controls
43 lines (38 loc) · 852 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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
terraform {
required_version = ">= 1.5.0"
required_providers {
azurerm = {
source = "hashicorp/azurerm"
version = "~> 3.80"
}
azuread = {
source = "hashicorp/azuread"
version = "~> 2.40"
}
random = {
source = "hashicorp/random"
version = "~> 3.4"
}
}
# Uncomment for remote state management
# backend "azurerm" {
# resource_group_name = "rg-terraform-state"
# storage_account_name = "saterraformstate"
# container_name = "tfstate"
# key = "secure-database.terraform.tfstate"
# }
}
provider "azurerm" {
features {
key_vault {
purge_soft_delete_on_destroy = true
recover_soft_deleted_key_vaults = true
}
}
}
provider "azuread" {
# Configuration options
}
provider "random" {
# Configuration options
}