Skip to content

Commit

Permalink
Remove deprecated field on azurerm_lb_backend_address_pool
Browse files Browse the repository at this point in the history
* Remove the deprecated `resource_group_name` field from Azure
`azurerm_lb_backend_address_pool` resources
  • Loading branch information
dghubble committed Apr 12, 2021
1 parent a9078cb commit fc06d28
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 8 deletions.
1 change: 1 addition & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ Notable changes between versions.
* Allow setting custom initial node taints on worker pools ([#968](https://github.com/poseidon/typhoon/pull/968))
* Add `node_taints` variable to internal `workers` pool module to set initial node taints
* Add `daemonset_tolerations` so `kube-system` DaemonSets can tolerate custom taints
* Remove deprecated `azurerm_lb_backend_address_pool` field `resource_group_name` ([#972](https://github.com/poseidon/typhoon/pull/972))

### Google Cloud

Expand Down
4 changes: 0 additions & 4 deletions azure/fedora-coreos/kubernetes/lb.tf
Original file line number Diff line number Diff line change
Expand Up @@ -112,16 +112,12 @@ resource "azurerm_lb_outbound_rule" "worker-outbound" {

# Address pool of controllers
resource "azurerm_lb_backend_address_pool" "controller" {
resource_group_name = azurerm_resource_group.cluster.name

name = "controller"
loadbalancer_id = azurerm_lb.cluster.id
}

# Address pool of workers
resource "azurerm_lb_backend_address_pool" "worker" {
resource_group_name = azurerm_resource_group.cluster.name

name = "worker"
loadbalancer_id = azurerm_lb.cluster.id
}
Expand Down
4 changes: 0 additions & 4 deletions azure/flatcar-linux/kubernetes/lb.tf
Original file line number Diff line number Diff line change
Expand Up @@ -112,16 +112,12 @@ resource "azurerm_lb_outbound_rule" "worker-outbound" {

# Address pool of controllers
resource "azurerm_lb_backend_address_pool" "controller" {
resource_group_name = azurerm_resource_group.cluster.name

name = "controller"
loadbalancer_id = azurerm_lb.cluster.id
}

# Address pool of workers
resource "azurerm_lb_backend_address_pool" "worker" {
resource_group_name = azurerm_resource_group.cluster.name

name = "worker"
loadbalancer_id = azurerm_lb.cluster.id
}
Expand Down

0 comments on commit fc06d28

Please sign in to comment.