-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvariables.tf
More file actions
61 lines (42 loc) · 1.15 KB
/
variables.tf
File metadata and controls
61 lines (42 loc) · 1.15 KB
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
# -------------------- Global vars --------------------
variable "ingesoft5-location" {
type = string
description = "Name of ingesoft 5 location for resources."
}
# -------------------- Resource vars --------------------
# Resource group
variable "ingesoft5-rg-name" {
type = string
description = "Name of the resource group for ingesoft 5 practice."
}
# Service bus
variable "ingesoft5-service-bus-name" {
type = string
description = "Name of the service bus for ingesoft 5 practice."
}
variable "ingesoft5-queue-name" {
type = string
description = "Name of the service bus for ingesoft 5 practice."
}
variable "ingesoft5-queue-rule-name" {
type = string
description = "Name of the queue rule for bus on ingesoft 5 practice."
}
# Function staff
variable "name_function" {
type = string
description = "Name Function"
}
# Storage account
variable "storage_name" {
type = string
description = "Storage account name"
}
variable "plan_name" {
type = string
description = "Storage account name"
}
variable "wfa_name" {
type = string
description = "WFA name"
}