Skip to content

Instantly share code, notes, and snippets.

@weeyin83
Created June 28, 2025 12:14
Show Gist options
  • Save weeyin83/03822f384fab3b834f5316a32eaea2b0 to your computer and use it in GitHub Desktop.
Save weeyin83/03822f384fab3b834f5316a32eaea2b0 to your computer and use it in GitHub Desktop.
##
# Terraform Configuration
##
terraform {
required_version = ">= 1.10.0"
required_providers {
azurerm = {
source = "hashicorp/azurerm"
version = ">= 3.71, < 5.0.0"
}
random = {
source = "hashicorp/random"
version = ">= 3.5.1, < 4.0.0"
}
azapi = {
source = "Azure/azapi"
version = ">= 2.2.0, < 3.0.0"
}
}
}
provider "azapi" {
# Configuration options
}
provider "azurerm" {
features {}
subscription_id = "xxx-xxx-xxx-xxx"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment