-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvariables.tf
More file actions
74 lines (59 loc) · 1.58 KB
/
Copy pathvariables.tf
File metadata and controls
74 lines (59 loc) · 1.58 KB
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
# Name of the provisioned cosmosdb database
variable "cosmosdb_account_name" {
description = "Name of the CosmosDB Account"
type = string
}
# Name of the resource group to deploy to
variable "resource_group_name" {
description = "Name of the resource group to deploy resources in"
type = string
}
#Region to deploy resource to
variable "location" {
description = "The Azure Region in which to create resource"
type = string
}
# Target Subscription ID
variable "subscription_id" {
description = "Azure subscrition ID"
type = string
}
# Target Tenant ID
variable "tenant_id" {
type = string
}
# Object Map of tags to apply the service
variable "tags" {
type = map(any)
default = {}
}
variable "cosmosdb_kind" {
type = string
}
variable "cosmosdb_capabilities" {
type = list(string)
}
variable "cosmosdb_env_lineup" {
type = string
}
variable "private_endpoint_name" {
type = string
description = "Name of the private endpoint"
}
variable "private_endpoint_rg" {
type = string
description = "resource group name for the PE to be deployed"
}
variable "private_endpoint_subnet" {
type = string
description = "full subnet id of where PE should be deployed"
}
variable "private_endpoint_subresource_name" {
type = string
description = "a sub resource name for the private end point connection"
default = "Sql"
}
variable "private_endpoint_service_name" {
type = string
description = "name of the private end point service"
}