-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
32 lines (27 loc) · 962 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
locals {
tags = {
owner = "[email protected]"
project = "jira"
env = "${terraform.workspace}"
}
aks_vmsize = {
test = "Standard_B4as_v2" #4 Core, 16 GB RAM, intel, Burstable
dev = "Standard_D4ads_v5" #4 Core, 16 GB RAM, intel
int = "Standard_D4ads_v5" #4 Core, 16 GB RAM, intel
prod = "Standard_D4ads_v5" #4 Core, 16 GB RAM, intel
}
jira_domains = {
test = "test.jira.mydomain.com"
dev = "dev.jira.mydomain.com"
}
rg_name = "rg-jira-${terraform.workspace}"
location = "West Europe"
user_managed_identity = "Jira-uid-${terraform.workspace}"
jira_sslcert_name = "SSLCert"
# AKS
cluster_name = "jira-aks-${terraform.workspace}"
k8s_version = "1.29.4"
aks_dns_prefix = "aks${terraform.workspace}"
appgw_name = "jira-appgw-${terraform.workspace}"
aks_pod_cidr = "10.210.2.0/24"
}