-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvar.tf
68 lines (55 loc) · 1.45 KB
/
var.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
variable "wordpressUsername" {}
variable "wordpressPassword" {}
variable "mariadbPassword" {}
variable "discord_bot_image_name" {
description = "Name of the Docker image for the discord bot"
type = string
}
variable "discord_bot_image_tag" {
description = "Tag of the Docker image for the discord bot"
type = string
}
variable "discord_bot_replicas" {
description = "Number of replicas for the discord bot deployment"
type = number
}
variable "discord_bot_secrets" {
description = "Secrets for the discord bot"
type = map(string)
}
variable "rg_main_name" {
description = "The azure resource group"
type = string
}
variable "aks_main_name" {
description = "Name of the AKS cluster"
type = string
}
variable "dns_prefix" {
description = "The DNS prefix for aks cluster"
type = string
}
variable "tfstate_storage_account_name" {
description = "Name of the account used to store the tfstate"
type = string
}
variable "tfstate_container_name" {
description = "The container holding the tfstate"
type = string
}
variable "tfstate_key" {
description = "Key for the tfstate file"
type = string
}
variable "kv_main_name" {
description = "Name of the primary key vault"
type = string
}
variable "tenant_id" {
description = "The tenant id"
type= string
}
variable "kv_main_object_key" {
description = "The key vault's object key for use with service principal"
type = string
}