potential ci/cd process in the works

This commit is contained in:
2025-11-08 12:47:09 +00:00
parent 56ea4c6178
commit 36808ca32a
10 changed files with 226 additions and 60 deletions
+30
View File
@@ -0,0 +1,30 @@
variable "resource_group_name" {
description = "Resource Group to create resources in"
type = string
}
variable "location" {
description = "Azure region"
type = string
}
variable "environment" {
description = "Environment tag (dev/prod)"
type = string
}
variable "project" {
description = "Project tag"
type = string
default = "TerraformBootcamp"
}
variable "storage_account_url" {
description = "URL of the storage account to link to data factory"
type = string
}
variable "data_factory_name" {
description = "The unique name of the data factory"
type = string
}