-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathvar.tf
63 lines (55 loc) · 1.41 KB
/
var.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
# variables.tf
variable "subscription_id" {
description = "Azure Subscription ID"
type = string
}
variable "client_id" {
description = "Azure Client ID (Service Principal)"
type = string
}
variable "client_secret" {
description = "Azure Client Secret (Service Principal)"
type = string
sensitive = true
}
variable "tenant_id" {
description = "Azure Tenant ID"
type = string
}
variable "resource_group_name" {
description = "The name of the resource group."
type = string
}
variable "location" {
description = "The Azure location where resources will be created."
type = string
}
variable "vm_name" {
description = "Name of the virtual machine"
type = string
default = "aostemplate"
}
variable "vm_size" {
description = "Size of the virtual machine"
type = string
default = "Standard_B1ls"
}
variable "image_name" {
description = "Name of the private image"
type = string
default = "aostemplate-image-20241017194443"
}
variable "image_id" {
description = "The ID of the private image to use for the virtual machine"
type = string
}
variable "admin_username" {
description = "Admin username for the virtual machine"
type = string
default = "adminuser"
}
variable "admin_password" {
description = "Admin password for the virtual machine"
type = string
sensitive = true
}