Rearranged file structure. Separated App code from Terraform code.

This commit is contained in:
2025-08-15 14:10:57 +02:00
parent db37434b78
commit a9ac5f2549
8 changed files with 1 additions and 1 deletions

27
terraform/variables.tf Normal file
View File

@@ -0,0 +1,27 @@
variable "subscription_id" {
description = "The Azure Subscription ID to use for the resources."
type = string
}
variable "azure_client_id" {
description = "The Azure Client ID for authentication."
type = string
}
variable "azure_tenant_id" {
description = "The Azure Tenant ID for authentication."
type = string
}
variable "azure_client_secret" {
description = "The Azure Client Secret for authentication."
type = string
sensitive = true
}
variable "project_name" {
description = "The name used to construct Azure resource names."
type = string
}