-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvariables.tf
More file actions
39 lines (33 loc) · 776 Bytes
/
variables.tf
File metadata and controls
39 lines (33 loc) · 776 Bytes
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
variable "clientid" {
description = "Azure Client ID Password"
type = string
sensitive = true
}
variable "clientsecret" {
description = "Azure Client Service Principal Secret Password"
type = string
sensitive = true
}
variable "subscriptionid" {
description = "Azure Subscription ID Password"
type = string
sensitive = true
}
variable "tenantid" {
description = "Azure Tenant ID Password"
type = string
sensitive = true
}
variable "testpassword" {
description = "Generic Global Test Password"
type = string
sensitive = true
}
variable "container" {
description = "container tag"
type = string
}
variable "networkpart" {
description = "network part of vnet"
type = string
}