Files
homelab-infra/apps/smtp-relay/terraform/versions.tf
T
panxiao81 88a02ababa
lint / yaml (push) Has been cancelled
lint / ansible (push) Has been cancelled
lint / terraform (push) Has been cancelled
Establish clean homelab infrastructure baseline
Reorganize the brownfield repository, remove retired and generated artifacts, harden ignore rules, and record the GitOps/IaC redesign.
2026-09-09 16:47:20 +00:00

15 lines
375 B
Terraform

terraform {
required_version = ">= 1.5"
required_providers {
azuread = {
source = "hashicorp/azuread"
version = "~> 3.0"
}
}
}
# Authenticates via Azure CLI by default: run `az login` as an account that can
# create app registrations AND grant admin consent (Global Admin / Privileged Role
# Admin) before `terraform apply`.
provider "azuread" {}