30 lines
633 B
Terraform
30 lines
633 B
Terraform
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
|
|
} |