forked from ezlabz/tf-sqlmi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
38 lines (29 loc) · 923 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
35
36
37
38
# This is the deployment lifecycle that should be one of the following values.
# - prod
# - qa
# - test
variable "DeploymentLifecycle" {}
variable "AppName" {}
# This is the associate/contractor that spun up the instance, or the associate or contractor that should be contacted regarding this AE
variable "Owner" {}
# This is the Line of Business that the AE belongs to for Charge Back purposes.
variable "LOB" {}
# Our Azure Subscription.
variable "azure_subscription_id" {
default = ""
}
# The default Azure Region we build in.
variable "azure_region" {
default = "centralus"
}
# The Azure SP(Service Principle) used to authenticate to Azure api
# (This can be create in the azure cli with az ad sp create-for-rbac --role="Contributor" --scopes="/subscriptions/{SubscriptionID}")
variable "azure_sp" {
default = ""
}
variable "sql_mi_name" {
default = "misql"
}
variable "vnet_address" {
default = ""
}