Skip to content

Commit 454a7a3

Browse files
authored
vars
1 parent 5706ac6 commit 454a7a3

1 file changed

Lines changed: 29 additions & 0 deletions

File tree

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
# variables.tf
2+
# This file defines the input variables used in the Terraform configuration.
3+
# Each variable includes a description, type, and optional default value.
4+
5+
variable "subscription_id" {
6+
description = "The Azure subscription ID to use for the AzureRM provider."
7+
type = string
8+
}
9+
10+
variable "resource_group_name" {
11+
type = string
12+
description = "Name of the resource group"
13+
}
14+
15+
variable "location" {
16+
type = string
17+
description = "Azure region"
18+
default = "eastus"
19+
}
20+
21+
variable "workspace_name" {
22+
type = string
23+
description = "Name of the Azure ML workspace"
24+
}
25+
26+
variable "compute_name" {
27+
type = string
28+
description = "Name of the compute cluster"
29+
}

0 commit comments

Comments
 (0)