solutions/chapter-2/04_expressions/json/providers.tf (9 lines of code) (raw):
# Configure the Azure Provider
provider "azurerm" {
features {}
alias = "default"
}
# Configure the GitHub Provider
provider "github" {
token = "github_pat_"
owner = "jeffreygroneberg"
alias = "jeffreygroneberg"
}