-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathvariables.tf
executable file
·72 lines (56 loc) · 1.08 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
variable "gh_username" {
type = string
}
variable "gh_token" {
type = string
}
variable "tanzu_registry_username" {
type = string
}
variable "tanzu_registry_password" {
type = string
}
variable "tanzu_network_refresh_token" {
type = string
}
variable "ssh_private_key_path" {
type = string
}
variable "ssh_private_key_passphrase_protected" {
type = bool
}
variable "ssh_public_key_path" {
type = string
}
variable "ssh_username" {
type = string
}
# Azure
variable "azure_location" {
type = string
default = "centralus"
}
variable "azure_tgw_resource_group_name" {
type = string
default = "tap-gitops-workshop"
}
variable "azure_vnet_name" {
type = string
default = "tap-gitops-workshop-vnet"
}
variable "azure_vnet_cidr" {
type = string
default = "10.0.0.0/16"
}
variable "azure_jump_server_subnet_name" {
type = string
default = "jump-server-subnet"
}
variable "azure_jump_server_subnet_cidr" {
type = string
default = "10.0.0.0/24"
}
variable "azure_jump_server_nsg_name" {
type = string
default = "jump-server-nsg"
}