EvalueTonSavoir/opentofu/azure/main.tf

14 lines
231 B
Terraform
Raw Normal View History

2024-11-04 19:54:15 -05:00
terraform {
required_providers {
azurerm = {
source = "hashicorp/azurerm"
version = "~> 4.0"
2024-11-04 19:54:15 -05:00
}
}
required_version = ">= 1.0"
}
provider "azurerm" {
features {}
subscription_id = var.subscription_id
2024-11-04 19:54:15 -05:00
}