-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathvariables.tf
More file actions
49 lines (42 loc) · 1.21 KB
/
variables.tf
File metadata and controls
49 lines (42 loc) · 1.21 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
variable "tags" {
description = "A map of tags to add to all resources"
type = map(string)
default = {}
}
variable "name" {
description = "Cloud Credentials name"
type = string
default = ""
}
variable "create_sa" {
description = "Create a new Service Principal"
type = bool
default = false
}
variable "azure_subscription_id" {
description = "Existing Azure Subscription ID"
type = string
default = null
}
variable "azure_tenant_id" {
description = "Existing Azure Tenant ID"
type = string
default = null
}
variable "azure_client_secret" {
description = "Existing Azure Service Principal Password"
type = string
sensitive = true
default = null
}
variable "azure_client_id" {
description = "Existing Azure Service Principal Application ID"
type = string
default = null
}
variable "end_date" {
description = "The absolute end date until which the password is valid, formatted as an RFC3339 date string (e.g. 2218-01-01T01:02:03Z). Changing this field forces a new resource to be created."
type = string
sensitive = true
default = null
}