-
Notifications
You must be signed in to change notification settings - Fork 0
/
02-00-azure-variables.tf
52 lines (44 loc) · 1.39 KB
/
02-00-azure-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
variable "resource_group_location" {
type = string
default = "westus3"
description = "Location of the resource group."
}
variable "location" {
type = string
default = "westus3"
description = "Location of the resource group."
}
variable "resource_group_name_prefix" {
type = string
default = "rg"
description = "Prefix of the resource group name that's combined with a random ID so name is unique in your Azure subscription."
}
variable "resource_group_name_suffix" {
type = string
default = "rg"
description = "Suffix of the resource group name that's combined with a random ID so name is unique in your Azure subscription."
}
variable "username" {
type = string
description = "The username for the local account that will be created on the new VM."
default = "azureadmin"
}
variable "friendly_name_prefix" {
type = string
description = "Friendly name prefix for unique Azure resource naming across deployments."
}
variable "resource_group_name" {
type = string
description = "Name of Resource Group to create."
default = "boundary-learn"
}
variable "common_tags" {
type = map(string)
description = "Map of common tags for taggable Azure resources."
default = {}
}
variable "boundary_cluster_id" {
type = string
description = ""
default = "boundary_cluster_id_default"
}