-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathvariables.tf
65 lines (54 loc) · 1.67 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
variable "existing-vnet-name" {
type = string
description = "the name of the existing virtual network"
}
variable "existing-vnet-resource-group" {
type = string
description = "the name of the resource containing the existing virtual network"
}
variable "relay-namespace-name" {
type = string
description = "the name to be assigned to the relay namespace"
default = "cshrelay"
}
variable "ACI-OID" {
type = string
description = "Azure Container Instance OID"
}
variable "container-subnet-name" {
type = string
description = "the name to be assigned to the cloudshell container subnet"
default = "cloudshellsubnet"
}
variable "container-subnet-prefix" {
type = list(string)
description = "the list of address prefix(es) to be assigned to the cloudshell container subnet"
}
variable "relay-subnet-name" {
type = string
description = "the name to be assigned to the relay subnet"
default = "relaysubnet"
}
variable "relay-subnet-prefix" {
type = list(string)
description = "the list of address prefix(es) to be assigned to the relay subnet"
}
variable "storage-subnet-name" {
type = string
description = "the name to be assigned to the storage subnet"
default = "storagesubnet"
}
variable "storageaccount-name" {
type = string
description = "the name of the storage account to create"
}
variable "private-endpoint-name" {
type = string
description = "the name to be assigned to the private endpoint"
default = "cloudshellRelayEndpoint"
}
variable "tags" {
type = map(string)
description = "the list of tags to be assigned"
default = {}
}