You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/CONFIG-VARS.md
+65Lines changed: 65 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -9,6 +9,8 @@ Supported configuration variables are listed in the table below. All variables
9
9
-[Required Variables](#required-variables)
10
10
-[Azure Authentication](#azure-authentication)
11
11
-[Admin Access](#admin-access)
12
+
-[Networking](#networking)
13
+
-[Use Existing](#use-existing)
12
14
-[General](#general)
13
15
-[Nodepools](#nodepools)
14
16
-[Default Nodepool](#default-nodepool)
@@ -68,6 +70,69 @@ You can use `default_public_access_cidrs` to set a default range for all created
68
70
| postgres_access_cidrs | IP Ranges allowed to access the Azure PostgreSQL Server | list of strings |||
69
71
| acr_access_cidrs | IP Ranges allowed to access the ACR instance | list of strings |||
70
72
73
+
## Networking
74
+
| Name | Description | Type | Default | Notes |
75
+
| :--- | ---: | ---: | ---: | ---: |
76
+
| vnet_address_space | Address space for created vnet | string | "192.168.0.0/16" | This variable is ignored when vnet_name is set (aka bring your own vnet) |
77
+
| subnets | Subnets to be created and their settings | map(object) |*check below*| This variable is ignored when subnet_names is set (aka bring your own subnets). All defined subnets must exist within the vnet address space. |
When desiring to deploy into exising resource group, vnet, subnets, or network security group the varaiables below can be used to define the exsting resources
115
+
116
+
| Name | Description | Type | Default | Notes |
117
+
| :--- | ---: | ---: | ---: | ---: |
118
+
| resource_group_name | Name of pre-existing resource group | string | null | Only required if deploying into existing resource group|
119
+
| vnet_name | Name of pre-existing vnet | string | null | Only required if deploying into existing vnet |
120
+
| nsg_name | Name of pre-existing network security group | string | null | Only required if deploying into existing nsg |
121
+
| subnet_names | Existing subnets mapped to desired usage | map(string) | null | Only required if deploying into existing subnets. See example below |
122
+
123
+
Example subnet_names variable:
124
+
125
+
```yaml
126
+
subnet_names = {
127
+
## Required subnets
128
+
'aks': '<my_aks_subnet_name>',
129
+
'misc': '<my_misc_subnet_name>',
130
+
131
+
## If using ha storage then the following is also required
132
+
'netapp': '<my_netapp_subnet_name>'
133
+
}
134
+
```
135
+
71
136
## General
72
137
73
138
Ubuntu 18.04 LTS is the operating system used on the Jump/NFS servers. Ubuntu creates the `/mnt` location as an ephemeral drive and cannot be used as the root location of the `jump_rwx_filestore_path` variable.
0 commit comments