-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathvariables.tf
74 lines (60 loc) · 1.57 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
#Module : LABEL
#Description : Terraform label module variables.
variable "name" {
type = string
default = ""
description = "Name (e.g. `app` or `cluster`)."
}
variable "environment" {
type = string
default = ""
description = "Environment (e.g. `prod`, `dev`, `staging`)."
}
variable "repository" {
type = string
default = ""
description = "Terraform current module repo"
}
variable "label_order" {
type = list(any)
default = ["name", "environment"]
description = "Label order, e.g. sequence of application name and environment `name`,`environment`,'attribute' [`webserver`,`qa`,`devops`,`public`,] ."
}
variable "managedby" {
type = string
default = ""
description = "ManagedBy, eg ''."
}
variable "resource_group_name" {
type = string
description = "The name of an existing resource group."
}
variable "location" {
type = string
description = "The name of an existing resource group."
}
variable "sku" {
type = string
default = "Standard"
description = "The SKU of the namespace. The options are: `Basic`, `Standard`, `Premium`."
}
variable "capacity" {
type = number
default = 0
description = "The number of message units."
}
variable "topics" {
type = any
default = []
description = "List of topics."
}
variable "authorization_rules" {
type = any
default = []
description = "List of namespace authorization rules."
}
variable "queues" {
type = any
default = []
description = "List of queues."
}