Skip to content

Commit

Permalink
chore(main): release 2.4.0 (#125)
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 Aug 6, 2024
1 parent 8193204 commit d5e651c
Show file tree
Hide file tree
Showing 9 changed files with 17 additions and 8 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# Changelog

## [2.4.0](https://github.com/CloudNationHQ/terraform-azure-vm/compare/v2.3.0...v2.4.0) (2024-08-06)


### Features

* **deps:** bump github.com/gruntwork-io/terratest in /tests ([#126](https://github.com/CloudNationHQ/terraform-azure-vm/issues/126)) ([8dbb977](https://github.com/CloudNationHQ/terraform-azure-vm/commit/8dbb977679e58fc66c53cef851d2d41a3812af79))
* make source image reference fully optional ([#128](https://github.com/CloudNationHQ/terraform-azure-vm/issues/128)) ([8193204](https://github.com/CloudNationHQ/terraform-azure-vm/commit/81932044c9acf2c04f61a41d108c7e494c25cbed))
* update contribution docs ([#124](https://github.com/CloudNationHQ/terraform-azure-vm/issues/124)) ([2f31e0c](https://github.com/CloudNationHQ/terraform-azure-vm/commit/2f31e0c38e07d4878b20a0a3dfad4e38cd6586c1))

## [2.3.0](https://github.com/CloudNationHQ/terraform-azure-vm/compare/v2.2.0...v2.3.0) (2024-07-02)


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 "vm" {
source = "cloudnationhq/vm/azure"
version = "~> 2.3"
version = "~> 2.4"
naming = local.naming
depends_on = [module.kv]
Expand Down
2 changes: 1 addition & 1 deletion examples/availability-sets/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ This example outlines the configuration and deployment of availability sets to e
```hcl
module "vm" {
source = "cloudnationhq/vm/azure"
version = "~> 2.3"
version = "~> 2.4"
naming = local.naming
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 "vm" {
source = "cloudnationhq/vm/azure"
version = "~> 2.3"
version = "~> 2.4"
keyvault = module.kv.vault.id
naming = local.naming
Expand Down
2 changes: 1 addition & 1 deletion examples/custom-data/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ This example details the setup and utilization of custom data and cloud-init.
```hcl
module "vm" {
source = "cloudnationhq/vm/azure"
version = "~> 2.3"
version = "~> 2.4"
keyvault = module.kv.vault.id
naming = local.naming
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 virtual machine setup, in its simplest form
```hcl
module "vm" {
source = "cloudnationhq/vm/azure"
version = "~> 2.3"
version = "~> 2.4"
keyvault = module.kv.vault.id
naming = local.naming
Expand Down
2 changes: 1 addition & 1 deletion examples/extensions/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ This example illustrates the implementation of extensions.
```hcl
module "vm" {
source = "cloudnationhq/vm/azure"
version = "~> 2.3"
version = "~> 2.4"
keyvault = module.kv.vault.id
naming = local.naming
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 @@ The following example can be used for referencing specific subnets in configurat
```hcl
module "vm" {
source = "cloudnationhq/vm/azure"
version = "~> 2.3"
version = "~> 2.4"
naming = local.naming
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 section details the support for windows virtual machines.
```hcl
module "vm" {
source = "cloudnationhq/vm/azure"
version = "~> 2.3"
version = "~> 2.4"
keyvault = module.kv.vault.id
naming = local.naming
Expand Down

0 comments on commit d5e651c

Please sign in to comment.