This repository has been archived on 2022-11-03. You can view files and clone it, but cannot push or open issues or pull requests.
DevOpsOpenHack/support/sqlsecretrotation/iac/terraform/providers.tf
2022-11-03 16:41:13 -04:00

16 lines
230 B
HCL

terraform {
required_providers {
azurerm = {
source = "hashicorp/azurerm"
version = "2.94.0"
}
}
backend "azurerm" {
}
}
data "azurerm_client_config" "current" {}
provider "azurerm" {
features {}
}