-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path02-variables.tf
49 lines (40 loc) · 1.29 KB
/
02-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
# Define Input Variables
# 1. Azure Location (CentralUS)
# 2. Azure Resource Group Name
# 3. Azure AKS Environment Name (Dev, QA, Prod)
# Azure Location
variable "location" {
type = string
description = "Azure Region where all these resources will be provisioned"
default = "East US"
}
# Azure Resource Group Name
variable "resource_group_name" {
type = string
description = "This variable defines the Resource Group"
default = "terraform-aks"
}
# Azure AKS Environment Name
variable "environment" {
type = string
description = "This variable defines the Environment"
default = "dev"
}
# AKS Input Variables
# SSH Public Key for Linux VMs
variable "ssh_public_key" {
default = "C:/Users/Sanjay Tiwari/Documents/LEARNING/AKS/aks-ssh-key-terraform/aksprodsshkey.pub"
description = "This variable defines the SSH Public Key for Linux k8s Worker nodes"
}
# Windows Admin Username for k8s worker nodes
variable "windows_admin_username" {
type = string
default = "azureuser"
description = "This variable defines the Windows admin username k8s Worker nodes"
}
# Windows Admin Password for k8s worker nodes
variable "windows_admin_password" {
type = string
default = "P@ssw0rd19452020"
description = "This variable defines the Windows admin password k8s Worker nodes"
}