-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprovider.tf
42 lines (41 loc) · 948 Bytes
/
provider.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
terraform {
required_version = "1.10.4"
required_providers {
azurerm = {
source = "hashicorp/azurerm"
version = "~> 3.117.0"
}
azuread = {
source = "hashicorp/azuread"
version = "~> 2.53.0"
}
kubernetes = {
source = "hashicorp/kubernetes"
version = "~> 2.35.0"
}
helm = {
source = "hashicorp/helm"
version = "~> 2.17.0"
}
}
backend "azurerm" {
storage_account_name = "stfdaksnginxtf"
resource_group_name = "rg-terraform-fdaks"
container_name = "terraform"
key = "terraform.tfstate"
}
}
provider "azurerm" {
subscription_id = "506fa660-c543-49a7-b766-aca51cd53ac4"
features {
resource_group {
prevent_deletion_if_contains_resources = false
}
application_insights {
disable_generated_rule = false
}
log_analytics_workspace {
permanently_delete_on_destroy = true
}
}
}