-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathvariables.tf
81 lines (76 loc) · 1.46 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
# Provider Variables
variable "subscription_id" {}
variable "client_id" {}
variable "client_secret" {}
variable "tenant_id" {}
# Main Variables
variable "suffix" {
type = string
default = "saprouter-demo"
}
variable "region" {
type = string
default = "eastus2"
}
variable "bootstrap-attacker-vm" {
type = string
default = "./configurations/setup_attacker-vm.txt"
}
variable "bootstrap-saprouter-vm" {
type = string
default = "./configurations/setup_saprouter-vm.txt"
}
# FortiGate related variables
variable "bootstrap-fgtvm" {
type = string
default = "./configurations/fgtvm.conf"
}
variable "adminusername" {
type = string
default = "azureadmin"
}
variable "adminpassword" {
type = string
default = "Fortinet123#"
}
variable "size" {
type = string
default = "Standard_F4s"
}
variable "publisher" {
type = string
default = "fortinet"
}
variable "fgtoffer" {
type = string
default = "fortinet_fortigate-vm_v5"
}
variable "license" {
type = string
description = "Provide PATH if BYOL licenses is used"
default = ""
}
variable "flexvm_token" {
type = string
default = ""
}
variable "fgtsku" {
type = string
default = "fortinet_fg-vm"
}
variable "fgtversion" {
type = string
default = "7.4.0"
}
variable "fgtiface1" {
type = string
default = "10.0.1.10"
}
variable "fgtiface2" {
type = string
default = "10.0.2.10"
}
variable "fgtiface3" {
type = string
default = "10.0.3.10"
}