-
Notifications
You must be signed in to change notification settings - Fork 2
/
variables.tf
76 lines (64 loc) · 2 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
72
73
74
75
76
variable "resource_packs_azure_url" {
description = "Azure Resource Pack git url."
type = string
default = "https://github.com/humanitec-architecture/resource-packs-azure.git"
}
variable "resource_packs_azure_rev" {
description = "Azure Resource Pack git branch."
type = string
default = "refs/heads/main"
}
variable "append_logs_to_error" {
description = "Append Terraform logs to error messages."
type = bool
default = false
}
variable "driver_account" {
description = "The ID of the Resource Account which should be used."
type = string
}
variable "subscription_id" {
description = "The Subscription ID which should be used."
type = string
}
variable "name" {
description = "Specifies the Name for created resources. (Leave empty for the default one)"
type = string
default = ""
}
variable "prefix" {
description = "Specifies the prefix used in default name for created resources."
type = string
default = "hum-rp-service-bus-ex-"
}
variable "resource_group_name" {
description = "Specifies the Name of the Resource Group within which created resources will reside."
type = string
}
variable "audience" {
description = "Specifies the audience for this Federated Identity Credential."
type = set(string)
}
variable "issuer" {
description = "Specifies the issuer of this Federated Identity Credential."
type = string
}
variable "parent_id" {
description = "Specifies parent ID of User Assigned Identity for this Federated Identity Credential."
type = string
}
variable "subject" {
description = "Specifies the subject for this Federated Identity Credential."
type = string
}
variable "terraform_state" {
description = "Use terraform remote state."
type = object({
subscription_id = string
resource_group_name = string
storage_account_name = string
container_name = string
key_prefix = optional(string)
})
default = null
}