-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproviders.tf
53 lines (48 loc) · 1.21 KB
/
providers.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
terraform {
required_providers {
azurerm = {
source = "hashicorp/azurerm"
version = "3.95.0"
}
azapi = {
source = "azure/azapi"
version = "1.12.1"
}
random = {
source = "hashicorp/random"
version = "3.6.0"
}
time = {
source = "hashicorp/time"
version = "0.11.1"
}
local = {
source = "hashicorp/local"
version = "2.5.1"
}
# kubernetes = {
# source = "hashicorp/kubernetes"
# version = "2.27.0"
# }
}
// save state file in blob container , needs to be created manually or via createBlob.sh script
# backend "azurerm" {
# resource_group_name = "rg-aleksandar-ilicic"
# storage_account_name = "tfstate29864"
# container_name = "tfstate"
# key = "terraform.tfstate"
# }
backend "azurerm" {
resource_group_name = "rg-aleksandar-ilicic"
storage_account_name = "tfstate29864"
container_name = "azuredevops"
key = "terraform.tfstate"
}
}
provider "azurerm" {
features {}
}
# provider "kubernetes" {
# # Terraform uses the default kubeconfig path (~/.kube/config) and context
# config_path = "~/.kube/config"
# }