-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathvariables.tf
37 lines (29 loc) · 826 Bytes
/
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
##################### Azure Info ######################
# victim company name
variable "victim_company" {
type = string
description = "This is the main naming convention for objects within Azure"
}
# azure region
variable "location" {
type = string
description = "Azure region where the resources will be created"
default = "West US 2"
}
################## K8 ##################################
#Nodes
variable "nodecount" {
type = string
description = "Kubernetes Node Count"
default = "2"
}
#Client ID from Azure (App Registration)
variable "client_id" {
type = string
description = "Client ID from Azure for K8"
}
#Client Secret From Azure (App Registration)
variable "client_secret" {
type = string
description = "Client secret from Azure for K8"
}