Skip to content

Commit b4c783b

Browse files
authored
Merge pull request #287 from sassoftware/staging
6.2.0 - February 17, 2023
2 parents 67ca32d + bf82e54 commit b4c783b

15 files changed

+99
-30
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ ARG AZURECLI_VERSION=2.24.2
33

44
FROM hashicorp/terraform:$TERRAFORM_VERSION as terraform
55
FROM mcr.microsoft.com/azure-cli:$AZURECLI_VERSION
6-
ARG KUBECTL_VERSION=1.23.8
6+
ARG KUBECTL_VERSION=1.23.12
77

88
WORKDIR /viya4-iac-azure
99

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ Access to an **Azure Subscription** and an [**Identity**](./docs/user/TerraformA
5858

5959
#### Terraform Requirements:
6060
- [Terraform](https://www.terraform.io/downloads.html) - v1.0.0
61-
- [kubectl](https://kubernetes.io/docs/tasks/tools/install-kubectl) - v1.23.8
61+
- [kubectl](https://kubernetes.io/docs/tasks/tools/install-kubectl) - v1.23.12
6262
- [jq](https://stedolan.github.io/jq/) - v1.6
6363
- [Azure CLI](https://docs.microsoft.com/en-us/cli/azure) - (optional - useful as an alternative to the Azure Portal) - v2.24.2
6464

docs/CONFIG-VARS.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ To do set these permissions as part of this Terraform script, specify ranges of
6363

6464
NOTE: When deploying infrastructure into a private network (e.g. a VPN), with no public endpoints, the options documented in this block are not applicable.
6565

66-
NOTE: The script will either create a new NSG, or use an existing NSG, if specified in the [`nsg_name`](#use-existing) variable.
66+
NOTE: The script will either create a new NSG, or use an existing NSG, if specified in the [`nsg_name`](#use-existing) variable.
6767

6868
You can use `default_public_access_cidrs` to set a default range for all created resources. To set different ranges for other resources, define the appropriate variable. Use an empty list `[]` to disallow access explicitly.
6969

@@ -75,7 +75,7 @@ You can use `default_public_access_cidrs` to set a default range for all created
7575
| postgres_public_access_cidrs | IP address ranges allowed to access the Azure PostgreSQL Flexible Server | list of strings || Opens port 5432 by adding Ingress Rule on the NSG. Only used when creating postgres instances. |
7676
| acr_public_access_cidrs | IP address ranges allowed to access the ACR instance | list of strings || Only used with `create_container_registry=true` |
7777

78-
**NOTE:** In a SCIM environment, the AzureActiveDirectory service tag must be granted access to port 443/HTTPS for the Ingress IP address.
78+
**NOTE:** In a SCIM environment, the AzureActiveDirectory service tag must be granted access to port 443/HTTPS for the Ingress IP address.
7979

8080
## Networking
8181

@@ -147,7 +147,7 @@ Example for the `subnet_names` variable:
147147
```yaml
148148
subnet_names = {
149149
## Required subnets
150-
'aks': '<my_aks_subnet_name>',
150+
'aks': '<my_aks_subnet_name>',
151151
'misc': '<my_misc_subnet_name>',
152152

153153
## If using ha storage then the following is also required
@@ -163,7 +163,7 @@ Ubuntu 20.04 LTS is the operating system used on the Jump/NFS servers. Ubuntu cr
163163
| :--- | ---: | ---: | ---: | ---: |
164164
| partner_id | A GUID that is registered with Microsoft to facilitate partner resource usage attribution | string | "5d27f3ae-e49c-4dea-9aa3-b44e4750cd8c" | Defaults to SAS partner GUID. When you deploy this Terraform configuration, Microsoft can identify the installation of SAS software with the deployed Azure resources. Microsoft can then correlate the resources that are used to support the software. Microsoft collects this information to provide the best experiences with their products and to operate their business. The data is collected and governed by Microsoft's privacy policies, located at https://www.microsoft.com/trustcenter. |
165165
| create_static_kubeconfig | Allows the user to create a provider / service account-based kubeconfig file | bool | true | A value of `false` will default to using the cloud provider's mechanism for generating the kubeconfig file. A value of `true` will create a static kubeconfig that uses a `Service Account` and `Cluster Role Binding` to provide credentials. |
166-
| kubernetes_version | The AKS cluster Kubernetes version | string | "1.23.8" | |
166+
| kubernetes_version | The AKS cluster Kubernetes version | string | "1.23.12" | |
167167
| create_jump_vm | Create bastion host | bool | true | |
168168
| create_jump_public_ip | Add public IP address to the jump VM | bool | true | |
169169
| jump_vm_admin | Operating system Admin User for the jump VM | string | "jumpuser" | |
@@ -261,7 +261,7 @@ In addition, you can control the placement for the additional node pools using t
261261

262262
| Name | Description | Type | Default | Notes |
263263
| :--- | ---: | ---: | ---: | ---: |
264-
| node_pools_availability_zone | Availability Zone for the additional node pools and the NFS VM, for `storage_type="standard"'| string | "1" | The possible values depend on the region set in the "location" variable. |
264+
| node_pools_availability_zone | Availability Zone for the additional node pools and the NFS VM, for `storage_type="standard"`| string | "1" | The possible values depend on the region set in the "location" variable. |
265265
| node_pools_proximity_placement | Co-locates all node pool VMs for improved application performance. | bool | false | Selecting proximity placement imposes an additional constraint on VM creation and can lead to more frequent denials of VM allocation requests. We recommend that you set `node_pools_availability_zone=""` and allocate all required resources at one time by setting `min_nodes` and `max_nodes` to the same value for all node pools. Additional information: [Proximity Group Placement](./user/ProximityPlacementGroup.md). |
266266

267267
## Storage

examples/sample-input-byo.tfvars

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ container_registry_sku = "Standard"
4545
container_registry_admin_enabled = false
4646

4747
# AKS config
48-
kubernetes_version = "1.23.8"
48+
kubernetes_version = "1.23.12"
4949
default_nodepool_min_nodes = 2
5050
default_nodepool_vm_type = "Standard_D8s_v4"
5151

examples/sample-input-connect.tfvars

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ container_registry_sku = "Standard"
3434
container_registry_admin_enabled = false
3535

3636
# AKS config
37-
kubernetes_version = "1.23.8"
37+
kubernetes_version = "1.23.12"
3838
default_nodepool_min_nodes = 2
3939
default_nodepool_vm_type = "Standard_D8s_v4"
4040

examples/sample-input-ha.tfvars

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ container_registry_sku = "Standard"
3232
container_registry_admin_enabled = false
3333

3434
# AKS config
35-
kubernetes_version = "1.23.8"
35+
kubernetes_version = "1.23.12"
3636
default_nodepool_min_nodes = 2
3737
default_nodepool_vm_type = "Standard_D8s_v4"
3838

examples/sample-input-minimal.tfvars

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ container_registry_sku = "Standard"
3232
container_registry_admin_enabled = false
3333

3434
# AKS config
35-
kubernetes_version = "1.23.8"
35+
kubernetes_version = "1.23.12"
3636
default_nodepool_min_nodes = 2
3737
default_nodepool_vm_type = "Standard_D4_v3"
3838
#v3 still has local temp storage

examples/sample-input-ppg.tfvars

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ container_registry_sku = "Standard"
3232
container_registry_admin_enabled = false
3333

3434
# AKS config
35-
kubernetes_version = "1.23.8"
35+
kubernetes_version = "1.23.12"
3636
default_nodepool_min_nodes = 2
3737
default_nodepool_vm_type = "Standard_D8s_v4"
3838

examples/sample-input-singlestore.tfvars

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ container_registry_sku = "Standard"
3434
container_registry_admin_enabled = false
3535

3636
# AKS config
37-
kubernetes_version = "1.23.8"
37+
kubernetes_version = "1.23.12"
3838
default_nodepool_min_nodes = 2
3939
default_nodepool_vm_type = "Standard_D8s_v4"
4040

examples/sample-input.tfvars

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ container_registry_sku = "Standard"
3434
container_registry_admin_enabled = false
3535

3636
# AKS config
37-
kubernetes_version = "1.23.8"
37+
kubernetes_version = "1.23.12"
3838
default_nodepool_min_nodes = 2
3939
default_nodepool_vm_type = "Standard_D8s_v4"
4040

0 commit comments

Comments
 (0)