-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathvars.tf
More file actions
39 lines (33 loc) · 984 Bytes
/
vars.tf
File metadata and controls
39 lines (33 loc) · 984 Bytes
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
variable "base_name" {
description = "Base name for resources"
type = string
}
variable "location" {
description = "Azure region"
type = string
default = "eastus"
}
variable "vnet_address_space" {
description = "Address space for the virtual network"
type = list(string)
default = ["10.0.0.0/16"]
}
variable "runner_subnet_address_prefixes" {
description = "Address prefixes for the runner subnet"
type = list(string)
default = ["10.0.0.0/24"]
}
variable "firewall_subnet_address_prefixes" {
description = "Address prefixes for the firewall subnet"
type = list(string)
default = ["10.0.1.0/26"]
}
variable "firewall_management_subnet_address_prefixes" {
description = "Address prefixes for the management subnet"
type = list(string)
default = ["10.0.2.0/26"]
}
variable "github_business_id" {
description = "GitHub Enterprise or Organization Database ID"
type = string
}