Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(main): release 0.4.0 #26

Merged
merged 1 commit into from
Jan 31, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# Changelog

## [0.4.0](https://github.com/CloudNationHQ/terraform-azure-aks/compare/v0.3.0...v0.4.0) (2024-01-29)


### Features

* **deps:** bump github.com/Azure/azure-sdk-for-go/sdk/azidentity ([#24](https://github.com/CloudNationHQ/terraform-azure-aks/issues/24)) ([ca0fc89](https://github.com/CloudNationHQ/terraform-azure-aks/commit/ca0fc89470bb03fddd1b3aef2b89b71c046c37fc))
* **deps:** bump github.com/gruntwork-io/terratest in /tests ([#23](https://github.com/CloudNationHQ/terraform-azure-aks/issues/23)) ([3ad41be](https://github.com/CloudNationHQ/terraform-azure-aks/commit/3ad41be622a77a5b6c7976fcd744f7639fcd8d2f))
* disable node count on default pool when auto scaling is used ([#28](https://github.com/CloudNationHQ/terraform-azure-aks/issues/28)) ([ddf20f9](https://github.com/CloudNationHQ/terraform-azure-aks/commit/ddf20f9120325fa92c7510144c9da3976b2199e9))
* improve naming node pools ([#25](https://github.com/CloudNationHQ/terraform-azure-aks/issues/25)) ([c83c82b](https://github.com/CloudNationHQ/terraform-azure-aks/commit/c83c82ba85d3a29c3706b0a5233b768f3f63a9c4))
* improving autoscaler block iteration to exist only once ([#27](https://github.com/CloudNationHQ/terraform-azure-aks/issues/27)) ([5495709](https://github.com/CloudNationHQ/terraform-azure-aks/commit/54957097e5bf18f91e3bf1c196612e407cebd1c2))

## [0.3.0](https://github.com/CloudNationHQ/terraform-azure-aks/compare/v0.2.0...v0.3.0) (2024-01-19)


Expand Down
2 changes: 1 addition & 1 deletion examples/container-registry/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ This example highlights integrating a container registry.
```hcl
module "aks" {
source = "cloudnationhq/aks/azure"
version = "~> 0.3"
version = "~> 0.4"

keyvault = module.kv.vault.id

Expand Down
2 changes: 1 addition & 1 deletion examples/default/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ This example illustrates the default azure kubernetes service setup, in its simp
```hcl
module "aks" {
source = "cloudnationhq/aks/azure"
version = "~> 0.3"
version = "~> 0.4"

keyvault = module.kv.vault.id

Expand Down
2 changes: 1 addition & 1 deletion examples/maintenance/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ This example showcases the implementation of maintenance windows
```hcl
module "aks" {
source = "cloudnationhq/aks/azure"
version = "~> 0.3"
version = "~> 0.4"

keyvault = module.kv.vault.id

Expand Down
2 changes: 1 addition & 1 deletion examples/multiple/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ This example demonstrates the use of both configuration and resource based outpu
```hcl
module "aks" {
source = "cloudnationhq/aks/azure"
version = "~> 0.3"
version = "~> 0.4"

resourcegroup = module.rg.groups.demo.name
location = module.rg.groups.demo.location
Expand Down
2 changes: 1 addition & 1 deletion examples/node-pools/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ This example demonstrates the use of multiple node pools, optimizing scalability
```hcl
module "aks" {
source = "cloudnationhq/aks/azure"
version = "~> 0.3"
version = "~> 0.4"

keyvault = module.kv.vault.id

Expand Down
2 changes: 1 addition & 1 deletion examples/windows/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ This example highlights the utilization of windows node pools.
```hcl
module "aks" {
source = "cloudnationhq/aks/azure"
version = "~> 0.3"
version = "~> 0.4"

keyvault = module.kv.vault.id

Expand Down