-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
40 lines (33 loc) · 982 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
39
40
variable "resource_group_name"{
type = string
description = "name of the resource group terraform will create to store the ACR instance"
}
variable "geolocation"{
type = string
default = "eastus"
description = "geolocation of resources you want to create. defaults to eastus"
}
variable "subnet_name"{
type = string
description = "name of the subnet (should already exist)"
}
variable "vnet_name"{
type = string
description = "name of the vnet (should already exist)"
}
variable "vnet_rg"{
type = string
description = "name of the vnet resource group (should already exist)"
}
variable "storage_account_name"{
type = string
description = "name of the tfstate storage account you want to create"
}
variable "acr_name"{
type = string
description = "name of the ACR you want to create"
}
variable "acr_pe_name"{
type = string
description = "name of the private endpoint you want to create for the ACR"
}