This repository has been archived by the owner on Nov 24, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
101 lines (83 loc) · 1.84 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
variable aws_region {
type = string
default = "eu-west-1" # Dublin
}
variable azure_region {
type = string
default = "westeurope" # Amsterdam
}
variable azure_alternate_region {
type = string
default = null
}
variable azure_sql_dwh_dwu {
type = string
default = "DW100c"
}
variable resource_suffix {
description = "The suffix to put at the of resource names created"
default = "" # Empty string triggers a random suffix
}
variable run_id {
type = string
default = ""
}
variable deploy_network {
type = bool
default = true
}
variable deploy_s2s_vpn {
type = bool
default = false
}
variable deploy_aws_client {
type = bool
default = false
}
variable deploy_azure_client {
type = bool
default = true
}
variable deploy_serverless {
type = bool
default = true
}
variable deploy_synapse {
type = bool
default = true
}
variable log_analytics_solutions {
# List of solutions: https://docs.microsoft.com/en-us/rest/api/loganalytics/workspaces/listintelligencepacks
# Get-AzOperationalInsightsIntelligencePack
default = [
"AzureSQLAnalytics"
]
}
variable serverless_row_count {
type = number
default = 1000000
}
# Used to decrypt EC2 passwords
variable ssh_private_key {
type = string
default = "~/.ssh/id_rsa"
}
variable ssh_public_key {
type = string
default = "~/.ssh/id_rsa.pub"
}
variable tags {
description = "A map of the tags to use for the resources that are deployed"
type = map
default = {
shutdown = "true"
}
}
variable use_managed_identity {
type = bool
default = false
}
variable user_name {
type = string
default = "demoadmin"
}