-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
86 lines (71 loc) · 1.94 KB
/
variables.tf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
# General Variables
variable "subscription_id" {
type = string
description = "The Azure subscription ID."
}
variable "resource_group_name" {
description = "The name of the resource group where the resources will be created."
type = string
}
variable "location" {
description = "The Azure region where the resources will be created."
type = string
}
variable "tags" {
description = "A mapping of tags to assign to the resources."
type = map(string)
default = {}
}
# Storage Account Module
variable "account_kind" {
description = "Defines the kind of storage account."
type = string
}
variable "account_tier" {
description = "The tier of the storage account (Standard or Premium)."
type = string
default = "Standard"
}
variable "account_replication_type" {
description = "The replication type of the storage account (LRS, GRS, RAGRS, ZRS)."
type = string
default = "LRS"
}
variable "storage_account_name" {
description = "The name of the storage account. Must be globally unique."
type = string
}
variable "storage_container_name" {
description = "The name of the storage container."
type = string
}
# Network Module
variable "vnet_name" {
description = "The name of the Virtual Network (VNET)"
type = string
}
variable "subnet_name" {
description = "The name of the Subnet"
type = string
}
variable "nsg_name" {
description = "The name of the Network Security Group (NSG)"
type = string
}
# Virtual Machine Module
variable "vm_username" {
type = string
description = "The username for the Virtual Machine."
}
variable "vm_password" {
type = string
description = "The password for the Virtual Machine."
}
variable "vm_name" {
type = string
description = "The name of the Virtual Machine."
}
variable "vm_size" {
type = string
description = "The size of the Virtual Machine."
}