-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathversions.tf
More file actions
39 lines (36 loc) · 980 Bytes
/
versions.tf
File metadata and controls
39 lines (36 loc) · 980 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
##############################################################################
# Provider & Terraform version requirements
##############################################################################
terraform {
required_version = ">= 1.5"
required_providers {
azurerm = {
source = "hashicorp/azurerm"
version = "~> 4.0"
}
tls = {
source = "hashicorp/tls"
version = "~> 4.0"
}
random = {
source = "hashicorp/random"
version = "~> 3.6"
}
}
# Uncomment to store state in Azure Storage (recommended for teams)
# backend "azurerm" {
# resource_group_name = "rg-tfstate"
# storage_account_name = "stotfstate"
# container_name = "openclaw"
# key = "openclaw.tfstate"
# }
}
provider "azurerm" {
features {
key_vault {
purge_soft_delete_on_destroy = false
recover_soft_deleted_key_vaults = true
}
}
subscription_id = var.subscription_id
}