-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvars.tf
46 lines (44 loc) · 1.22 KB
/
vars.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
variable "namespace" {
description = "The project namespace to use for unique resource naming"
default = "automation-vyos"
type = string
}
variable "resource_group" {
description = "The name of your Azure Resource Group."
default = "<YOUR RESOURCE GROUP>"
}
variable "hostname" {
description = "The name of your VM"
default = "vyosaz01new"
}
variable "location" {
description = "The region where all resources will deploy"
default = "LOCATION EXAMPLE: West Europe"
}
variable "cidr" {
description = "cidr is used for virtual-network"
default = "10.0.0.0/22"
type = string
}
variable "pub_subnet" {
description = "network public that it is used for virtual-network "
default = "10.0.2.0/24"
type = string
}
variable "vyos_image_id" {
description = "id image "
default = "1.4.0"
type = string
}
variable "image_publisher" {
description = "Name of the publisher of the image (az vm image list)"
default = "sentriumsl"
}
variable "image_offer" {
description = "Name of the offer (az vm image list)"
default = "vyos-1-2-lts-on-azure"
}
variable "image_sku" {
description = "Image SKU to apply (az vm image list)"
default = "vyos-1-3"
}