Update chatgpt
Browse files
chatgpt
CHANGED
|
@@ -1,14 +1,39 @@
|
|
| 1 |
-
variable "subscription_id" {
|
| 2 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 3 |
|
| 4 |
-
variable "
|
| 5 |
-
|
|
|
|
| 6 |
|
| 7 |
-
variable "
|
| 8 |
-
|
|
|
|
|
|
|
| 9 |
|
| 10 |
-
variable "
|
| 11 |
-
|
|
|
|
|
|
|
| 12 |
|
| 13 |
|
| 14 |
|
|
|
|
| 1 |
+
variable "subscription_id" {
|
| 2 |
+
type = string
|
| 3 |
+
}
|
| 4 |
+
|
| 5 |
+
variable "location" {
|
| 6 |
+
type = string
|
| 7 |
+
default = "eastus"
|
| 8 |
+
}
|
| 9 |
+
|
| 10 |
+
variable "prefix" {
|
| 11 |
+
type = string
|
| 12 |
+
default = "cad"
|
| 13 |
+
}
|
| 14 |
+
|
| 15 |
+
variable "admin_username" {
|
| 16 |
+
type = string
|
| 17 |
+
default = "azureuser"
|
| 18 |
+
}
|
| 19 |
+
|
| 20 |
+
variable "ssh_public_key" {
|
| 21 |
+
type = string
|
| 22 |
+
}
|
| 23 |
|
| 24 |
+
variable "allowed_ssh_cidr" {
|
| 25 |
+
type = string
|
| 26 |
+
}
|
| 27 |
|
| 28 |
+
variable "vm_size" {
|
| 29 |
+
type = string
|
| 30 |
+
default = "Standard_NC4as_T4_v3"
|
| 31 |
+
}
|
| 32 |
|
| 33 |
+
variable "os_disk_gb" {
|
| 34 |
+
type = number
|
| 35 |
+
default = 250
|
| 36 |
+
}
|
| 37 |
|
| 38 |
|
| 39 |
|