-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
34 lines (28 loc) · 954 Bytes
/
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
# ------------------------
# Authentication Variables
# ------------------------
variable "aad_tenant_id" {
type = string
description = "The id of the Azure Tenant to which all subscriptions belong"
}
variable "aad_subscription_id" {
type = string
description = "The id of the Azure Subscription"
}
variable "aad_client_id" {
type = string
description = "The client id of the Service Principal for interacting with Azure resources"
}
variable "aad_client_secret" {
type = string
description = "The client secret of the Service Principal for interacting with Azure resources"
sensitive = true
}
# -------------------
# Terraform Variables
# -------------------
variable "azure_service_principal_display_name" {
description = "A display name for the Azure Active Directory (Azure AD) Service Principal."
type = string
default = "Terraform Databricks"
}