Silly98 commited on
Commit
c33d831
·
verified ·
1 Parent(s): 3125437

Update chatgpt

Browse files
Files changed (1) hide show
  1. chatgpt +33 -8
chatgpt CHANGED
@@ -1,14 +1,39 @@
1
- variable "subscription_id" { type = string }
2
- variable "location" { type = string default = "eastus" }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3
 
4
- variable "prefix" { type = string default = "cad" }
5
- variable "admin_username" { type = string default = "azureuser" }
 
6
 
7
- variable "ssh_public_key" { type = string } # paste your .pub content
8
- variable "allowed_ssh_cidr" { type = string } # your public IP like "x.x.x.x/32"
 
 
9
 
10
- variable "vm_size" { type = string default = "Standard_NC4as_T4_v3" }
11
- variable "os_disk_gb" { type = number default = 250 }
 
 
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