This repository has been archived on 2024-04-25. You can view files and clone it, but cannot push or open issues or pull requests.
python-azure-example/terraform/providers.tf

19 lines
264 B
Terraform
Raw Normal View History

2024-03-01 14:11:34 +00:00
terraform {
required_providers {
azurerm = {
2024-03-01 21:05:49 +00:00
source = "hashicorp/azurerm"
2024-03-01 14:11:34 +00:00
version = "3.94.0"
}
2024-03-01 21:05:49 +00:00
random = {
source = "hashicorp/random"
version = "3.6.0"
}
2024-03-01 14:11:34 +00:00
}
}
2024-03-01 21:05:49 +00:00
provider "random" {}
2024-03-01 14:11:34 +00:00
provider "azurerm" {
features {}
}