Skip to content

Commit

Permalink
Merge pull request #7 from truefoundry/rotation-nodepool
Browse files Browse the repository at this point in the history
Added a temporary node pool option for node pool replacement
  • Loading branch information
dunefro authored Nov 27, 2023
2 parents 1b49ee3 + 5ae00b0 commit ee75880
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 8 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ Truefoundry Azure Cluster Module

| Name | Source | Version |
|------|--------|---------|
| <a name="module_aks"></a> [aks](#module\_aks) | Azure/aks/azurerm | 7.4.0 |
| <a name="module_aks"></a> [aks](#module\_aks) | Azure/aks/azurerm | 7.5.0 |

## Resources

Expand Down
15 changes: 8 additions & 7 deletions aks.tf
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,14 @@ resource "azurerm_role_assignment" "network_contributor_cluster" {
}

module "aks" {
source = "Azure/aks/azurerm"
version = "7.4.0"
resource_group_name = var.resource_group_name
cluster_name = var.name
location = var.location
prefix = "tfy"
workload_identity_enabled = var.workload_identity_enabled
source = "Azure/aks/azurerm"
version = "7.5.0"
resource_group_name = var.resource_group_name
cluster_name = var.name
location = var.location
prefix = "tfy"
workload_identity_enabled = var.workload_identity_enabled
temporary_name_for_rotation = "tmpdefault"

# agent configuration
# agents_availability_zones = []
Expand Down

0 comments on commit ee75880

Please sign in to comment.