-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
45 lines (38 loc) · 1.28 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
variable "create_resource_group" {
description = "Whether to create resource group and use it for all networking resources"
type = bool
default = false
}
variable "resource_group_name" {
description = "A container that holds related resources for an Azure solution"
type = string
default = "rg-demo-westeurope-01"
}
variable "location" {
description = "The location/region to keep all your network resources. To get the list of all locations with table format from azure cli, run 'az account list-locations -o table'"
type = string
default = "westeurope"
}
variable "name" {
description = "The name of the azure storage account"
type = string
}
variable "subnet_id" {
description = "The ID of the subnet where the Private Endpoint will be created."
type = string
default = null
}
variable "resource_id" {
description = "The ID of the resource that the new Private Endpoint will be assigned to."
type = string
default = null
}
variable "subresource_names" {
description = "The name of the subresource that the new Private Endpoint will be assigned to."
type = list(string)
}
variable "tags" {
description = "Tags to apply to all resources created."
type = map(string)
default = {}
}