We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5706ac6 commit 454a7a3Copy full SHA for 454a7a3
1 file changed
terraform-infrastructure/variables.tf
@@ -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
12
+ description = "Name of the resource group"
13
14
15
+variable "location" {
16
17
+ description = "Azure region"
18
+ default = "eastus"
19
20
21
+variable "workspace_name" {
22
23
+ description = "Name of the Azure ML workspace"
24
25
26
+variable "compute_name" {
27
28
+ description = "Name of the compute cluster"
29
0 commit comments