Skip to content

Commit

Permalink
chore(main): release 0.11.0 (#79)
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
  • Loading branch information
github-actions[bot] authored Jul 1, 2024
1 parent 488ab5c commit c214cc7
Show file tree
Hide file tree
Showing 9 changed files with 24 additions and 8 deletions.
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,21 @@
# Changelog

## [0.11.0](https://github.com/CloudNationHQ/terraform-azure-aks/compare/v0.10.0...v0.11.0) (2024-07-01)


### Features

* add issue templates ([#78](https://github.com/CloudNationHQ/terraform-azure-aks/issues/78)) ([488ab5c](https://github.com/CloudNationHQ/terraform-azure-aks/commit/488ab5c456be70321953faa3514304a029a145e5))
* **deps:** bump github.com/Azure/azure-sdk-for-go/sdk/azidentity ([#69](https://github.com/CloudNationHQ/terraform-azure-aks/issues/69)) ([9184644](https://github.com/CloudNationHQ/terraform-azure-aks/commit/91846448a1ddcba007cf5f86e17b94361cdb8f5f))
* **deps:** bump github.com/gruntwork-io/terratest in /tests ([#77](https://github.com/CloudNationHQ/terraform-azure-aks/issues/77)) ([32016da](https://github.com/CloudNationHQ/terraform-azure-aks/commit/32016da5fc1d7c587b5b9d5990fc2e88a3fb57d7))
* **deps:** bump github.com/hashicorp/go-getter in /tests ([#70](https://github.com/CloudNationHQ/terraform-azure-aks/issues/70)) ([5d98ee7](https://github.com/CloudNationHQ/terraform-azure-aks/commit/5d98ee77316ab24c5a905d075221f80f62817f26))


### Bug Fixes

* explicitly set fallback values for ssh key and admin password ([#72](https://github.com/CloudNationHQ/terraform-azure-aks/issues/72)) ([a6f7c6e](https://github.com/CloudNationHQ/terraform-azure-aks/commit/a6f7c6e8df5790c15e47af3054a8dc5875b0c341))
* fix validation error when deploying windows cluster with azure network plugin ([#74](https://github.com/CloudNationHQ/terraform-azure-aks/issues/74)) ([706f180](https://github.com/CloudNationHQ/terraform-azure-aks/commit/706f180f095762560d1d9da05e930ed52ba90d1c))

## [0.10.0](https://github.com/CloudNationHQ/terraform-azure-aks/compare/v0.9.0...v0.10.0) (2024-06-21)


Expand Down
2 changes: 1 addition & 1 deletion examples/authentication/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ To utilize the generated password or ssh key, simply specify the key vault id in
```hcl
module "aks" {
source = "cloudnationhq/aks/azure"
version = "~> 0.1"
version = "~> 0.11"
keyvault = module.kv.vault.id
Expand Down
2 changes: 1 addition & 1 deletion examples/complete/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ This example highlights the complete usage.
```hcl
module "aks" {
source = "cloudnationhq/aks/azure"
version = "~> 0.10"
version = "~> 0.11"
keyvault = module.kv.vault.id
cluster = local.cluster
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.10"
version = "~> 0.11"
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.10"
version = "~> 0.11"
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.10"
version = "~> 0.11"
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.10"
version = "~> 0.11"
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.10"
version = "~> 0.11"
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.10"
version = "~> 0.11"
keyvault = module.kv.vault.id
Expand Down

0 comments on commit c214cc7

Please sign in to comment.