Enhance Azure example configurations: add subscription_id and tenant_id variables, update terraform.tfvars.example, and refine .gitignore for tfplan files

This commit is contained in:
2026-08-23 22:38:48 +02:00
parent dac5cea5ee
commit 245d0dfd96
4 changed files with 16 additions and 0 deletions
+11
View File
@@ -1,3 +1,14 @@
variable "subscription_id" {
description = "Azure subscription ID to deploy into."
type = string
}
variable "tenant_id" {
description = "Azure AD tenant ID. Leave empty to use the tenant of the credentials Terraform is running with."
type = string
default = ""
}
variable "location" {
description = "Azure region to deploy into."
type = string