Skip to content

Instantly share code, notes, and snippets.

@weeyin83
Created December 30, 2023 12:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save weeyin83/f0777365e9a0528435f63cd3c9ee73f0 to your computer and use it in GitHub Desktop.
Save weeyin83/f0777365e9a0528435f63cd3c9ee73f0 to your computer and use it in GitHub Desktop.
##
# Terraform Configuration
##
terraform {
required_version = ">=1.6.0"
required_providers {
azurerm = {
source = "hashicorp/azurerm"
version = "~> 3.85.0"
}
azuread = {
source = "hashicorp/azuread"
version = "~> 2.47.0"
}
github = {
source = "integrations/github"
version = "~> 5.0"
}
random = {
source = "hashicorp/random"
version = "~> 3.6.0"
}
}
}
##
# Provider configuration
##
provider "azurerm" {
features {}
}
provider "random" {
# Configuration options available
}
provider "azuread" {
# Configuration options
}
provider "github" {
# Configuration options
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment