diff --git a/CHANGES.md b/CHANGES.md index dbe789dd3..6f16dc445 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -16,6 +16,10 @@ Notable changes between versions. * Add `disk_iops` variable for EBS volume IOPS ([#314](https://github.com/poseidon/typhoon/pull/314)) +#### Azure + +* Add `primary` field to `ip_configuration`. Required by `terraform-provider-azurerm` v1.17+ ([#331](https://github.com/poseidon/typhoon/pull/331)) + #### Addons * Configure Heapster to scrape Kubelets with bearer token auth ([#323](https://github.com/poseidon/typhoon/pull/323)) diff --git a/azure/container-linux/kubernetes/workers/workers.tf b/azure/container-linux/kubernetes/workers/workers.tf index 1d838ed6c..87642ad89 100644 --- a/azure/container-linux/kubernetes/workers/workers.tf +++ b/azure/container-linux/kubernetes/workers/workers.tf @@ -58,6 +58,7 @@ resource "azurerm_virtual_machine_scale_set" "workers" { ip_configuration { name = "ip0" + primary = true subnet_id = "${var.subnet_id}" # backend address pool to which the NIC should be added