forked from Je0pardy/cloudformazure
-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
57 lines (47 loc) · 1.21 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
variable "resource_group_name" {
type = string
description = "RG name in Azure"
}
variable "resource_group_location" {
type = string
description = "RG location in Azure"
}
variable "virtual_network_name" {
type = string
description = "VNET name in Azure"
}
variable "subnet_name" {
type = string
description = "Subnet name in Azure"
}
variable "public_ip_name" {
type = string
description = "Public IP name in Azure"
}
variable "network_security_group_name" {
type = string
description = "NSG name in Azure"
}
variable "network_interface_name" {
type = string
description = "NIC name in Azure"
}
variable "linux_virtual_machine_name" {
type = string
description = "Linux VM name in Azure"
}
variable "linux_vm_image_publisher" {
type = string
description = "Virtual machine source image publisher"
default = "Canonical"
}
variable "linux_vm_image_offer" {
type = string
description = "Virtual machine source image offer"
default = "0001-com-ubuntu-server-focal"
}
variable "ubuntu_2004_gen2_sku" {
type = string
description = "SKU for Ubuntu 20.04 LTS Gen2"
default = "20_04-lts-gen2"
}